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
use std::{fmt::Debug, marker::PhantomData};
use async_trait::async_trait;
use bonsaidb_core::{
api::{self, Api, ApiError, Infallible},
arc_bytes::serde::Bytes,
permissions::PermissionDenied,
schema::{InsertError, InvalidNameError},
};
use crate::{Backend, ConnectedClient, CustomServer, Error, NoBackend};
#[async_trait]
pub trait Handler<B: Backend, Api: api::Api>: Send + Sync {
async fn handle(session: HandlerSession<'_, B>, request: Api) -> HandlerResult<Api>;
}
pub struct HandlerSession<'a, B: Backend = NoBackend> {
pub server: &'a CustomServer<B>,
pub as_client: CustomServer<B>,
pub client: &'a ConnectedClient<B>,
}
#[async_trait]
pub(crate) trait AnyHandler<B: Backend>: Send + Sync + Debug {
async fn handle(&self, session: HandlerSession<'_, B>, request: &[u8]) -> Result<Bytes, Error>;
}
pub(crate) struct AnyWrapper<D: Handler<B, A>, B: Backend, A: Api>(
pub(crate) PhantomData<(D, B, A)>,
);
impl<D, B, A> Debug for AnyWrapper<D, B, A>
where
D: Handler<B, A>,
B: Backend,
A: Api,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_tuple("AnyWrapper").finish()
}
}
#[async_trait]
impl<T, B, A> AnyHandler<B> for AnyWrapper<T, B, A>
where
B: Backend,
T: Handler<B, A>,
A: Api,
{
async fn handle(&self, client: HandlerSession<'_, B>, request: &[u8]) -> Result<Bytes, Error> {
let request = pot::from_slice(request)?;
let response = match T::handle(client, request).await {
Ok(response) => Ok(response),
Err(HandlerError::Api(err)) => Err(err),
Err(HandlerError::Server(err)) => return Err(err),
};
Ok(Bytes::from(pot::to_vec(&response)?))
}
}
#[derive(thiserror::Error, Debug)]
pub enum HandlerError<E: ApiError = Infallible> {
#[error("api error: {0}")]
Api(E),
#[error("server error: {0}")]
Server(#[from] Error),
}
impl<E: ApiError> From<PermissionDenied> for HandlerError<E> {
fn from(permission_denied: PermissionDenied) -> Self {
Self::Server(Error::from(permission_denied))
}
}
impl<E: ApiError> From<bonsaidb_core::Error> for HandlerError<E> {
fn from(err: bonsaidb_core::Error) -> Self {
Self::Server(Error::from(err))
}
}
impl<E: ApiError> From<bonsaidb_local::Error> for HandlerError<E> {
fn from(err: bonsaidb_local::Error) -> Self {
Self::Server(Error::from(err))
}
}
impl<E: ApiError> From<InvalidNameError> for HandlerError<E> {
fn from(err: InvalidNameError) -> Self {
Self::Server(Error::from(err))
}
}
#[cfg(feature = "websockets")]
impl<E: ApiError> From<bincode::Error> for HandlerError<E> {
fn from(other: bincode::Error) -> Self {
Self::Server(Error::from(bonsaidb_local::Error::from(other)))
}
}
impl<E: ApiError> From<pot::Error> for HandlerError<E> {
fn from(other: pot::Error) -> Self {
Self::Server(Error::from(other))
}
}
impl<T, E> From<InsertError<T>> for HandlerError<E>
where
E: ApiError,
{
fn from(error: InsertError<T>) -> Self {
Self::Server(Error::from(error.error))
}
}
pub type HandlerResult<Api> =
Result<<Api as api::Api>::Response, HandlerError<<Api as api::Api>::Error>>;