blob: bf5622a627e3e6cb0a7d33759e27c3708c100b4b (
plain)
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
|
//! The Tor directory mirror implementation.
use crate::err::BuilderError;
use std::path::PathBuf;
/// Core data type of a directory mirror.
#[derive(Debug)]
pub struct DirMirror {
/// Access to the [`DirMirrorBuilder`].
builder: DirMirrorBuilder,
}
/// Builder type for [`DirMirror`].
#[derive(Debug, Default)]
pub struct DirMirrorBuilder {
/// The path to the SQLite database.
db_path: Option<PathBuf>,
}
impl DirMirror {
/// Returns a new [`DirMirrorBuilder`] with default values.
pub fn builder() -> DirMirrorBuilder {
DirMirrorBuilder::default()
}
}
impl DirMirrorBuilder {
/// Creates a new instance of a [`DirMirrorBuilder`].
pub fn new() -> Self {
Self::default()
}
/// Sets the path of the SQLite database to a path on the filesystem.
pub fn set_db_path(mut self, db_path: PathBuf) -> Self {
self.db_path = Some(db_path);
self
}
/// Builds a [`DirMirror`] from a [`DirMirrorBuilder`].
pub fn build(self) -> Result<DirMirror, BuilderError> {
if self.db_path.is_none() {
return Err(BuilderError::MissingField("db_path"));
}
Ok(DirMirror { builder: self })
}
}
|