Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: switch to serde_error directly #5

Merged
merged 3 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ redb_v1 = { package = "redb", version = "1.5.1", optional = true }
reflink-copy = { version = "0.1.8", optional = true }
self_cell = "1.0.1"
serde = { version = "1", features = ["derive"] }
serde-error = "0.1.3"
smallvec = { version = "1.10.0", features = ["serde", "const_new"] }
tempfile = { version = "3.10.0", optional = true }
thiserror = "1"
Expand Down Expand Up @@ -102,7 +103,7 @@ unused-async = "warn"

[profile.dev-ci]
inherits = 'dev'
opt-level = 1
opt-level = 1

[profile.optimized-release]
inherits = 'release'
Expand Down
6 changes: 3 additions & 3 deletions src/downloader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -796,9 +796,9 @@ impl<G: Getter<Connection = D::Connection>, D: Dialer> Service<G, D> {
if let Some(sender) = handlers.on_progress {
self.progress_tracker.unsubscribe(&kind, &sender);
sender
.send(DownloadProgress::Abort(
anyhow::Error::from(DownloadError::Cancelled).into(),
))
.send(DownloadProgress::Abort(serde_error::Error::new(
&*anyhow::Error::from(DownloadError::Cancelled),
)))
.await
.ok();
}
Expand Down
3 changes: 1 addition & 2 deletions src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use std::path::PathBuf;

use anyhow::Context;
use bytes::Bytes;
use iroh_base::rpc::RpcError;
use serde::{Deserialize, Serialize};
use tracing::trace;

Expand Down Expand Up @@ -124,7 +123,7 @@ pub enum ExportProgress {
/// We are done with the whole operation.
AllDone,
/// We got an error and need to abort.
Abort(RpcError),
Abort(serde_error::Error),
}

fn pathbuf_from_name(name: &str) -> PathBuf {
Expand Down
4 changes: 2 additions & 2 deletions src/get/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use genawaiter::{
rc::{Co, Gen},
GeneratorState,
};
use iroh_base::{hash::Hash, rpc::RpcError};
use iroh_base::hash::Hash;
use iroh_io::AsyncSliceReader;
use iroh_net::endpoint::Connection;
use serde::{Deserialize, Serialize};
Expand Down Expand Up @@ -669,7 +669,7 @@ pub enum DownloadProgress {
/// We got an error and need to abort.
///
/// This will be the last message in the stream.
Abort(RpcError),
Abort(serde_error::Error),
}

/// The id of a blob in a transfer
Expand Down
5 changes: 2 additions & 3 deletions src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use bao_tree::io::{
EncodeError,
};
use futures_lite::future::Boxed as BoxFuture;
use iroh_base::rpc::RpcError;
use iroh_io::{
stats::{SliceReaderStats, StreamWriterStats, TrackingSliceReader, TrackingStreamWriter},
AsyncSliceReader, AsyncStreamWriter, TokioStreamWriter,
Expand Down Expand Up @@ -157,7 +156,7 @@ pub enum AddProgress {
/// We got an error and need to abort.
///
/// This will be the last message in the stream.
Abort(RpcError),
Abort(serde_error::Error),
}

/// Progress updates for the batch add operation.
Expand All @@ -181,7 +180,7 @@ pub enum BatchAddPathProgress {
/// We got an error and need to abort.
///
/// This will be the last message in the stream.
Abort(RpcError),
Abort(serde_error::Error),
}

/// Read the request from the getter.
Expand Down
5 changes: 2 additions & 3 deletions src/store/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use bao_tree::{
use bytes::Bytes;
use futures_lite::{Stream, StreamExt};
use genawaiter::rc::{Co, Gen};
use iroh_base::rpc::RpcError;
use iroh_io::AsyncSliceReader;
pub use range_collections;
use serde::{Deserialize, Serialize};
Expand Down Expand Up @@ -877,7 +876,7 @@ pub enum ConsistencyCheckProgress {
/// Consistency check ended
Done,
/// We got an error and need to abort.
Abort(RpcError),
Abort(serde_error::Error),
}

/// Progress updates for the validate operation
Expand Down Expand Up @@ -947,7 +946,7 @@ pub enum ValidateProgress {
/// We are done with the whole operation.
AllDone,
/// We got an error and need to abort.
Abort(RpcError),
Abort(serde_error::Error),
}

/// Database events
Expand Down
Loading