Skip to content

Commit 79eb622

Browse files
authored
Merge pull request #10 from libmir/devel
2 parents c7bea0c + e664c84 commit 79eb622

File tree

6 files changed

+476
-740
lines changed

6 files changed

+476
-740
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ dub.selections.json
1414

1515
libasdf.a
1616
builddir
17-
1817
example/filter_and_arrays/filter_and_arrays
1918

2019
examples/filter_and_arrays/filter_and_arrays

README.md

+131-143
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ import asdf;
4040
4141
struct Simple
4242
{
43-
string name;
44-
ulong level;
43+
string name;
44+
ulong level;
4545
}
4646
4747
void main()
4848
{
49-
auto o = Simple("asdf", 42);
50-
string data = `{"name":"asdf","level":42}`;
51-
assert(o.serializeToJson() == data);
52-
assert(data.deserialize!Simple == o);
49+
auto o = Simple("asdf", 42);
50+
string data = `{"name":"asdf","level":42}`;
51+
assert(o.serializeToJson() == data);
52+
assert(data.deserialize!Simple == o);
5353
}
5454
```
5555
#### Documentation
@@ -77,12 +77,12 @@ Now you need to edit the `dub.json` add `asdf` as dependency and set its targetT
7777
(dub.json)
7878
```json
7979
{
80-
...
81-
"dependencies": {
82-
"asdf": "~><current-version>"
83-
},
84-
"targetType": "executable",
85-
"dflags-ldc": ["-mcpu=native"]
80+
...
81+
"dependencies": {
82+
"asdf": "~><current-version>"
83+
},
84+
"targetType": "executable",
85+
"dflags-ldc": ["-mcpu=native"]
8686
}
8787
```
8888

@@ -116,7 +116,6 @@ For example, `-mattr=+sse4.2`. ASDF has specialized code for
116116
| `@serdeKeys("bar_common", "bar")` | tries to read the data from either property. saves it to the first one |
117117
| `@serdeKeysIn("a", "b")` | tries to read the data from `a`, then `b`. last one occuring in the json wins |
118118
| `@serdeKeyOut("a")` | writes it to `a` |
119-
| `@serializationMultiKeysIn(["a", "b", "c"])` | tries to get the data from a sub object. this has not optimal performance yet if you are using more than 1 serializationMultiKeysIn in an object |
120119
| `@serdeIgnore` | ignore this property completely |
121120
| `@serdeIgnoreIn` | don't read this property |
122121
| `@serdeIgnoreOut` | don't write this property |
@@ -125,8 +124,8 @@ For example, `-mattr=+sse4.2`. ASDF has specialized code for
125124
| `@serdeProxy!string` | call to!string |
126125
| `@serdeTransformIn!fin` | call function `fin` to transform the data |
127126
| `@serdeTransformOut!fout` | run function `fout` on serialization, different notation |
128-
| `@serdeFlexible` | be flexible on the datatype on reading, e.g. read longs that are wrapped as strings |
129-
| `@serdeRequired` | Force deserialiser to throw AsdfException if field was not found in the input. |
127+
| `@serdeAllowMultiple` | Allows deserialiser to serialize multiple keys for the same object member input. |
128+
| `@serdeOptional` | Allows deserialiser to to skip member desrization of no keys corresponding keys input. |
130129

131130

132131
Please also look into the Docs or Unittest for concrete examples!
@@ -140,23 +139,23 @@ import asdf;
140139
141140
void main()
142141
{
143-
auto target = Asdf("red");
144-
File("input.jsonl")
145-
// Use at least 4096 bytes for real world apps
146-
.byChunk(4096)
147-
// 32 is minimum size for internal buffer. Buffer can be reallocated to get more memory.
148-
.parseJsonByLine(4096)
149-
.filter!(object => object
150-
// opIndex accepts array of keys: {"key0": {"key1": { ... {"keyN-1": <value>}... }}}
151-
["colors"]
152-
// iterates over an array
153-
.byElement
154-
// Comparison with ASDF is little bit faster
155-
// than comparison with a string.
156-
.canFind(target))
157-
//.canFind("red"))
158-
// Formatting uses internal buffer to reduce system delegate and system function calls
159-
.each!writeln;
142+
auto target = Asdf("red");
143+
File("input.jsonl")
144+
// Use at least 4096 bytes for real world apps
145+
.byChunk(4096)
146+
// 32 is minimum size for internal buffer. Buffer can be reallocated to get more memory.
147+
.parseJsonByLine(4096)
148+
.filter!(object => object
149+
// opIndex accepts array of keys: {"key0": {"key1": { ... {"keyN-1": <value>}... }}}
150+
["colors"]
151+
// iterates over an array
152+
.byElement
153+
// Comparison with ASDF is little bit faster
154+
// than comparison with a string.
155+
.canFind(target))
156+
//.canFind("red"))
157+
// Formatting uses internal buffer to reduce system delegate and system function calls
158+
.each!writeln;
160159
}
161160
```
162161

