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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
use std::sync::Arc;
use bonsaidb_core::{permissions::PermissionDenied, schema, schema::InsertError, AnyError};
use schema::InvalidNameError;
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("a networking error occurred: '{0}'")]
Transport(String),
#[cfg(feature = "websockets")]
#[error("a websocket error occurred: '{0}'")]
WebSocket(#[from] tokio_tungstenite::tungstenite::Error),
#[error("a networking error occurred: '{0}'")]
Io(#[from] tokio::io::Error),
#[error("an error occurred processing a request: '{0}'")]
Request(Arc<dyn AnyError>),
#[error("error from core {0}")]
Core(#[from] bonsaidb_core::Error),
#[error("error while waiting for a message")]
InternalCommunication,
#[error("an error occurred interacting with a database: {0}")]
Database(#[from] bonsaidb_local::Error),
#[error("a certificate error: {0}")]
Certificate(#[from] fabruic::error::Certificate),
#[error("an invalid PEM file: {0}")]
#[cfg(feature = "pem")]
Pem(#[from] pem::PemError),
#[error("an error requesting an ACME certificate: {0}")]
#[cfg(feature = "acme")]
Acme(#[from] async_acme::acme::AcmeError),
#[error("an error occurred while processing an ACME order: {0}")]
#[cfg(feature = "acme")]
AcmeOrder(#[from] async_acme::rustls_helper::OrderError),
#[error("an error occurred during tls signing")]
TlsSigningError,
}
impl From<Error> for bonsaidb_core::Error {
fn from(other: Error) -> Self {
match other {
Error::Core(core) | Error::Database(bonsaidb_local::Error::Core(core)) => core,
Error::Database(storage) => Self::Database(storage.to_string()),
Error::Io(io) => Self::Io(io.to_string()),
Error::Transport(networking) => Self::Transport(networking),
#[cfg(feature = "websockets")]
Error::WebSocket(err) => Self::Websocket(err.to_string()),
err => Self::Server(err.to_string()),
}
}
}
impl From<flume::RecvError> for Error {
fn from(_: flume::RecvError) -> Self {
Self::InternalCommunication
}
}
impl<T> From<flume::SendError<T>> for Error {
fn from(_: flume::SendError<T>) -> Self {
Self::InternalCommunication
}
}
impl From<tokio::sync::oneshot::error::RecvError> for Error {
fn from(_: tokio::sync::oneshot::error::RecvError) -> Self {
Self::InternalCommunication
}
}
impl From<tokio::sync::oneshot::error::TryRecvError> for Error {
fn from(_: tokio::sync::oneshot::error::TryRecvError) -> Self {
Self::InternalCommunication
}
}
impl From<PermissionDenied> for Error {
fn from(err: PermissionDenied) -> Self {
Self::Core(bonsaidb_core::Error::PermissionDenied(err))
}
}
impl From<InvalidNameError> for Error {
fn from(err: InvalidNameError) -> Self {
Self::Core(bonsaidb_core::Error::InvalidName(err))
}
}
impl From<rustls::sign::SignError> for Error {
fn from(_: rustls::sign::SignError) -> Self {
Self::TlsSigningError
}
}
impl<T> From<InsertError<T>> for Error {
fn from(error: InsertError<T>) -> Self {
Self::from(error.error)
}
}
pub trait ResultExt<R> {
fn map_err_to_core(self) -> Result<R, bonsaidb_core::Error>
where
Self: Sized;
}
impl<R> ResultExt<R> for Result<R, Error> {
fn map_err_to_core(self) -> Result<R, bonsaidb_core::Error>
where
Self: Sized,
{
self.map_err(bonsaidb_core::Error::from)
}
}
impl From<pot::Error> for Error {
fn from(other: pot::Error) -> Self {
Self::Core(bonsaidb_core::Error::from(other))
}
}
#[cfg(feature = "websockets")]
impl From<bincode::Error> for Error {
fn from(other: bincode::Error) -> Self {
Self::Core(bonsaidb_core::Error::Websocket(format!(
"error deserializing message: {:?}",
other
)))
}
}
macro_rules! impl_from_fabruic {
($error:ty) => {
impl From<$error> for Error {
fn from(other: $error) -> Self {
Self::Core(bonsaidb_core::Error::Transport(other.to_string()))
}
}
};
}
impl_from_fabruic!(fabruic::error::CertificateChain);
impl_from_fabruic!(fabruic::error::Receiver);
impl_from_fabruic!(fabruic::error::Connecting);
impl_from_fabruic!(fabruic::error::PrivateKey);
impl_from_fabruic!(fabruic::error::KeyPair);
impl_from_fabruic!(fabruic::error::Connection);
impl_from_fabruic!(fabruic::error::Incoming);
impl_from_fabruic!(fabruic::error::AlreadyClosed);
impl_from_fabruic!(fabruic::error::Config);