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
use context::Context;
use serde_json::Value;
use std::path::Path;
pub mod builder;
mod config;
pub mod context;
pub mod error;
pub mod parser;
mod reader;
use error::*;
#[macro_export]
macro_rules! context_map {
// Base case: empty map
(@single $($x:tt)*) => (());
// Case for a map with a single key-value pair
(@count $($rest:expr),*) => (<[()]>::len(&[$(context_map!(@single $rest)),*]));
// Case for a map with multiple key-value pairs
($($key:expr => $value:expr,)+) => { context_map!($($key.to_string() => $value),+) };
// Recursive case: build a map from multiple key-value pairs
($($key:expr => $value:expr),*) => {
{
use std::collections::HashMap;
let _cap = context_map!(@count $($key),*);
let mut _map = HashMap::with_capacity(_cap);
$(
_map.insert($key, context_map!($value));
)*
$crate::context::Context::new(_map)
}
};
// Case for a single value (not a map)
($value:expr) => {
serde_json::to_value($value).unwrap()
};
}
pub struct JsonBuilder;
impl JsonBuilder {
pub fn render<P>(path: P, context: Context) -> Result<Value>
where
P: AsRef<Path>,
{
let input = reader::read(path.as_ref().to_path_buf())?;
let ast = parser::parse(&input)?;
builder::build(ast, context)
}
pub fn render_raw(input: &str, context: Context) -> Result<Value> {
let ast = parser::parse(input)?;
builder::build(ast, context)
}
}
#[cfg(test)]
mod tests {
use serde::Serialize;
use serde_json::json;
use super::*;
#[derive(Serialize)]
struct User {
name: String,
age: u32,
password: String,
}
#[derive(Serialize)]
struct Note {
content: String,
author: User,
comments: Vec<Comment>,
}
#[derive(Serialize)]
struct Comment {
content: String,
author: User,
}
fn notes() -> Vec<Note> {
vec![
Note {
content: "Hello, world!".to_string(),
author: User {
name: "John Doe".to_string(),
age: 30,
password: "password".to_string(),
},
comments: vec![
Comment {
content: "Nice!".to_string(),
author: User {
name: "Jane Doe".to_string(),
age: 25,
password: "password".to_string(),
},
},
Comment {
content: "Great!".to_string(),
author: User {
name: "Jack Doe".to_string(),
age: 35,
password: "password".to_string(),
},
},
],
},
Note {
content: "Goodbye, world!".to_string(),
author: User {
name: "Jane Doe".to_string(),
age: 25,
password: "password".to_string(),
},
comments: vec![
Comment {
content: "Nice!".to_string(),
author: User {
name: "John Doe".to_string(),
age: 30,
password: "password".to_string(),
},
},
Comment {
content: "Great!".to_string(),
author: User {
name: "Jack Doe".to_string(),
age: 35,
password: "password".to_string(),
},
},
],
},
]
}
#[test]
fn note_template_test() {
let note = ¬es()[0];
let context = context_map! {
"note" => note,
};
let value = JsonBuilder::render("tests/object_template_test", context).unwrap();
assert_eq!(
value,
serde_json::json!({
"content": "Hello, world!",
"author": {
"name": "John Doe",
"age": 30,
},
})
);
}
#[test]
fn notes_template_test() {
let context = context_map! {
"notes" => notes(),
};
let value = JsonBuilder::render("tests/array_template_test", context).unwrap();
assert_eq!(
value,
json!({
"notes": [
{
"content": "Hello, world!",
"author": {
"name": "John Doe",
"age": 30,
},
"comments": [
{
"content": "Nice!",
"author": {
"name": "Jane Doe",
"age": 25,
},
},
{
"content": "Great!",
"author": {
"name": "Jack Doe",
"age": 35,
},
},
],
},
{
"content": "Goodbye, world!",
"author": {
"name": "Jane Doe",
"age": 25,
},
"comments": [
{
"content": "Nice!",
"author": {
"name": "John Doe",
"age": 30,
},
},
{
"content": "Great!",
"author": {
"name": "Jack Doe",
"age": 35,
},
},
],
}
]
})
);
}
}