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
#![no_std]
#![feature(
    const_generics,
    assoc_char_funcs,
    decl_macro,
    maybe_uninit_uninit_array,
    maybe_uninit_slice,
    never_type
)]

extern crate alloc;

#[cfg(feature = "derive")]
#[macro_use]
extern crate ptah_derive;
#[cfg(feature = "derive")]
#[doc(hidden)]
pub use ptah_derive::*;

pub mod de;
pub mod ser;

pub use de::{Deserialize, DeserializeOwned, Deserializer};
pub use ser::{Serialize, Serializer};

use alloc::vec::Vec;

/// It can sometimes be useful to know the size of a value in its serialized form (e.g. to reserve space for it in
/// a ring buffer). This calculates the number of bytes taken to serialize some `value` of `T` into Ptah's wire
/// format. Note that this size is for the specific `value`, and may differ between values of `T`.
pub fn serialized_size<T>(value: &T) -> ser::Result<usize>
where
    T: Serialize,
{
    let mut size = 0;
    let mut serializer = Serializer::new(SizeCalculator { size: &mut size });

    value.serialize(&mut serializer)?;
    Ok(size)
}

pub fn to_wire<'w, T, W>(value: &T, writer: W) -> ser::Result<()>
where
    T: Serialize,
    W: Writer,
{
    let mut serializer = Serializer::new(writer);

    value.serialize(&mut serializer)?;
    Ok(())
}

/// Deserialize a `T` from some bytes and, optionally, some handles. If the wire is not able to transport handles,
/// it is fine to produce `&[]` (as long as `T` does not contain any handles, that is).
pub fn from_wire<'a, 'de, T>(bytes: &'a [u8], handles: &'a [Handle]) -> de::Result<T>
where
    'a: 'de,
    T: Deserialize<'de>,
{
    let mut deserializer = Deserializer::from_wire(bytes, handles);
    let value = T::deserialize(&mut deserializer)?;

    if deserializer.bytes.is_empty() {
        Ok(value)
    } else {
        Err(de::Error::TrailingBytes)
    }
}

pub type Handle = u32;
pub type HandleSlot = u8;

/*
 * These are constants that are used in the wire format.
 */
pub(crate) const MARKER_FALSE: u8 = 0x0;
pub(crate) const MARKER_TRUE: u8 = 0x1;
pub(crate) const MARKER_NONE: u8 = 0x0;
pub(crate) const MARKER_SOME: u8 = 0x1;
pub(crate) const HANDLE_SLOT_0: u8 = 0xf0;
pub(crate) const HANDLE_SLOT_1: u8 = 0xf1;
pub(crate) const HANDLE_SLOT_2: u8 = 0xf2;
pub(crate) const HANDLE_SLOT_3: u8 = 0xf3;

pub fn make_handle_slot(index: u8) -> HandleSlot {
    /*
     * The handle slots are contiguous, and so we can just offset from the first one.
     */
    HANDLE_SLOT_0 + (index as u8)
}

pub fn index_from_handle_slot(slot: HandleSlot) -> u8 {
    slot - HANDLE_SLOT_0
}

/// A `Writer` represents a consumer of the bytes produced by serializing a message. In cases where you can
/// create a slice to put the bytes in, `CursorWriter` can be used. Custom `Writer`s are useful for more niche
/// uses, such as sending the serialized bytes over a serial port.
pub trait Writer {
    fn write(&mut self, buf: &[u8]) -> ser::Result<()>;
    fn push_handle(&mut self, handle: Handle) -> ser::Result<HandleSlot>;
}

/// This is a `Writer` that can be used to serialize a value into a pre-allocated byte buffer.
pub struct CursorWriter<'a> {
    buffer: &'a mut [u8],
    position: usize,
}

impl<'a> CursorWriter<'a> {
    pub fn new(buffer: &'a mut [u8]) -> CursorWriter<'a> {
        CursorWriter { buffer, position: 0 }
    }
}

impl<'a> Writer for CursorWriter<'a> {
    fn write(&mut self, buf: &[u8]) -> ser::Result<()> {
        /*
         * Detect if the write will overflow the buffer.
         */
        if (self.position + buf.len()) > self.buffer.len() {
            return Err(ser::Error::WriterFullOfBytes);
        }

        self.buffer[self.position..(self.position + buf.len())].copy_from_slice(buf);
        self.position += buf.len();
        Ok(())
    }

    fn push_handle(&mut self, handle: Handle) -> ser::Result<HandleSlot> {
        unimplemented!()
    }
}

impl<'a> Writer for &'a mut Vec<u8> {
    fn write(&mut self, buf: &[u8]) -> ser::Result<()> {
        self.extend_from_slice(buf);
        Ok(())
    }

    fn push_handle(&mut self, handle: Handle) -> ser::Result<HandleSlot> {
        unimplemented!()
    }
}

/// This is a writer that can be used to calculate the size of a serialized value. It doesn't actually write the
/// serialized bytes anywhere - it simply tracks how are produced. Because the `Serializer` takes the `Writer` by
/// value, this stores a reference back to the size, so it can be accessed after serialization is complete.
struct SizeCalculator<'a> {
    size: &'a mut usize,
}

impl<'a> Writer for SizeCalculator<'a> {
    fn write(&mut self, buf: &[u8]) -> ser::Result<()> {
        *self.size += buf.len();
        Ok(())
    }

    fn push_handle(&mut self, handle: Handle) -> ser::Result<HandleSlot> {
        /*
         * When calculating the size, we simply accept as many handles as we're passed. The encoded slot is always
         * the same size, so it doesn't matter what we return.
         */
        Ok(HANDLE_SLOT_0)
    }
}