@@ -169,7 +168,7 @@ null
169168
{"colors": ["red"]}
170169
{"a":"b", "colors": [4, "red", "string"]}
171170
{"colors":["red"],
172-
"comment" : "this is broken (multiline) object"}
171+
"comment" : "this is broken (multiline) object"}
173172
{"colors": "green"}
174173
{"colors": "red"]}}
175174
[]
@@ -189,77 +188,79 @@ null
189188
```d
190189
struct S
191190
{
192-
string a;
193-
long b;
194-
private int c; // private fields are ignored
195-
package int d; // package fields are ignored
196-
// all other fields in JSON are ignored
191+
string a;
192+
long b;
193+
private int c; // private fields are ignored
194+
package int d; // package fields are ignored
195+
// all other fields in JSON are ignored
197196
}
198197
```
199198

200199
##### Selection
201200
```d
202201
struct S
203202
{
204-
// ignored
205-
@serdeIgnore int temp;
206-
207-
// can be formatted to json
208-
@serdeIgnoreIn int a;
209-
210-
//can be parsed from json
211-
@serdeIgnoreOut int b;
212-
213-
// ignored if negative
214-
@serdeIgnoreOutIf!`a < 0` int c;
203+
// ignored
204+
@serdeIgnore int temp;
205+
206+
// can be formatted to json
207+
@serdeIgnoreIn int a;
208+
209+
//can be parsed from json
210+
@serdeIgnoreOut int b;
211+
212+
// ignored if negative
213+
@serdeIgnoreOutIf!`a < 0` int c;
215214
}
216215
```
217216

218217
##### Key overriding
219218
```d
220219
struct S
221220
{
222-
// key is overrided to "aaa"
223-
@serdeKeys("aaa") int a;
224-
225-
// overloads multiple keys for parsing
226-
@serdeKeysIn("b", "_b")
227-
// overloads key for generation
228-
@serdeKeyOut("_b_")
229-
int b;
221+
// key is overrided to "aaa"
222+
@serdeKeys("aaa") int a;
223+
224+
// overloads multiple keys for parsing
225+
@serdeKeysIn("b", "_b")
226+
// overloads key for generation
227+
@serdeKeyOut("_b_")
228+
int b;
230229
}
231230
```
232231

233232
##### User-Defined Serialization
234233
```d
235234
struct DateTimeProxy
236235
{
237-
DateTime datetime;
238-
alias datetime this;
239-
240-
static DateTimeProxy deserialize(Asdf data)
241-
{
242-
string val;
243-
deserializeScopedString(data, val);
244-
return DateTimeProxy(DateTime.fromISOString(val));
245-
}
246-
247-
void serialize(S)(ref S serializer)
248-
{
249-
serializer.putValue(datetime.toISOString);
250-
}
236+
DateTime datetime;
237+
alias datetime this;
238+
239+
SerdeException deserializeFromAsdf(Asdf data)
240+
{
241+
string val;
242+
if (auto exc = deserializeScopedString(data, val))
243+
return exc;
244+
this = DateTimeProxy(DateTime.fromISOString(val));
245+
return null;
246+
}
247+
248+
void serialize(S)(ref S serializer)
249+
{
250+
serializer.putValue(datetime.toISOString);
251+
}
251252
}
252253
```
253254

