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
use super::*;
pub fn matches(tree: &serde_json::Value, paths_pattern: &str) -> Result<bool> {
for single_alternative in split_alternatives(paths_pattern) {
if match_single(tree, single_alternative)? {
return Ok(true);
}
}
Ok(false)
}
pub fn match_single(tree: &serde_json::Value, path: &str) -> Result<bool> {
match tree {
serde_json::Value::Object(map) => {
let (property_name, path_tail_opt) = split_head_tail(path)?;
let path_tail = match path_tail_opt {
None => return Ok(map.contains_key(property_name)),
Some(path_tail) => path_tail,
};
let property_val_opt = map.get(property_name);
match property_val_opt {
Some(subtree) => match_single(subtree, path_tail),
None => Ok(false),
}
}
_ => Ok(false),
}
}
pub fn split_alternatives(paths_pattern: &str) -> Vec<&str> {
paths_pattern
.split_terminator(',')
.map(|item| item.trim())
.collect()
}
pub fn split_head_tail(path: &str) -> Result<(&str, Option<&str>)> {
if !path.starts_with('.') {
bail!("Path must start with '.' but it's: {}", path);
}
let path = &path[1..];
let dot_idx_opt = path.find('.');
let tuple = match dot_idx_opt {
None => (path, None),
Some(dot_idx) => {
let (path_head, path_tail) = path.split_at(dot_idx);
(path_head, Some(path_tail))
}
};
Ok(tuple)
}
#[cfg(test)]
mod tests {
use serde_json::json;
use super::*;
fn sample_json_object() -> serde_json::Value {
json!({
"name": "John Doe",
"age": 43,
"phones": [
"+42 1234567",
"+44 2345678"
],
"address": {
"country": "Germany",
"city": "Berlin",
"zip": 1234,
"street": {
"name": "Some Street",
"number": "1"
}
}
})
}
#[test]
fn path_matches() -> Result<()> {
let obj = sample_json_object();
assert!(matches(&obj, "invalidpath").is_err());
assert_eq!(matches(&obj, ".notpresent").ok(), Some(false));
assert_eq!(matches(&obj, ".name").ok(), Some(true));
assert_eq!(matches(&obj, ".a").ok(), Some(false));
assert_eq!(matches(&obj, ".age").ok(), Some(true));
assert_eq!(matches(&obj, ".ageover").ok(), Some(false));
assert_eq!(matches(&obj, ".phones").ok(), Some(true));
assert_eq!(matches(&obj, ".phones.first").ok(), Some(false));
assert_eq!(matches(&obj, ".address").ok(), Some(true));
assert_eq!(matches(&obj, ".address.country").ok(), Some(true));
assert_eq!(matches(&obj, ".address.city").ok(), Some(true));
assert_eq!(matches(&obj, ".address.street").ok(), Some(true));
assert_eq!(matches(&obj, ".address.street.name").ok(), Some(true));
assert_eq!(matches(&obj, ".address.street.number").ok(), Some(true));
assert_eq!(matches(&obj, ".address.street.none").ok(), Some(false));
assert_eq!(matches(&obj, ".address.phone").ok(), Some(false));
assert!(matches(&obj, ".none , invalid , .ageover ").is_err());
assert_eq!(matches(&obj, ".none , .fake , .ageover ").ok(), Some(false));
assert_eq!(matches(&obj, ".none , .fake , .ageover , .age").ok(), Some(true));
assert_eq!(matches(&obj, ".addr , .address.street.num, .xxx").ok(), Some(false));
assert_eq!(matches(&obj, ".addr , .address.street.number, .xxx").ok(), Some(true));
assert_eq!(matches(&obj, ".ad , .address.street.numbers, .xxx").ok(), Some(false));
Ok(())
}
}