musli 0.1.5

Müsli is a flexible and efficient serialization framework.
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
//! Trait governing how to write bytes.
//!
//! To adapt [`std::io::Write`] types, see the [`wrap`] function.
//!
//! [`wrap`]: crate::wrap::wrap

mod slice_mut_writer;
pub use self::slice_mut_writer::SliceMutWriter;

use core::fmt;

use crate::alloc::Vec;
use crate::{Allocator, Context};

mod sealed {
    use super::Writer;

    pub trait Sealed {}
    impl<W> Sealed for &mut W where W: ?Sized + Writer {}
    #[cfg(feature = "std")]
    impl<W> Sealed for crate::wrap::Wrap<W> where W: std::io::Write {}
    impl Sealed for &mut [u8] {}
}

/// Coerce a type into a [`Writer`].
///
/// # Examples
///
/// ```
/// use musli::{Context, IntoWriter, Writer};
/// use musli::context;
///
/// let mut buffer = Vec::new();
/// let mut writer = (&mut buffer).into_writer();
/// let cx = context::new();
///
/// writer.write_bytes(&cx, b"Hello")?;
/// writer.finish(&cx)?;
///
/// assert_eq!(buffer, b"Hello");
/// # Ok::<_, musli::context::ErrorMarker>(())
/// ```
pub trait IntoWriter
where
    Self: self::sealed::Sealed,
{
    /// The output of the writer which will be returned after writing.
    type Ok;

    /// The writer type.
    type Writer: Writer<Ok = Self::Ok>;

    /// Convert the type into a writer.
    fn into_writer(self) -> Self::Writer;
}

/// The trait governing how a writer works.
///
/// # Examples
///
/// ```
/// use musli::{Context, Writer};
/// use musli::context;
///
/// // Example using Writer as a trait bound
/// fn write_greeting<W, C>(mut writer: W, cx: C) -> Result<W::Ok, C::Error>
/// where
///     W: Writer,
///     C: Context,
/// {
///     writer.write_bytes(cx, b"Hello")?;
///     writer.write_byte(cx, b' ')?;
///     writer.write_bytes(cx, b"World")?;
///     writer.finish(cx)
/// }
///
/// let mut writer = Vec::new();
/// let cx = context::new();
///
/// write_greeting(&mut writer, &cx)?;
/// assert_eq!(writer, b"Hello World");
/// # Ok::<_, context::ErrorMarker>(())
/// ```
pub trait Writer {
    /// The value returned from writing the value.
    type Ok;

    /// Reborrowed type.
    ///
    /// Why oh why would we want to do this over having a simple `&'this mut T`?
    ///
    /// We want to avoid recursive types, which will blow up the compiler. And
    /// the above is a typical example of when that can go wrong. This ensures
    /// that each call to `borrow_mut` dereferences the [`Reader`] at each step to
    /// avoid constructing a large muted type, like `&mut &mut &mut VecWriter`.
    ///
    /// [`Reader`]: crate::reader::Reader
    type Mut<'this>: Writer
    where
        Self: 'this;

    /// Finalize the writer and return the output.
    fn finish<C>(&mut self, cx: C) -> Result<Self::Ok, C::Error>
    where
        C: Context;

    /// Reborrow the current type.
    ///
    /// # Examples
    ///
    /// ```
    /// use musli::{Context, Writer};
    /// use musli::context;
    ///
    /// let mut writer = Vec::new();
    /// let cx = context::new();
    ///
    /// {
    ///     let mut borrowed = writer.borrow_mut();
    ///     borrowed.write_bytes(&cx, b"Hello")?;
    /// }
    ///
    /// writer.write_bytes(&cx, b" World")?;
    /// writer.finish(&cx)?;
    /// assert_eq!(writer, b"Hello World");
    /// # Ok::<_, musli::context::ErrorMarker>(())
    /// ```
    fn borrow_mut(&mut self) -> Self::Mut<'_>;

    /// Write a buffer to the current writer.
    ///
    /// This method is used internally to write a musli Vec buffer to the writer.
    /// Most users will use [`write_bytes`] instead.
    ///
    /// [`write_bytes`]: Writer::write_bytes
    fn extend<C>(&mut self, cx: C, buffer: Vec<u8, C::Allocator>) -> Result<(), C::Error>
    where
        C: Context;