254255
```d
255256
//serialize a Doubly Linked list into an Array
256257
struct SomeDoublyLinkedList
257258
{
258-
@serdeIgnore DList!(SomeArr[]) myDll;
259-
alias myDll this;
259+
@serdeIgnore DList!(SomeArr[]) myDll;
260+
alias myDll this;
260261
261-
//no template but a function this time!
262-
void serialize(ref AsdfSerializer serializer)
262+
//no template but a function this time!
263+
void serialize(ref AsdfSerializer serializer)
263264
{
264265
auto state = serializer.arrayBegin();
265266
foreach (ref elem; myDll)
@@ -276,66 +277,66 @@ struct SomeDoublyLinkedList
276277
```d
277278
struct S
278279
{
279-
@serdeProxy!DateTimeProxy DateTime time;
280+
@serdeProxy!DateTimeProxy DateTime time;
280281
}
281282
```
282283

283284
```d
284285
@serdeProxy!ProxyE
285286
enum E
286287
{
287-
none,
288-
bar,
288+
none,
289+
bar,
289290
}
290291
291292
// const(char)[] doesn't reallocate ASDF data.
292293
@serdeProxy!(const(char)[])
293294
struct ProxyE
294295
{
295-
E e;
296-
297-
this(E e)
298-
{
299-
this.e = e;
300-
}
301-
302-
this(in char[] str)
303-
{
304-
switch(str)
305-
{
306-
case "NONE":
307-
case "NA":
308-
case "N/A":
309-
e = E.none;
310-
break;
311-
case "BAR":
312-
case "BR":
313-
e = E.bar;
314-
break;
315-
default:
316-
throw new Exception("Unknown: " ~ cast(string)str);
317-
}
318-
}
319-
320-
string toString()
321-
{
322-
if (e == E.none)
323-
return "NONE";
324-
else
325-
return "BAR";
326-
}
327-
328-
E opCast(T : E)()
329-
{
330-
return e;
331-
}
296+
E e;
297+
298+
this(E e)
299+
{
300+
this.e = e;
301+
}
302+
303+
this(in char[] str)
304+
{
305+
switch(str)
306+
{
307+
case "NONE":
308+
case "NA":
309+
case "N/A":
310+
e = E.none;
311+
break;
312+
case "BAR":
313+
case "BR":
314+
e = E.bar;
315+
break;
316+
default:
317+
throw new Exception("Unknown: " ~ cast(string)str);
318+
}
319+
}
320+
321+
string toString()
322+
{
323+
if (e == E.none)
324+
return "NONE";
325+
else
326+
return "BAR";
327+
}
328+
329+
E opCast(T : E)()
330+
{
331+
return e;
332+
}
332333
}
333334
334335
unittest
335336
{
336-
assert(serializeToJson(E.bar) == `"BAR"`);
337-
assert(`"N/A"`.deserialize!E == E.none);
338-
assert(`"NA"`.deserialize!E == E.none);
337+
assert(serializeToJson(E.bar) == `"BAR"`);
338+
assert(`"N/A"`.deserialize!E == E.none);
339+
assert(`"NA"`.deserialize!E == E.none);
339340
}
340341
```
341342

@@ -346,31 +347,18 @@ If you need to do additional calculations or etl transformations that happen to
346347
```d
347348
struct S
348349
{
349-
string a;
350-
int b;
351-
352-
@serdeIgnoreIn double sum;
353-
354-
void finalizeDeserialization(Asdf data)
355-
{
356-
auto r = data["c", "d"];
357-
auto a = r["e"].get(0.0);
358-
auto b = r["g"].get(0.0);
359-
sum = a + b;
360-
}
350+
string a;
351+
int b;
352+
353+
@serdeIgnoreIn double sum;
354+
355+
void finalizeDeserialization(Asdf data)
356+
{
357+
auto r = data["c", "d"];
358+
auto a = r["e"].get(0.0);
359+
auto b = r["g"].get(0.0);
360+
sum = a + b;
361+
}
361362
}
362363
assert(`{"a":"bar","b":3,"c":{"d":{"e":6,"g":7}}}`.deserialize!S == S("bar", 3, 13));
363364
```
364-
365-
##### serdeFlexible
366-
```D
367-
static struct S
368-
{
369-
@serdeFlexible uint a;
370-
}
371-
372-
assert(`{"a":"100"}`.deserialize!S.a == 100);
373-
assert(`{"a":true}`.deserialize!S.a == 1);
374-
assert(`{"a":null}`.deserialize!S.a == 0);
375-
```
376-

0 commit comments

Comments
 (0)