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
#![forbid(unsafe_code)]
#![forbid(clippy::unwrap_used)]
#![deny(clippy::pedantic)]
#![deny(clippy::get_unwrap)]
#![allow(clippy::module_name_repetitions)]
pub mod extract;
mod handler;
mod method_router;
mod router;
mod sync_service;
use std::sync::Arc;
use covert_storage::{
migrator::{migrate, MigrationError, MigrationScript},
EncryptedPool,
};
use tower::ServiceExt;
pub use method_router::*;
pub use router::Router;
pub use sync_service::SyncService;
use covert_types::{
backend::{BackendCategory, BackendType},
error::ApiError,
request::Request,
response::Response,
};
#[derive(Debug)]
pub struct Backend {
pub handler: SyncService<Request, Response>,
pub category: BackendCategory,
pub variant: BackendType,
pub migrations: Vec<MigrationScript>,
}
impl Backend {
pub async fn handle_request(&self, req: Request) -> Result<Response, ApiError> {
let handler = self.handler.clone();
handler.oneshot(req).await
}
#[must_use]
pub fn category(&self) -> BackendCategory {
self.category
}
#[must_use]
pub fn variant(&self) -> BackendType {
self.variant
}
#[tracing::instrument(skip(self, pool))]
pub async fn migrate(
&self,
pool: Arc<EncryptedPool>,
mount_id: &str,
prefix: &str,
) -> Result<(), MigrationError> {
migrate(pool.as_ref(), &self.migrations, mount_id, prefix).await
}
}