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
|
pub mod fondant_exports {
pub use directories::{ProjectDirs, UserDirs};
pub use serde::{de::DeserializeOwned, Serialize};
pub use serde_json;
pub use serde_yaml;
use std::path::{Path, PathBuf};
pub use toml;
pub fn expand_tilde<P: AsRef<Path>>(path: P) -> PathBuf {
let p = path.as_ref();
if p.starts_with("~") {
if p == Path::new("~") {
return UserDirs::new().unwrap().home_dir().to_path_buf();
} else {
let mut h = UserDirs::new().unwrap().home_dir().to_path_buf();
h.push(p.strip_prefix("~/").unwrap());
return h;
}
}
return p.to_path_buf();
}
}
use serde::{de::DeserializeOwned, Serialize};
#[derive(Debug)]
/// Errors that `load` and `store` can result in
pub enum FondantError {
/// Occurs when the home dir is not accessible.
/// You should probably `panic!` when this is thrown.
InvalidHomeDir,
/// Invalid toml/yaml/json config.
ConfigParseError,
/// Invalid permissions to create config dir.
/// Might occur when you set config dir to, say, `/etc/config.toml` and run without superuser.
DirCreateErr(std::io::Error),
LoadError,
FileWriteError,
FileReadError,
FileOpenError,
}
/// Derive this trait on a struct to mark it as a 'configuration' struct.
pub trait Configure: Serialize + DeserializeOwned + Default {
fn load() -> Result<Self, FondantError>;
fn store(&self) -> Result<(), FondantError>;
}
|