1
use std::{convert::Infallible, str::Utf8Error, string::FromUtf8Error, sync::Arc};
2

            
3
use bonsaidb_core::{
4
    permissions::PermissionDenied,
5
    schema::{view, InvalidNameError},
6
    AnyError,
7
};
8
use nebari::AbortError;
9

            
10
/// Errors that can occur from interacting with storage.
11
3
#[derive(thiserror::Error, Debug)]
12
pub enum Error {
13
    /// An error occurred interacting with the storage layer, `nebari`.
14
    #[error("error from storage: {0}")]
15
    Nebari(#[from] nebari::Error),
16

            
17
    /// An error occurred serializing the underlying database structures.
18
    #[error("error while serializing internal structures: {0}")]
19
    InternalSerialization(#[from] bincode::Error),
20

            
21
    /// An error occurred serializing the contents of a `Document` or results of a `View`.
22
    #[error("error while serializing: {0}")]
23
    Serialization(#[from] pot::Error),
24

            
25
    /// An internal error occurred while waiting for or sending a message.
26
    #[error("error while communicating internally")]
27
    InternalCommunication,
28

            
29
    /// An error occurred while executing a view
30
    #[error("error from view: {0}")]
31
    View(#[from] view::Error),
32

            
33
    /// An error occurred in the secrets storage layer.
34
    #[error("a vault error occurred: {0}")]
35
    #[cfg(feature = "encryption")]
36
    Vault(#[from] crate::vault::Error),
37

            
38
    /// A collection requested to be encrypted, but encryption is disabled.
39
    #[error("encryption is disabled, but a collection is requesting encryption")]
40
    #[cfg(not(feature = "encryption"))]
41
    EncryptionDisabled,
42

            
43
    /// An core error occurred.
44
    #[error("a core error occurred: {0}")]
45
    Core(#[from] bonsaidb_core::Error),
46

            
47
    /// A tokio task failed to execute.
48
    #[error("a concurrency error ocurred: {0}")]
49
    TaskJoin(#[from] tokio::task::JoinError),
50

            
51
    /// A tokio task failed to execute.
52
    #[error("an IO error occurred: {0}")]
53
    Io(#[from] tokio::io::Error),
54

            
55
    /// An error occurred from a job and couldn't be unwrapped due to clones.
56
    #[error("an error from a job occurred: {0}")]
57
    Job(Arc<Error>),
58

            
59
    /// An error occurred from backing up or restoring.
60
    #[error("a backup error: {0}")]
61
    Backup(Box<dyn AnyError>),
62

            
63
    /// An error occurred with a password hash.
64
    #[cfg(feature = "password-hashing")]
65
    #[error("password hash error: {0}")]
66
    PasswordHash(String),
67
}
68

            
69
impl From<flume::RecvError> for Error {
70
    fn from(_: flume::RecvError) -> Self {
71
        Self::InternalCommunication
72
    }
73
}
74

            
75
#[cfg(feature = "password-hashing")]
76
impl From<argon2::Error> for Error {
77
    fn from(err: argon2::Error) -> Self {
78
        Self::PasswordHash(err.to_string())
79
    }
80
}
81

            
82
#[cfg(feature = "password-hashing")]
83
impl From<argon2::password_hash::Error> for Error {
84
    fn from(err: argon2::password_hash::Error) -> Self {
85
        Self::PasswordHash(err.to_string())
86
    }
87
}
88

            
89
impl From<tokio::sync::oneshot::error::RecvError> for Error {
90
    fn from(_: tokio::sync::oneshot::error::RecvError) -> Self {
91
        Self::InternalCommunication
92
    }
93
}
94

            
95
impl From<tokio::sync::oneshot::error::TryRecvError> for Error {
96
    fn from(_: tokio::sync::oneshot::error::TryRecvError) -> Self {
97
        Self::InternalCommunication
98
    }
99
}
100

            
101
impl From<Error> for bonsaidb_core::Error {
102
    fn from(err: Error) -> Self {
103
74
        match err {
104
14894
            Error::View(view::Error::Core(core)) | Error::Core(core) => core,
105
2
            other => Self::Database(other.to_string()),
106
        }
107
14896
    }
108
}
109

            
110
impl From<Arc<Error>> for Error {
111
    fn from(err: Arc<Error>) -> Self {
112
        match Arc::try_unwrap(err) {
113
            Ok(err) => err,
114
            Err(still_wrapped) => Error::Job(still_wrapped),
115
        }
116
    }
117
}
118

            
119
impl From<FromUtf8Error> for Error {
120
    fn from(err: FromUtf8Error) -> Self {
121
        Self::Core(bonsaidb_core::Error::InvalidUnicode(err.to_string()))
122
    }
123
}
124

            
125
impl From<Utf8Error> for Error {
126
    fn from(err: Utf8Error) -> Self {
127
        Self::Core(bonsaidb_core::Error::InvalidUnicode(err.to_string()))
128
    }
129
}
130

            
131
impl From<InvalidNameError> for Error {
132
    fn from(err: InvalidNameError) -> Self {
133
        Self::Core(bonsaidb_core::Error::from(err))
134
    }
135
}
136

            
137
impl From<AbortError<Infallible>> for Error {
138
    fn from(err: AbortError<Infallible>) -> Self {
139
        match err {
140
            AbortError::Nebari(error) => Self::Nebari(error),
141
            AbortError::Other(_) => unreachable!(),
142
        }
143
    }
144
}
145

            
146
impl From<AbortError<Error>> for Error {
147
    fn from(err: AbortError<Error>) -> Self {
148
        match err {
149
            AbortError::Nebari(error) => Self::Nebari(error),
150
            AbortError::Other(error) => error,
151
        }
152
    }
153
}
154

            
155
impl From<PermissionDenied> for Error {
156
2
    fn from(err: PermissionDenied) -> Self {
157
2
        Self::Core(bonsaidb_core::Error::from(err))
158
2
    }
159
}
160

            
161
1
#[test]
162
1
fn test_converting_error() {
163
1
    use serde::ser::Error as _;
164
1
    let err: bonsaidb_core::Error = Error::Serialization(pot::Error::custom("mymessage")).into();
165
1
    match err {
166
1
        bonsaidb_core::Error::Database(storage_error) => {
167
1
            assert!(storage_error.contains("mymessage"));
168
        }
169
        _ => unreachable!(),
170
    }
171
1
}