avrow 0.2.1

Avrow is a fast, type safe serde based data serialization library
Documentation
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
extern crate pretty_env_logger;
extern crate serde_derive;

mod common;

use crate::common::{writer_from_schema, MockSchema};
use avrow::{from_value, Codec, Reader, Schema, Value};
use std::collections::HashMap;
use std::str::FromStr;

use common::Primitive;
use serde_derive::{Deserialize, Serialize};

const DATUM_COUNT: usize = 10000;

///////////////////////////////////////////////////////////////////////////////
/// Primitive schema tests
///////////////////////////////////////////////////////////////////////////////

// #[cfg(feature = "codec")]
static PRIMITIVES: [Primitive; 8] = [
    Primitive::Null,
    Primitive::Boolean,
    Primitive::Int,
    Primitive::Long,
    Primitive::Float,
    Primitive::Double,
    Primitive::Bytes,
    Primitive::String,
];

// static PRIMITIVES: [Primitive; 1] = [Primitive::Int];

#[cfg(feature = "codec")]
const CODECS: [Codec; 6] = [
    Codec::Null,
    Codec::Deflate,
    Codec::Snappy,
    Codec::Zstd,
    Codec::Bzip2,
    Codec::Xz,
];

// #[cfg(feature = "bzip2")]
// const CODECS: [Codec; 1] = [Codec::Bzip2];

#[test]
#[cfg(feature = "codec")]
fn read_write_primitive() {
    for codec in CODECS.iter() {
        for primitive in PRIMITIVES.iter() {
            // write
            let name = &format!("{}", primitive);
            let schema = MockSchema.prim(name);
            let mut writer = writer_from_schema(&schema, *codec);
            (0..DATUM_COUNT).for_each(|i| match primitive {
                Primitive::Null => {
                    writer.write(()).unwrap();
                }
                Primitive::Boolean => {
                    writer.write(i % 2 == 0).unwrap();
                }
                Primitive::Int => {
                    writer.write(std::i32::MAX).unwrap();
                }
                Primitive::Long => {
                    writer.write(std::i64::MAX).unwrap();
                }
                Primitive::Float => {
                    writer.write(std::f32::MAX).unwrap();
                }
                Primitive::Double => {
                    writer.write(std::f64::MAX).unwrap();
                }
                Primitive::Bytes => {
                    writer.write(vec![b'a', b'v', b'r', b'o', b'w']).unwrap();
                }
                Primitive::String => {
                    writer.write("avrow").unwrap();
                }
            });

            let buf = writer.into_inner().unwrap();

            // read
            let schema = MockSchema.prim(name);
            let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
            for i in reader {
                match primitive {
                    Primitive::Null => {
                        let _: () = from_value(&i).unwrap();
                    }
                    Primitive::Boolean => {
                        let _: bool = from_value(&i).unwrap();
                    }
                    Primitive::Int => {
                        let _: i32 = from_value(&i).unwrap();
                    }
                    Primitive::Long => {
                        let _: i64 = from_value(&i).unwrap();
                    }
                    Primitive::Float => {
                        let _: f32 = from_value(&i).unwrap();
                    }
                    Primitive::Double => {
                        let _: f64 = from_value(&i).unwrap();
                    }
                    Primitive::Bytes => {
                        let _: &[u8] = from_value(&i).unwrap();
                    }
                    Primitive::String => {
                        let _: &str = from_value(&i).unwrap();
                    }
                }
            }
        }
    }
}

///////////////////////////////////////////////////////////////////////////////
/// Complex schema tests
///////////////////////////////////////////////////////////////////////////////

#[derive(Debug, Serialize, Deserialize)]
struct LongList {
    value: i64,
    next: Option<Box<LongList>>,
}

#[test]
#[cfg(feature = "codec")]
fn io_read_write_self_referential_record() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        {
            "type": "record",
            "name": "LongList",
            "aliases": ["LinkedLongs"],
            "fields" : [
              {"name": "value", "type": "long"},
              {"name": "next", "type": ["null", "LongList"]}
            ]
          }
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..1 {
            let value = LongList {
                value: 1i64,
                next: Some(Box::new(LongList {
                    value: 2,
                    next: Some(Box::new(LongList {
                        value: 3,
                        next: None,
                    })),
                })),
            };
            // let value = LongList {
            //     value: 1i64,
            //     next: None,
            // };
            writer.serialize(value).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let _: LongList = from_value(&i).unwrap();
        }
    }
}

#[derive(Serialize, Deserialize)]
enum Suit {
    SPADES,
    HEARTS,
    DIAMONDS,
    CLUBS,
}

#[test]
#[cfg(feature = "codec")]
fn enum_read_write() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        {
            "type": "enum",
            "name": "Suit",
            "symbols" : ["SPADES", "HEARTS", "DIAMONDS", "CLUBS"]
        }
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..1 {
            let value = Suit::SPADES;
            writer.serialize(value).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let _: Suit = from_value(&i).unwrap();
        }
    }
}

#[test]
#[cfg(feature = "codec")]
fn array_read_write() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        {"type": "array", "items": "string"}
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..DATUM_COUNT {
            let value = vec!["a", "v", "r", "o", "w"];
            writer.serialize(value).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let _: Vec<&str> = from_value(&i).unwrap();
        }
    }
}

