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
use std::collections::BTreeMap;
use std::fs::{OpenOptions, read_to_string};
use std::io::Write;
use std::path::Path;
use serde::{Deserialize, Serialize};
use crate::errors::{SerializationError, DeserializationError};
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(untagged)]
pub enum Type {
Integer(i64),
ByteString(String),
List(Vec<Type>),
Dictionary(BTreeMap<String, Type>),
}
impl Type {
pub fn from_json(s: &String) -> Result<Type, DeserializationError> {
match serde_json::from_str::<Type>(s) {
Err(_) => Err(DeserializationError::JsonDeserializationError),
Ok(t) => Ok(t),
}
}
pub fn to_json(&self) -> Result<String, SerializationError> {
match serde_json::to_string(self) {
Err(_) => Err(SerializationError::JsonSerializationError),
Ok(str) => Ok(str),
}
}
pub fn load_from_json<P>(path: P) -> Result<Type, DeserializationError>
where
P: AsRef<Path>
{
match read_to_string(path) {
Err(_) => return Err(DeserializationError::FileError),
Ok(json_str) => Type::from_json(&json_str),
}
}
pub fn save_to_json<P>(&self, path: P) -> Result<(), SerializationError>
where
P: AsRef<Path>
{
let json = self.to_json()?;
let file = OpenOptions::new()
.write(true)
.create_new(true)
.open(path);
match file {
Err(_) => return Err(SerializationError::FileError),
Ok(mut file) => {
match writeln!(file, "{}", json) {
Ok(_) => Ok(()),
Err(_) => Err(SerializationError::FileSerializationError),
}
},
}
}
}