    /// Write bytes to the current writer.
    ///
    /// # Examples
    ///
    /// ```
    /// use musli::{Context, Writer};
    /// use musli::context;
    ///
    /// let mut writer = Vec::new();
    /// let cx = context::new();
    ///
    /// writer.write_bytes(&cx, b"Hello")?;
    /// writer.write_bytes(&cx, b" ")?;
    /// writer.write_bytes(&cx, b"World")?;
    /// writer.finish(&cx)?;
    /// assert_eq!(writer, b"Hello World");
    /// # Ok::<_, musli::context::ErrorMarker>(())
    /// ```
    fn write_bytes<C>(&mut self, cx: C, bytes: &[u8]) -> Result<(), C::Error>
    where
        C: Context;

    /// Write a single byte.
    #[inline]
    fn write_byte<C>(&mut self, cx: C, b: u8) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.write_bytes(cx, &[b])
    }

    /// Signal that an object is about to be written.
    ///
    /// This is called immediately before the structural character which opens
    /// the object is written by the encoder. Any bytes written here are
    /// inserted before it.
    ///
    /// All structural signals default to doing nothing, which is what binary
    /// formats want. A writer which pretty prints uses them to decide where to
    /// insert whitespace.
    #[inline]
    fn begin_object<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = cx;
        Ok(())
    }

    /// Signal that an object is about to be closed.
    ///
    /// This is called immediately before the structural character which closes
    /// the object is written by the encoder. The `empty` argument indicates
    /// that the object being closed did not contain any entries.
    #[inline]
    fn end_object<C>(&mut self, cx: C, empty: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = (cx, empty);
        Ok(())
    }

    /// Signal that the key of an object entry is about to be written.
    ///
    /// This is called after any separator preceding the key has been written.
    /// The `first` argument indicates that this is the first key in the object,
    /// which is exactly when no separator was written.
    #[inline]
    fn begin_object_key<C>(&mut self, cx: C, first: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = (cx, first);
        Ok(())
    }

    /// Signal that the value of an object entry is about to be written.
    ///
    /// This is called after the structural character separating the key from
    /// its value has been written.
    #[inline]
    fn begin_object_value<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = cx;
        Ok(())
    }

    /// Signal that an array is about to be written.
    ///
    /// This is called immediately before the structural character which opens
    /// the array is written by the encoder.
    #[inline]
    fn begin_array<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = cx;
        Ok(())
    }

    /// Signal that an array is about to be closed.
    ///
    /// This is called immediately before the structural character which closes
    /// the array is written by the encoder. The `empty` argument indicates that
    /// the array being closed did not contain any elements.
    #[inline]
    fn end_array<C>(&mut self, cx: C, empty: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = (cx, empty);
        Ok(())
    }

    /// Signal that an element of an array is about to be written.
    ///
    /// This is called after any separator preceding the element has been
    /// written. The `first` argument indicates that this is the first element
    /// in the array, which is exactly when no separator was written.
    #[inline]
    fn begin_array_element<C>(&mut self, cx: C, first: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        _ = (cx, first);
        Ok(())
    }
}

impl<'a, W> IntoWriter for &'a mut W
where
    W: ?Sized + Writer,
{
    type Ok = W::Ok;
    type Writer = &'a mut W;

    #[inline]
    fn into_writer(self) -> Self::Writer {
        self
    }
}

impl<W> Writer for &mut W
where
    W: ?Sized + Writer,
{
    type Ok = W::Ok;
    type Mut<'this>
        = &'this mut W
    where
        Self: 'this;

    #[inline]
    fn finish<C>(&mut self, cx: C) -> Result<Self::Ok, C::Error>
    where
        C: Context,
    {
        (*self).finish(cx)
    }

    #[inline]
    fn borrow_mut(&mut self) -> Self::Mut<'_> {
        self
    }

    #[inline]
    fn extend<C>(&mut self, cx: C, buffer: Vec<u8, C::Allocator>) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).extend(cx, buffer)
    }

    #[inline]
    fn write_bytes<C>(&mut self, cx: C, bytes: &[u8]) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).write_bytes(cx, bytes)
    }

    #[inline]
    fn write_byte<C>(&mut self, cx: C, b: u8) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).write_byte(cx, b)
    }

    #[inline]
    fn begin_object<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).begin_object(cx)
    }

    #[inline]
    fn end_object<C>(&mut self, cx: C, empty: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).end_object(cx, empty)
    }

    #[inline]
    fn begin_object_key<C>(&mut self, cx: C, first: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).begin_object_key(cx, first)
    }

    #[inline]
    fn begin_object_value<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).begin_object_value(cx)
    }

    #[inline]
    fn begin_array<C>(&mut self, cx: C) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).begin_array(cx)
    }

    #[inline]
    fn end_array<C>(&mut self, cx: C, empty: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).end_array(cx, empty)
    }

    #[inline]
    fn begin_array_element<C>(&mut self, cx: C, first: bool) -> Result<(), C::Error>
    where
        C: Context,
    {
        (*self).begin_array_element(cx, first)
    }
}