#[test]
#[cfg(feature = "codec")]
fn map_read_write() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        {"type": "map", "values": "long"}
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..DATUM_COUNT {
            let mut value = HashMap::new();
            value.insert("foo", 1i64);
            value.insert("bar", 2);
            writer.serialize(value).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let _: HashMap<String, i64> = from_value(&i).unwrap();
        }
    }
}

#[test]
#[cfg(feature = "codec")]
fn union_read_write() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        ["null", "string"]
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..1 {
            writer.serialize(()).unwrap();
            writer.serialize("hello".to_string()).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let val = i.as_ref().unwrap();
            match val {
                Value::Null => {
                    let _a: () = from_value(&i).unwrap();
                }
                Value::Str(_) => {
                    let _a: &str = from_value(&i).unwrap();
                }
                _ => unreachable!("should not happen"),
            }
        }
    }
}

#[test]
#[cfg(feature = "codec")]
fn fixed_read_write() {
    // write
    for codec in CODECS.iter() {
        let schema = r##"
        {"type": "fixed", "size": 16, "name": "md5"}
        "##;

        let schema = Schema::from_str(schema).unwrap();
        let mut writer = writer_from_schema(&schema, *codec);
        for _ in 0..1 {
            let value = vec![
                b'1', b'2', b'3', b'4', b'5', b'6', b'7', b'8', b'9', b'a', b'b', b'c', b'd', b'e',
                b'f', b'g',
            ];
            writer.serialize(value.as_slice()).unwrap();
        }

        let buf = writer.into_inner().unwrap();

        // read
        let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
        for i in reader {
            let a: [u8; 16] = from_value(&i).unwrap();
            assert_eq!(a.len(), 16);
        }
    }
}

#[test]
#[cfg(feature = "codec")]
fn bytes_read_write() {
    let schema = Schema::from_str(r##"{"type": "bytes"}"##).unwrap();
    let mut writer = writer_from_schema(&schema, avrow::Codec::Deflate);
    let data = vec![0u8, 1u8, 2u8, 3u8, 4u8, 5u8];
    writer.serialize(&data).unwrap();

    let buf = writer.into_inner().unwrap();

    let reader = Reader::with_schema(buf.as_slice(), &schema).unwrap();
    for i in reader {
        let b: &[u8] = from_value(&i).unwrap();
        assert_eq!(b, &[0u8, 1u8, 2u8, 3u8, 4u8, 5u8]);
    }
}

#[test]
#[should_panic]
#[cfg(feature = "codec")]
fn write_invalid_union_data_fails() {
    let schema = Schema::from_str(r##"["int", "float"]"##).unwrap();
    let mut writer = writer_from_schema(&schema, avrow::Codec::Null);
    writer.serialize("string").unwrap();
}

#[test]
#[cfg(feature = "snappy")]
fn read_deflate_reuse() {
    let schema = Schema::from_str(
        r##"
        {
            "type": "record",
            "name": "LongList",
            "aliases": ["LinkedLongs"],
            "fields" : [
              {"name": "value", "type": "long"},
              {"name": "next", "type": ["null", "LongList"]}
            ]
          }
        "##,
    )
    .unwrap();
    let vec = vec![];
    let mut writer = avrow::Writer::with_codec(&schema, vec, Codec::Snappy).unwrap();
    for _ in 0..100000 {
        let value = LongList {
            value: 1i64,
            next: Some(Box::new(LongList {
                value: 2i64,
                next: Some(Box::new(LongList {
                    value: 3i64,
                    next: Some(Box::new(LongList {
                        value: 4i64,
                        next: Some(Box::new(LongList {
                            value: 5i64,
                            next: None,
                        })),
                    })),
                })),
            })),
        };
        writer.serialize(value).unwrap();
    }
    let vec = writer.into_inner().unwrap();

    let reader = Reader::new(&*vec).unwrap();
    for i in reader {
        let _v: LongList = from_value(&i).unwrap();
    }
}

#[test]
fn parses_field_record_defined_within_union() {
    #[derive(Serialize, Deserialize, PartialEq, Debug)]
    struct Reference {
        #[serde(rename = "feedReference")]
        pub feed_reference: Option<FeedReference>,
    }

    #[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
    pub struct FeedReference {
        pub instance: String,
        pub provider: String,
    }

    impl Default for FeedReference {
        fn default() -> FeedReference {
            FeedReference {
                instance: String::default(),
                provider: String::default(),
            }
        }
    }

    let schema = r##"
        {
            "name": "Reference",
            "type": "record",
            "fields": [
                {
                    "name": "feedReference",
                    "type": [
                        "null",
                        {
                            "name": "FeedReference",
                            "type": "record",
                            "fields": [
                                {
                                    "name": "instance",
                                    "type": "string"
                                },
                                {
                                    "name": "provider",
                                    "type": "string"
                                }
                            ]
                        }
                    ],
                    "default": null
                }
            ]
        }
        "##;

    let reference = Reference {
        feed_reference: Some(FeedReference::default()),
    };

    let schema = Schema::from_str(&schema).unwrap();
    let mut writer = avrow::Writer::new(&schema, vec![]).unwrap();
    writer.serialize(&reference).unwrap();
    let a = writer.into_inner().unwrap();
    let reader = Reader::new(a.as_slice()).unwrap();
    for i in reader {
        let a: Reference = from_value(&i).unwrap();
        assert_eq!(a, reference);
    }
}