1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use engula_journal::Error as JournalError;
use engula_storage::Error as StorageError;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error("{0} is not found")]
NotFound(String),
#[error("{0} already exists")]
AlreadyExists(String),
#[error("{0}")]
InvalidArgument(String),
#[error("{0}")]
Internal(String),
#[error(transparent)]
Io(#[from] std::io::Error),
#[error("{0}")]
Corrupted(String),
#[error(transparent)]
Unknown(Box<dyn std::error::Error + Send>),
}
impl Error {
pub fn unknown(err: impl std::error::Error + Send + 'static) -> Self {
Self::Unknown(Box::new(err))
}
}
impl From<JournalError> for Error {
fn from(err: JournalError) -> Self {
match err {
JournalError::NotFound(s) => Self::NotFound(s),
JournalError::AlreadyExists(s) => Self::AlreadyExists(s),
JournalError::InvalidArgument(s) => Self::InvalidArgument(s),
JournalError::Io(err) => Self::Io(err),
JournalError::Corrupted(s) => Self::Corrupted(s),
err @ JournalError::Unknown(_) => Self::Unknown(Box::new(err)),
}
}
}
impl From<StorageError> for Error {
fn from(err: StorageError) -> Self {
match err {
StorageError::NotFound(s) => Self::NotFound(s),
StorageError::AlreadyExists(s) => Self::AlreadyExists(s),
StorageError::InvalidArgument(s) => Self::InvalidArgument(s),
StorageError::Io(err) => Self::Io(err),
StorageError::Unknown(err) => Self::Unknown(err),
}
}
}
pub type Result<T> = std::result::Result<T, Error>;