alox-48 0.7.1

ruby marshal data deserializer
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
// Copyright (c) 2024 Lily Lyons
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

use indexmap::{IndexMap, IndexSet};

use std::{
    collections::{BTreeMap, BTreeSet, HashMap, HashSet, LinkedList, VecDeque},
    hash::{BuildHasher, Hash},
    marker::PhantomData,
    num::{
        NonZeroI128, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI8, NonZeroIsize, NonZeroU128,
        NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize,
    },
};

use super::{
    traits::VisitorOption, ArrayAccess, Deserialize, DeserializeSeed, DeserializerTrait, Error,
    HashAccess, Result, Unexpected, Visitor,
};
use crate::{BignumRef, Fixnum, NumCast, Sym};

impl<'de, T> DeserializeSeed<'de> for PhantomData<T>
where
    T: Deserialize<'de>,
{
    type Value = T;

    fn deserialize<D>(self, deserializer: D) -> Result<Self::Value>
    where
        D: DeserializerTrait<'de>,
    {
        T::deserialize(deserializer)
    }
}

struct IntVisitor<'de, T>(PhantomData<&'de T>);

impl<'de, T> Visitor<'de> for IntVisitor<'de, T>
where
    T: std::fmt::Display + num_traits::Bounded + NumCast,
{
    type Value = T;

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let min = T::min_value();
        let max = T::max_value();
        write!(
            formatter,
            "an integer in the range [{min}, {max}] or a finite float in the range [{min}, {max}]",
        )
    }

    fn visit_fixnum(self, v: Fixnum) -> Result<Self::Value> {
        T::from(v).ok_or(Error::invalid_value(Unexpected::Fixnum(v), &self))
    }

    fn visit_bignum(self, v: BignumRef<'de>) -> Result<Self::Value> {
        T::from(v).ok_or(Error::invalid_value(Unexpected::Bignum(v), &self))
    }

    fn visit_f64(self, v: f64) -> Result<Self::Value> {
        T::from(v).ok_or(Error::invalid_value(Unexpected::Float(v), &self))
    }
}

macro_rules! primitive_int_impl {
    ($($primitive:ty),* $(,)?) => {
        $(impl<'de> Deserialize<'de> for $primitive {
            fn deserialize<D>(deserializer: D) -> Result<Self>
            where
                D: DeserializerTrait<'de>,
            {
                deserializer.deserialize(IntVisitor::<'de, $primitive>(PhantomData))
            }
        })*
    };
}

primitive_int_impl! {
    u8,
    u16,
    u32,
    u64,
    u128,
    usize,
    i8,
    i16,
    i32,
    i64,
    i128,
    isize,
}

macro_rules! nonzero_int_impl {
    ($($primitive:ty => $nonzero_primitive:ty),* $(,)?) => {
        $(impl<'de> Deserialize<'de> for $nonzero_primitive {
            fn deserialize<D>(deserializer: D) -> Result<Self>
            where
                D: DeserializerTrait<'de>,
            {
                Ok(deserializer.deserialize(IntVisitor::<'de, $primitive>(PhantomData))?.try_into().unwrap())
            }
        })*
    };
}

nonzero_int_impl!(
    u8 => NonZeroU8,
    u16 => NonZeroU16,
    u32 => NonZeroU32,
    u64 => NonZeroU64,
    u128 => NonZeroU128,
    usize => NonZeroUsize,
    i8 => NonZeroI8,
    i16 => NonZeroI16,
    i32 => NonZeroI32,
    i64 => NonZeroI64,
    i128 => NonZeroI128,
    isize => NonZeroIsize,
);

struct UnitVisitor;

impl Visitor<'_> for UnitVisitor {
    type Value = ();

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_str("unit")
    }

    fn visit_nil(self) -> Result<Self::Value> {
        Ok(())
    }
}

impl<'de> Deserialize<'de> for () {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(UnitVisitor)
    }
}

struct BoolVisitor;

impl Visitor<'_> for BoolVisitor {
    type Value = bool;

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_str("bool")
    }

    fn visit_bool(self, v: bool) -> Result<Self::Value> {
        Ok(v)
    }
}

impl<'de> Deserialize<'de> for bool {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(BoolVisitor)
    }
}

struct FloatVisitor;

impl Visitor<'_> for FloatVisitor {
    type Value = f64;

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_str("a float or integer")
    }

    fn visit_fixnum(self, v: Fixnum) -> Result<Self::Value> {
        num_traits::ToPrimitive::to_f64(&v)
            .ok_or(Error::invalid_value(Unexpected::Fixnum(v), &self))
    }

    fn visit_bignum(self, v: BignumRef<'_>) -> Result<Self::Value> {
        num_traits::ToPrimitive::to_f64(&v)
            .ok_or(Error::invalid_value(Unexpected::Bignum(v), &self))
    }

    fn visit_f64(self, v: f64) -> Result<Self::Value> {
        Ok(v)
    }
}

