refactor(deps): replace tokio Mutex/join!, add NetworkErrorKind enum, remove reqwest from error types
This commit is contained in:
@@ -1,6 +1,15 @@
|
||||
use serde::Serialize;
|
||||
use thiserror::Error;
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
pub enum NetworkErrorKind {
|
||||
Timeout,
|
||||
ConnectionRefused,
|
||||
DnsResolution,
|
||||
Tls,
|
||||
Other,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
pub enum ErrorCode {
|
||||
ConfigNotFound,
|
||||
@@ -99,8 +108,8 @@ pub enum LoreError {
|
||||
#[error("Cannot connect to GitLab at {base_url}")]
|
||||
GitLabNetworkError {
|
||||
base_url: String,
|
||||
#[source]
|
||||
source: Option<reqwest::Error>,
|
||||
kind: NetworkErrorKind,
|
||||
detail: Option<String>,
|
||||
},
|
||||
|
||||
#[error(
|
||||
@@ -122,9 +131,6 @@ pub enum LoreError {
|
||||
#[error("Database error: {0}")]
|
||||
Database(#[from] rusqlite::Error),
|
||||
|
||||
#[error("HTTP error: {0}")]
|
||||
Http(#[from] reqwest::Error),
|
||||
|
||||
#[error("JSON error: {0}")]
|
||||
Json(#[from] serde_json::Error),
|
||||
|
||||
@@ -146,8 +152,7 @@ pub enum LoreError {
|
||||
#[error("Cannot connect to Ollama at {base_url}. Is it running?")]
|
||||
OllamaUnavailable {
|
||||
base_url: String,
|
||||
#[source]
|
||||
source: Option<reqwest::Error>,
|
||||
detail: Option<String>,
|
||||
},
|
||||
|
||||
#[error("Ollama model '{model}' not found. Run: ollama pull {model}")]
|
||||
@@ -187,7 +192,6 @@ impl LoreError {
|
||||
ErrorCode::DatabaseError
|
||||
}
|
||||
}
|
||||
Self::Http(_) => ErrorCode::GitLabNetworkError,
|
||||
Self::Json(_) => ErrorCode::InternalError,
|
||||
Self::Io(_) => ErrorCode::IoError,
|
||||
Self::Transform(_) => ErrorCode::TransformError,
|
||||
@@ -238,7 +242,6 @@ impl LoreError {
|
||||
Some("Check database file permissions.\n\n Example:\n lore doctor")
|
||||
}
|
||||
}
|
||||
Self::Http(_) => Some("Check network connection"),
|
||||
Self::NotFound(_) => {
|
||||
Some("Verify the entity exists.\n\n Example:\n lore issues\n lore mrs")
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ impl OllamaClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::OllamaUnavailable {
|
||||
base_url: self.config.base_url.clone(),
|
||||
source: Some(e),
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
let tags: TagsResponse =
|
||||
@@ -84,7 +84,7 @@ impl OllamaClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::OllamaUnavailable {
|
||||
base_url: self.config.base_url.clone(),
|
||||
source: Some(e),
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
let model_found = tags.models.iter().any(|m| {
|
||||
@@ -116,7 +116,7 @@ impl OllamaClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::OllamaUnavailable {
|
||||
base_url: self.config.base_url.clone(),
|
||||
source: Some(e),
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
let status = response.status();
|
||||
|
||||
@@ -5,8 +5,8 @@ use reqwest::header::{ACCEPT, HeaderMap, HeaderValue};
|
||||
use reqwest::{Client, Response, StatusCode};
|
||||
use std::pin::Pin;
|
||||
use std::sync::Arc;
|
||||
use std::sync::Mutex;
|
||||
use std::time::{Duration, Instant};
|
||||
use tokio::sync::Mutex;
|
||||
use tokio::time::sleep;
|
||||
use tracing::{debug, warn};
|
||||
|
||||
@@ -131,7 +131,16 @@ impl GitLabClient {
|
||||
let mut last_response = None;
|
||||
|
||||
for attempt in 0..=Self::MAX_RETRIES {
|
||||
let delay = self.rate_limiter.lock().await.check_delay();
|
||||
// SAFETY: std::sync::Mutex blocks the executor thread while held. This is safe
|
||||
// because the critical section is a single Instant::now() comparison with no I/O.
|
||||
// If async work is ever added inside the lock, switch to an async-aware lock.
|
||||
let delay = {
|
||||
let mut limiter = self
|
||||
.rate_limiter
|
||||
.lock()
|
||||
.unwrap_or_else(|poisoned| poisoned.into_inner());
|
||||
limiter.check_delay()
|
||||
};
|
||||
if let Some(d) = delay {
|
||||
sleep(d).await;
|
||||
}
|
||||
@@ -146,7 +155,8 @@ impl GitLabClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::GitLabNetworkError {
|
||||
base_url: self.base_url.clone(),
|
||||
source: Some(e),
|
||||
kind: crate::core::error::NetworkErrorKind::Other,
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
if response.status() == StatusCode::TOO_MANY_REQUESTS && attempt < Self::MAX_RETRIES {
|
||||
@@ -197,7 +207,14 @@ impl GitLabClient {
|
||||
}
|
||||
|
||||
status if status.is_success() => {
|
||||
let text = response.text().await?;
|
||||
let text = response
|
||||
.text()
|
||||
.await
|
||||
.map_err(|e| LoreError::GitLabNetworkError {
|
||||
base_url: self.base_url.clone(),
|
||||
kind: crate::core::error::NetworkErrorKind::Other,
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
serde_json::from_str(&text).map_err(|e| {
|
||||
let preview = if text.len() > 500 {
|
||||
&text[..text.floor_char_boundary(500)]
|
||||
@@ -516,7 +533,16 @@ impl GitLabClient {
|
||||
let mut last_response = None;
|
||||
|
||||
for attempt in 0..=Self::MAX_RETRIES {
|
||||
let delay = self.rate_limiter.lock().await.check_delay();
|
||||
// SAFETY: std::sync::Mutex blocks the executor thread while held. This is safe
|
||||
// because the critical section is a single Instant::now() comparison with no I/O.
|
||||
// If async work is ever added inside the lock, switch to an async-aware lock.
|
||||
let delay = {
|
||||
let mut limiter = self
|
||||
.rate_limiter
|
||||
.lock()
|
||||
.unwrap_or_else(|poisoned| poisoned.into_inner());
|
||||
limiter.check_delay()
|
||||
};
|
||||
if let Some(d) = delay {
|
||||
sleep(d).await;
|
||||
}
|
||||
@@ -532,7 +558,8 @@ impl GitLabClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::GitLabNetworkError {
|
||||
base_url: self.base_url.clone(),
|
||||
source: Some(e),
|
||||
kind: crate::core::error::NetworkErrorKind::Other,
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
if response.status() == StatusCode::TOO_MANY_REQUESTS && attempt < Self::MAX_RETRIES {
|
||||
@@ -726,14 +753,14 @@ impl GitLabClient {
|
||||
)> {
|
||||
let (state_res, label_res, milestone_res) = match entity_type {
|
||||
"issue" => {
|
||||
tokio::join!(
|
||||
futures::join!(
|
||||
self.fetch_issue_state_events(gitlab_project_id, iid),
|
||||
self.fetch_issue_label_events(gitlab_project_id, iid),
|
||||
self.fetch_issue_milestone_events(gitlab_project_id, iid),
|
||||
)
|
||||
}
|
||||
"merge_request" => {
|
||||
tokio::join!(
|
||||
futures::join!(
|
||||
self.fetch_mr_state_events(gitlab_project_id, iid),
|
||||
self.fetch_mr_label_events(gitlab_project_id, iid),
|
||||
self.fetch_mr_milestone_events(gitlab_project_id, iid),
|
||||
|
||||
@@ -55,7 +55,8 @@ impl GraphqlClient {
|
||||
.await
|
||||
.map_err(|e| LoreError::GitLabNetworkError {
|
||||
base_url: self.base_url.clone(),
|
||||
source: Some(e),
|
||||
kind: crate::core::error::NetworkErrorKind::Other,
|
||||
detail: Some(format!("{e:?}")),
|
||||
})?;
|
||||
|
||||
let status = response.status();
|
||||
|
||||
Reference in New Issue
Block a user