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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
use std::collections::BTreeMap;
use serde::{ser::SerializeMap, Deserialize, Serialize};
use smartstring::alias::CompactString;
type Map<T, V> = BTreeMap<T, V>;
#[derive(Default, Clone, Debug)]
pub struct Archive {
pub content: Map<CompactString, Node>,
}
#[derive(Default, Clone, Debug)]
pub struct Node {
pub paths: Map<CompactString, Node>,
pub values: Map<CompactString, serde_json::Value>,
}
impl Archive {
pub fn find_path<'s, 'a>(
&'s self,
path: impl IntoIterator<Item = &'a str>,
) -> Option<&'s Node> {
let mut iter = path.into_iter();
let mut paths = &self.content;
let mut node = None;
while let Some(key) = iter.next() {
if let Some(next_node) = paths.get(key) {
node = Some(next_node);
paths = &next_node.paths;
} else {
return None;
}
}
node
}
pub fn find_or_create_path_mut<'s, 'a>(
&'s mut self,
path: impl IntoIterator<Item = &'a str>,
) -> &'s mut Node {
let mut iter = path.into_iter();
let mut key = iter.next().unwrap();
let mut node = self.content.entry(key.into()).or_default();
loop {
if let Some(k) = iter.next() {
key = k;
} else {
break;
}
node = node.paths.entry(key.into()).or_default();
}
node
}
pub fn merge_with(&mut self, other: Self) {
for (k, v) in other.content {
self.content.entry(k).or_default().merge(v);
}
}
pub fn merge(mut self, other: Self) -> Self {
self.merge_with(other);
self
}
}
impl Node {
pub fn merge(&mut self, other: Self) {
for (k, v) in other.paths {
self.paths.entry(k).or_default().merge(v);
}
for (k, v) in other.values {
self.values.insert(k, v);
}
}
}
impl<'a> Deserialize<'a> for Archive {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'a>,
{
Ok(Self {
content: <Map<CompactString, Node>>::deserialize(deserializer)?,
})
}
}
impl Serialize for Archive {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
self.content.serialize(serializer)
}
}
impl<'a> Deserialize<'a> for Node {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'a>,
{
struct PathNodeVisit {
build: Node,
}
impl<'de> serde::de::Visitor<'de> for PathNodeVisit {
type Value = Node;
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
formatter.write_str("Object consist of Tilde(~) prefixed objects or ")
}
fn visit_map<A>(mut self, mut map: A) -> Result<Self::Value, A::Error>
where
A: serde::de::MapAccess<'de>,
{
while let Some(mut key) = map.next_key::<CompactString>()? {
if !key.is_empty() && key.starts_with("~") {
key.remove(0); let child: Node = map.next_value()?;
self.build.paths.insert(key, child);
} else {
let value: serde_json::Value = map.next_value()?;
self.build.values.insert(key, value);
}
}
Ok(self.build)
}
}
deserializer.deserialize_map(PathNodeVisit {
build: Default::default(),
})
}
}
impl Serialize for Node {
fn serialize<S>(&self, se: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
let mut map = se.serialize_map(Some(self.paths.len() + self.values.len()))?;
let mut key_b = String::with_capacity(10);
for (k, v) in &self.paths {
key_b.push('~');
key_b.push_str(&k);
map.serialize_entry(&key_b, v)?;
key_b.clear();
}
for (k, v) in &self.values {
debug_assert!(
!k.starts_with("~"),
"Tilde prefixed key '{k}' for field is not allowed!"
);
map.serialize_entry(k, v)?;
}
map.end()
}
}
#[test]
fn test_load() {
let src = r##"
{
"root_path_1": {
"~subpath1": {
"value1": null,
"value2": {},
"~sub-subpath": {}
},
"~subpath2": {}
},
"root_path_2": {
"value1": null,
"value2": 31.4,
"value3": "hoho-haha",
"value-obj": {
"~pathlike": 3.141
}
}
}
"##;
let arch: Archive = serde_json::from_str(src).unwrap();
assert!(arch.content.len() == 2);
let p1 = arch.content.get("root_path_1").unwrap();
assert!(p1.paths.len() == 2);
assert!(p1.values.is_empty());
let sp1 = p1.paths.get("subpath1").unwrap();
assert!(sp1.paths.contains_key("sub-subpath"));
assert!(sp1.values.len() == 2);
assert!(sp1.values.contains_key("value1"));
assert!(sp1.values.contains_key("value2"));
assert!(sp1.values.get("value1").unwrap().is_null());
assert!(sp1
.values
.get("value2")
.unwrap()
.as_object()
.unwrap()
.is_empty());
let p2 = arch.content.get("root_path_2").unwrap();
assert!(p2.paths.is_empty());
assert!(p2.values.len() == 4);
}