Doc

This library used to serialize and deserialize structured data in binary format.

Examples

toml [dependencies] databuf = "0.3"

```rust use databuf::{*, config::num::LE};

[derive(Encode, Decode)]

struct Car<'a> { year: u16, is_new: bool, name: &'a str, }

[derive(Encode, Decode)]

struct Company<'a> { name: String, cars: Vec> }

let old = Company { name: "Tesla".into(), cars: vec![ Car { name: "Model S", year: 2018, isnew: true }, Car { name: "Model X", year: 2019, isnew: false }, ], }; let bytes = old.tobytes::(); let new = Company::frombytes::(&bytes).unwrap(); ```

```rust use databuf::{*, config::num::LE};

[derive(Encode, Decode)]

struct Msg<'a> { id: u16, data: &'a str, } let bytes = [42, 0, 13, 72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33]; // ^^^^^ ^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // Id Len Data

let msg = Msg::frombytes::(&bytes).unwrap(); asserteq!(msg.id, 42); assert_eq!(msg.data, "Hello, World!"); // Here, data is referenced. ```

``rust use databuf::{*, config::{num, len}}; /// Use big endian byte order + Encodemsglength withdatabuf::var_int::BEU15` const CONFIG: u8 = num::BE | len::BEU15;

[derive(Encode, Decode)]

struct Date { year: u16, month: u8, day: u8, }

[derive(Encode, Decode)]

struct Record { id: T, date: Date, msg: String, }

let record = Record { id: 42_u32, date: Date { year: 2018, month: 3, day: 7 }, msg: "Hello!".into() };

let mut buf = [0; 20]; let remaining = &mut buf.asmutslice(); record.encode::(remaining).unwrap();

let amt = 20 - remaining.len(); assert_eq!(amt, 15); // 15 bytes written to buf ```

Variable-Length Integer Encoding

This encoding ensures that smaller integer values need fewer bytes to encode. Support types are BEU15, BEU22, BEU29, BEU30 Encoded in big endian. By default, BEU29 is used to encode length.

Encoding algorithm is very straightforward, The most significant bits of the first byte determine the byte length to encode the number in big endian.

BEU15

| MSB | Length | Usable Bits | Range | | :---: | :----: | :---------: | :------- | | 0 | 1 | 7 | 0..128 | | 1 | 2 | 15 | 0..32768 |

BEU22

| MSB | Length | Usable Bits | Range | | :---: | :----: | :---------: | :--------- | | 0 | 1 | 7 | 0..128 | | 10 | 2 | 14 | 0..16384 | | 11 | 3 | 22 | 0..4194304 |

BEU29

| MSB | Length | Usable Bits | Range | | :---: | :----: | :---------: | :----------- | | 0 | 1 | 7 | 0..128 | | 10 | 2 | 14 | 0..16384 | | 110 | 3 | 21 | 0..2097152 | | 111 | 4 | 29 | 0..536870912 |

BEU30

| MSB | Length | Usable Bits | Range | | :---: | :----: | :---------: | :----------- | | 00 | 1 | 6 | 0..64 | | 01 | 2 | 14 | 0..16384 | | 10 | 3 | 22 | 0..4194304 | | 11 | 4 | 30 | 0..1073741824 |

For example, Binary representation of 0x_C0DE is 0x11000000_11011110

BEU22(0x_C0DE) is encoded in 3 bytes:

yml 1st byte: 11 # MSB is 11, so read next 2 bytes 2nd byte: 11000000 3rd byte: 11011110

Another example, BEU22(107) is encoded in just 1 byte:

yml 1st byte: 0b01101011 # MSB is 0, So we don't have to read extra bytes.