impl<'de> Deserialize<'de> for f32 {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        let v = deserializer.deserialize(FloatVisitor)?;
        Ok(v as f32)
    }
}

impl<'de> Deserialize<'de> for f64 {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(FloatVisitor)
    }
}

struct StrVisitor;

impl<'de> Visitor<'de> for StrVisitor {
    type Value = &'de str;

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_str("a utf8 string")
    }

    fn visit_string(self, string: &'de [u8]) -> Result<Self::Value> {
        std::str::from_utf8(string)
            .map_err(|_| Error::invalid_value(super::error::Unexpected::String(string), &self))
    }

    fn visit_symbol(self, symbol: &'de Sym) -> Result<Self::Value> {
        Ok(symbol.as_str())
    }
}

impl<'de> Deserialize<'de> for &'de str {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(StrVisitor)
    }
}

impl<'de> Deserialize<'de> for String {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(StrVisitor).map(ToOwned::to_owned)
    }
}

struct BytesVisitor;

impl<'de> Visitor<'de> for BytesVisitor {
    type Value = &'de [u8];

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_str("a ruby string")
    }

    fn visit_string(self, string: &'de [u8]) -> Result<Self::Value> {
        Ok(string)
    }
}

impl<'de> Deserialize<'de> for &'de [u8] {
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(BytesVisitor)
    }
}

struct OptionVisitor<T> {
    marker: PhantomData<T>,
}

impl<'de, T> VisitorOption<'de> for OptionVisitor<T>
where
    T: Deserialize<'de>,
{
    type Value = Option<T>;

    fn visit_none(self) -> Result<Self::Value> {
        Ok(None)
    }

    fn visit_some<D>(self, deserializer: D) -> Result<Self::Value>
    where
        D: DeserializerTrait<'de>,
    {
        T::deserialize(deserializer).map(Some)
    }
}

impl<'de, T> Deserialize<'de> for Option<T>
where
    T: Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize_option(OptionVisitor {
            marker: PhantomData,
        })
    }
}

macro_rules! seq_impl {
    (
        $(#[$attr:meta])*
        $ty:ident <T $(: $tbound1:ident $(+ $tbound2:ident)*)* $(, $typaram:ident : $bound1:ident $(+ $bound2:ident)*)*>,
        $access:ident,
        $with_capacity:expr,
        $insert:expr
    ) => {
        $(#[$attr])*
        impl<'de, T $(, $typaram)*> Deserialize<'de> for $ty<T $(, $typaram)*>
        where
            T: Deserialize<'de> $(+ $tbound1 $(+ $tbound2)*)*,
            $($typaram: $bound1 $(+ $bound2)*,)*
        {
            fn deserialize<D>(deserializer: D) -> Result<Self>
            where
                D: DeserializerTrait<'de>,
            {
                struct SeqVisitor<T $(, $typaram)*> {
                    marker: PhantomData<$ty<T $(, $typaram)*>>,
                }

                impl<'de, T $(, $typaram)*> Visitor<'de> for SeqVisitor<T $(, $typaram)*>
                where
                    T: Deserialize<'de> $(+ $tbound1 $(+ $tbound2)*)*,
                    $($typaram: $bound1 $(+ $bound2)*,)*
                {
                    type Value = $ty<T $(, $typaram)*>;

                    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                        formatter.write_str("an array")
                    }

                    #[inline]
                    fn visit_array<A>(self, mut $access: A) -> Result<Self::Value>
                    where
                        A: ArrayAccess<'de>,
                    {
                        let mut values = $with_capacity;

                        while let Some(value) = $access.next_element()? {
                            $insert(&mut values, value);
                        }

                        Ok(values)
                    }
                }

                let visitor = SeqVisitor { marker: PhantomData };
                deserializer.deserialize(visitor)
            }
        }
    }
}

seq_impl!(Vec<T>, array, Vec::with_capacity(array.len()), Vec::push);

seq_impl!(
    BTreeSet<T: Eq + Ord>,
    array,
    BTreeSet::new(),
    BTreeSet::insert
);

seq_impl!(
    LinkedList<T>,
    array,
    LinkedList::new(),
    LinkedList::push_back
);

seq_impl!(
    HashSet<T: Hash + Eq, H: BuildHasher + Default>,
    array,
    HashSet::with_capacity_and_hasher(array.len(), H::default()),
    HashSet::insert
);

seq_impl!(
    VecDeque<T: Hash + Eq>,
    array,
    VecDeque::with_capacity(array.len()),
    VecDeque::push_back
);

seq_impl!(
    IndexSet<T: Hash + Eq, H: BuildHasher + Default>,
    array,
    IndexSet::with_capacity_and_hasher(array.len(), H::default()),
    IndexSet::insert
);

struct ArrayVisitor<T, const SIZE: usize> {
    marker: PhantomData<[T; SIZE]>,
}

// not happy about this. maybe there's a better way?
impl<'de, T, const SIZE: usize> Visitor<'de> for ArrayVisitor<T, SIZE>
where
    T: Deserialize<'de>,
{
    type Value = [T; SIZE];

    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.write_fmt(format_args!("an array of length {SIZE}"))
    }

    fn visit_array<A>(self, mut array: A) -> Result<Self::Value>
    where
        A: ArrayAccess<'de>,
    {
        // try_from_fn is not yet stabilized, so we need to use MaybeUninit instead. Oh well.

        // this is what the unstable uninit_array does.
        // this is safe because the types we are claiming to have initialized here are MaybeUninits which do not need initialization.
        let mut uninit_array: [std::mem::MaybeUninit<T>; SIZE] =
            unsafe { std::mem::MaybeUninit::uninit().assume_init() };

        let mut index = 0;
        loop {
            match array.next_element() {
                Ok(Some(value)) => {
                    // (error case) if we filled up with too many elements, drop the elements we did fill up
                    if index == SIZE {
                        for elem in &mut uninit_array[0..index] {
                            unsafe { elem.assume_init_drop() }
                        }
                        break Err(Error::invalid_length(index, &self));
                    }
                    uninit_array[index].write(value);
                    index += 1;
                }
                Ok(None) => {
                    // (error case) if we didn't fill up with enough elements, drop the elements we did fill up
                    break if index < SIZE {
                        for elem in &mut uninit_array[0..index] {
                            unsafe { elem.assume_init_drop() }
                        }
                        Err(Error::invalid_length(index, &self))
                    } else {
                        // what i don't know can't hurt me :)
                        let array =
                            uninit_array.map(|v| unsafe { std::mem::MaybeUninit::assume_init(v) });
                        Ok(array)
                    };
                }
                Err(e) => {
                    // if we ran into an error, drop the elements we did fill up
                    for elem in &mut uninit_array[0..index] {
                        unsafe { elem.assume_init_drop() }
                    }
                    break Err(e);
                }
            }
        }
    }
}