#[cfg(feature = "alloc")]
impl Writer for rust_alloc::vec::Vec<u8> {
    type Ok = ();
    type Mut<'this>
        = &'this mut Self
    where
        Self: 'this;

    #[inline]
    fn finish<C>(&mut self, _: C) -> Result<Self::Ok, C::Error>
    where
        C: Context,
    {
        Ok(())
    }

    #[inline]
    fn borrow_mut(&mut self) -> Self::Mut<'_> {
        self
    }

    #[inline]
    fn extend<C>(&mut self, cx: C, buffer: Vec<u8, C::Allocator>) -> Result<(), C::Error>
    where
        C: Context,
    {
        // SAFETY: the buffer never outlives this function call.
        self.write_bytes(cx, buffer.as_slice())
    }

    #[inline]
    fn write_bytes<C>(&mut self, cx: C, bytes: &[u8]) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.extend_from_slice(bytes);
        cx.advance(bytes.len());
        Ok(())
    }

    #[inline]
    fn write_byte<C>(&mut self, cx: C, b: u8) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.push(b);
        cx.advance(1);
        Ok(())
    }
}

impl<'a> IntoWriter for &'a mut [u8] {
    type Ok = usize;
    type Writer = SliceMutWriter<'a>;

    #[inline]
    fn into_writer(self) -> Self::Writer {
        SliceMutWriter::new(self)
    }
}

/// A writer that writes against an underlying [`Vec`].
pub struct BufWriter<A>
where
    A: Allocator,
{
    buf: Vec<u8, A>,
}

impl<A> BufWriter<A>
where
    A: Allocator,
{
    /// Construct a new buffer writer.
    ///
    /// # Examples
    ///
    /// ```
    /// use musli::alloc::Global;
    /// use musli::writer::BufWriter;
    ///
    /// let writer = BufWriter::new(Global::new());
    /// ```
    pub fn new(alloc: A) -> Self {
        Self {
            buf: Vec::new_in(alloc),
        }
    }

    /// Coerce into inner buffer.
    ///
    /// # Examples
    ///
    /// ```
    /// use musli::alloc::Global;
    /// use musli::writer::BufWriter;
    ///
    /// let writer = BufWriter::new(Global::new());
    /// let buffer = writer.into_inner();
    /// assert!(buffer.is_empty());
    /// ```
    pub fn into_inner(self) -> Vec<u8, A> {
        self.buf
    }
}

impl<A> Writer for BufWriter<A>
where
    A: Allocator,
{
    type Ok = ();
    type Mut<'this>
        = &'this mut Self
    where
        Self: 'this;

    #[inline]
    fn finish<C>(&mut self, _: C) -> Result<Self::Ok, C::Error>
    where
        C: Context,
    {
        Ok(())
    }

    #[inline]
    fn borrow_mut(&mut self) -> Self::Mut<'_> {
        self
    }

    #[inline]
    fn extend<C>(&mut self, cx: C, buffer: Vec<u8, C::Allocator>) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.buf
            .extend_from_slice(buffer.as_slice())
            .map_err(cx.map())?;
        Ok(())
    }

    #[inline]
    fn write_bytes<C>(&mut self, cx: C, bytes: &[u8]) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.buf.extend_from_slice(bytes).map_err(cx.map())?;
        Ok(())
    }
}

/// Overflow when trying to write to a slice.
#[derive(Debug)]
struct SliceOverflow {
    n: usize,
    capacity: usize,
}

impl fmt::Display for SliceOverflow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let SliceOverflow { n, capacity } = self;

        write!(
            f,
            "Tried to write {n} bytes to slice, with a remaining capacity of {capacity}"
        )
    }
}