-
Notifications
You must be signed in to change notification settings - Fork 9
/
transform.d
376 lines (346 loc) · 10.1 KB
/
transform.d
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/++
Mutable ASDF data structure.
The representation can be used to compute a difference between JSON object-trees.
Copyright: Tamedia Digital, 2016
Authors: Ilia Ki
License: BSL-1.0
+/
module asdf.transform;
import asdf.asdf;
import asdf.serialization;
import std.exception: enforce;
/++
Object-tree structure for mutable Asdf representation.
`AsdfNode` can be used to construct and manipulate JSON objects.
Each `AsdfNode` can represent either a dynamic JSON object (associative array of `AsdfNode` nodes) or a ASDF JSON value.
JSON arrays can be represented only as JSON values.
+/
struct AsdfNode
{
/++
Children nodes.
+/
AsdfNode[const(char)[]] children;
/++
Leaf data.
+/
Asdf data;
pure:
/++
Returns `true` if the node is leaf.
+/
bool isLeaf() const @safe pure nothrow @nogc
{
return cast(bool) data.data.length;
}
/++
Construct `AsdfNode` recursively.
+/
this(Asdf data)
{
if(data.kind == Asdf.Kind.object)
{
foreach(kv; data.byKeyValue)
{
children[kv.key] = AsdfNode(kv.value);
}
}
else
{
this.data = data;
enforce(isLeaf);
}
}
///
ref AsdfNode opIndex(scope const(char)[][] keys...) scope return
{
if(keys.length == 0)
return this;
auto ret = this;
for(;;)
{
auto ptr = keys[0] in ret.children;
enforce(ptr, "AsdfNode.opIndex: keys do not exist");
keys = keys[1 .. $];
if(keys.length == 0)
return *ptr;
ret = *ptr;
}
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto root = AsdfNode(text.parseJson);
assert(root["inner", "a"].data == `true`.parseJson);
}
///
void opIndexAssign(AsdfNode value, scope const(char)[][] keys...)
{
auto root = &this;
foreach(key; keys)
{
L:
auto ptr = key in root.children;
if(ptr)
{
enforce(ptr, "AsdfNode.opIndex: keys do not exist");
keys = keys[1 .. $];
root = ptr;
}
else
{
root.children[keys[0]] = AsdfNode.init;
goto L;
}
}
*root = value;
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto root = AsdfNode(text.parseJson);
auto value = AsdfNode(`true`.parseJson);
root["inner", "g", "u"] = value;
assert(root["inner", "g", "u"].data == true);
}
/++
Params:
value = default value
keys = list of keys
Returns: `[keys]` if any and `value` othervise.
+/
AsdfNode get(AsdfNode value, in char[][] keys...)
{
auto ret = this;
foreach(key; keys)
if(auto ptr = key in ret.children)
ret = *ptr;
else
{
ret = value;
break;
}
return ret;
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto root = AsdfNode(text.parseJson);
auto value = AsdfNode(`false`.parseJson);
assert(root.get(value, "inner", "a").data == true);
assert(root.get(value, "inner", "f").data == false);
}
/// Serialization primitive
void serialize(ref AsdfSerializer serializer)
{
if(isLeaf)
{
serializer.app.put(cast(const(char)[])data.data);
return;
}
auto state = serializer.structBegin;
foreach(key, ref value; children)
{
serializer.putKey(key);
value.serialize(serializer);
}
serializer.structEnd(state);
}
///
Asdf opCast(T : Asdf)()
{
return serializeToAsdf(this);
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto root = AsdfNode(text.parseJson);
import std.stdio;
Asdf flat = cast(Asdf) root;
assert(flat["inner", "a"] == true);
}
///
bool opEquals(in AsdfNode rhs) const @safe pure nothrow @nogc
{
if(isLeaf)
if(rhs.isLeaf)
return data == rhs.data;
else
return false;
else
if(rhs.isLeaf)
return false;
else
return children == rhs.children;
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto root1 = AsdfNode(text.parseJson);
auto root2= AsdfNode(text.parseJson);
assert(root1 == root2);
assert(root1["inner"].children.remove("b"));
assert(root1 != root2);
}
/// Adds data to the object-tree recursively.
void add(Asdf data)
{
if(data.kind == Asdf.Kind.object)
{
this.data = Asdf.init;
foreach(kv; data.byKeyValue)
{
if(auto nodePtr = kv.key in children)
{
nodePtr.add(kv.value);
}
else
{
children[kv.key] = AsdfNode(kv.value);
}
}
}
else
{
this.data = data;
children = null;
}
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto addition = `{"do":"re","inner":{"a":false,"u":2}}`;
auto root = AsdfNode(text.parseJson);
root.add(addition.parseJson);
auto result = `{"do":"re","foo":"bar","inner":{"a":false,"u":2,"b":false,"c":"32323","d":null,"e":{}}}`;
assert(root == AsdfNode(result.parseJson));
}
/// Removes keys from the object-tree recursively.
void remove(Asdf data)
{
enforce(children, "AsdfNode.remove: asdf data must be a sub-tree");
foreach(kv; data.byKeyValue)
{
if(kv.value.kind == Asdf.Kind.object)
{
if(auto nodePtr = kv.key in children)
{
nodePtr.remove(kv.value);
}
}
else
{
children.remove(kv.key);
}
}
}
///
unittest
{
import asdf;
auto text = `{"foo":"bar","inner":{"a":true,"b":false,"c":"32323","d":null,"e":{}}}`;
auto rem = `{"do":null,"foo":null,"inner":{"c":null,"e":null}}`;
auto root = AsdfNode(text.parseJson);
root.remove(rem.parseJson);
auto result = `{"inner":{"a":true,"b":false,"d":null}}`;
assert(root == AsdfNode(result.parseJson));
}
private void removedImpl(ref AsdfSerializer serializer, AsdfNode node)
{
import std.exception : enforce;
enforce(!isLeaf);
enforce(!node.isLeaf);
auto state = serializer.structBegin;
foreach(key, ref value; children)
{
auto nodePtr = key in node.children;
if(nodePtr && *nodePtr == value)
continue;
serializer.putKey(key);
if(nodePtr && !nodePtr.isLeaf && !value.isLeaf)
value.removedImpl(serializer, *nodePtr);
else
serializer.putValue(null);
}
serializer.structEnd(state);
}
/++
Returns the subset of the object-tree which is not represented in `node`.
If a leaf is represented but has a different value then it will be included
in the return value.
Returned value has ASDF format and its leaves are set to `null`.
+/
Asdf removed(AsdfNode node)
{
auto serializer = asdfSerializer();
removedImpl(serializer, node);
serializer.flush;
return serializer.app.result;
}
///
unittest
{
import asdf;
auto text1 = `{"inner":{"a":true,"b":false,"d":null}}`;
auto text2 = `{"foo":"bar","inner":{"a":false,"b":false,"c":"32323","d":null,"e":{}}}`;
auto node1 = AsdfNode(text1.parseJson);
auto node2 = AsdfNode(text2.parseJson);
auto diff = AsdfNode(node2.removed(node1));
assert(diff == AsdfNode(`{"foo":null,"inner":{"a":null,"c":null,"e":null}}`.parseJson));
}
void addedImpl(ref AsdfSerializer serializer, AsdfNode node)
{
import std.exception : enforce;
enforce(!isLeaf);
enforce(!node.isLeaf);
auto state = serializer.structBegin;
foreach(key, ref value; node.children)
{
auto nodePtr = key in children;
if(nodePtr && *nodePtr == value)
continue;
serializer.putKey(key);
if(nodePtr && !nodePtr.isLeaf && !value.isLeaf)
nodePtr.addedImpl(serializer, value);
else
value.serialize(serializer);
}
serializer.structEnd(state);
}
/++
Returns the subset of the node which is not represented in the object-tree.
If a leaf is represented but has a different value then it will be included
in the return value.
Returned value has ASDF format.
+/
Asdf added(AsdfNode node)
{
auto serializer = asdfSerializer();
addedImpl(serializer, node);
serializer.flush;
return serializer.app.result;
}
///
unittest
{
import asdf;
auto text1 = `{"foo":"bar","inner":{"a":false,"b":false,"c":"32323","d":null,"e":{}}}`;
auto text2 = `{"inner":{"a":true,"b":false,"d":null}}`;
auto node1 = AsdfNode(text1.parseJson);
auto node2 = AsdfNode(text2.parseJson);
auto diff = AsdfNode(node2.added(node1));
assert(diff == AsdfNode(`{"foo":"bar","inner":{"a":false,"c":"32323","e":{}}}`.parseJson));
}
}