impl<'de, T, const SIZE: usize> Deserialize<'de> for [T; SIZE]
where
    T: Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        deserializer.deserialize(ArrayVisitor {
            marker: PhantomData,
        })
    }
}

macro_rules! map_impl {
    (
        $(#[$attr:meta])*
        $ty:ident <K $(: $kbound1:ident $(+ $kbound2:ident)*)*, V $(, $typaram:ident : $bound1:ident $(+ $bound2:ident)*)*>,
        $access:ident,
        $with_capacity:expr
    ) => {
        $(#[$attr])*
        impl<'de, K, V $(, $typaram)*> Deserialize<'de> for $ty<K, V $(, $typaram)*>
        where
            K: Deserialize<'de> $(+ $kbound1 $(+ $kbound2)*)*,
            V: Deserialize<'de>,
            $($typaram: $bound1 $(+ $bound2)*),*
        {
            fn deserialize<D>(deserializer: D) -> Result<Self>
            where
                D: DeserializerTrait<'de>,
            {
                struct MapVisitor<K, V $(, $typaram)*> {
                    marker: PhantomData<$ty<K, V $(, $typaram)*>>,
                }

                impl<'de, K, V $(, $typaram)*> Visitor<'de> for MapVisitor<K, V $(, $typaram)*>
                where
                    K: Deserialize<'de> $(+ $kbound1 $(+ $kbound2)*)*,
                    V: Deserialize<'de>,
                    $($typaram: $bound1 $(+ $bound2)*),*
                {
                    type Value = $ty<K, V $(, $typaram)*>;

                    fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                        formatter.write_str("a map")
                    }

                    #[inline]
                    fn visit_hash<A>(self, mut $access: A) -> Result<Self::Value>
                    where
                        A: HashAccess<'de>,
                    {
                        let mut values = $with_capacity;

                        while let Some((key, value)) = $access.next_entry()? {
                            values.insert(key, value);
                        }

                        Ok(values)
                    }
                }

                let visitor = MapVisitor { marker: PhantomData };
                deserializer.deserialize(visitor)
            }
        }
    }
}

map_impl!(BTreeMap<K: Ord, V>, map, BTreeMap::new());

map_impl!(
    HashMap<K: Eq + Hash, V, H: BuildHasher + Default>,
    map,
    HashMap::with_capacity_and_hasher(map.len(), H::default())
);

map_impl!(
    IndexMap<K: Eq + Hash, V, H: BuildHasher + Default>,
    map,
    IndexMap::with_capacity_and_hasher(map.len(), H::default())
);

impl<'de, T> Deserialize<'de> for Box<T>
where
    T: Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self>
    where
        D: DeserializerTrait<'de>,
    {
        let value = T::deserialize(deserializer)?;
        Ok(Box::new(value))
    }
}