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
use async_trait::async_trait;
use feattle_core::persist::*;
use serde::de::DeserializeOwned;
use serde::Serialize;
use std::io::ErrorKind;
use std::path::PathBuf;
use tokio::fs::{create_dir_all, File};
use tokio::io;
use tokio::io::{AsyncReadExt, AsyncWriteExt};
#[derive(Debug, Clone)]
pub struct Disk {
dir: PathBuf,
}
impl Disk {
pub fn new<P: Into<PathBuf>>(dir: P) -> Self {
let dir = dir.into();
Disk { dir }
}
async fn save<T: Serialize>(&self, name: &str, value: T) -> io::Result<()> {
create_dir_all(&self.dir).await?;
let contents = serde_json::to_string(&value)?;
let mut file = File::create(self.dir.join(name)).await?;
Ok(file.write_all(contents.as_bytes()).await?)
}
async fn load<T: DeserializeOwned>(&self, name: &str) -> io::Result<Option<T>> {
match File::open(self.dir.join(name)).await {
Err(err) if err.kind() == ErrorKind::NotFound => Ok(None),
Err(err) => Err(err),
Ok(mut file) => {
let mut contents = String::new();
file.read_to_string(&mut contents).await?;
Ok(Some(serde_json::from_str(&contents)?))
}
}
}
}
#[async_trait]
impl Persist for Disk {
type Error = io::Error;
async fn save_current(&self, value: &CurrentValues) -> Result<(), Self::Error> {
self.save("current.json", value).await
}
async fn load_current(&self) -> Result<Option<CurrentValues>, Self::Error> {
self.load("current.json").await
}
async fn save_history(&self, key: &str, value: &ValueHistory) -> Result<(), Self::Error> {
self.save(&format!("history-{}.json", key), value).await
}
async fn load_history(&self, key: &str) -> Result<Option<ValueHistory>, Self::Error> {
self.load(&format!("history-{}.json", key)).await
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::tests::test_persistence;
#[tokio::test]
async fn disk() {
let dir = tempfile::TempDir::new().unwrap();
test_persistence(Disk::new(dir.path())).await;
}
}