#extract #zero-allocation #binary #parser #format #endianness #tarrasque

macro tarrasque-macro

A library for zero-allocation parsing of binary formats

5 releases (breaking)

0.10.0 Jan 1, 2019
0.9.0 Dec 27, 2018
0.8.0 Dec 24, 2018
0.7.0 Dec 11, 2018
0.6.0 Dec 8, 2018

#24 in #zero-allocation

40 downloads per month
Used in 3 crates (via tarrasque)

Apache-2.0

13KB
184 lines

tarrasque

crates.io docs.rs travis-ci.com

A library for zero-allocation parsing of binary formats.

Released under the Apache License 2.0.

Supported on Rust 1.31.0 and later.

Example

use tarrasque::{Endianness, ExtractError, Stream, extract};

extract! {
    /// A 2D point.
    #[derive(Copy, Clone, Debug, PartialEq, Eq)]
    pub struct Point[4](endianness: Endianness) {
        /// The x-coordinate of this point.
        pub x: u16 = [endianness],
        /// The y-coordinate of this point.
        pub y: u16 = [endianness],
    }
}

fn main() {
    // A stream of bytes.
    let mut stream = Stream(&[1, 2, 3, 4, 5, 6, 7, 8]);

    // Extract a point containing two big-endian `u16`s from the stream.
    let point = stream.extract::<Point, _>(Endianness::Big);
    assert_eq!(point, Ok(Point { x: 258, y: 772 }));

    // Extract a point containing two little-endian `u16`s from the stream.
    let point = stream.extract::<Point, _>(Endianness::Little);
    assert_eq!(point, Ok(Point { x: 1541, y: 2055 }));

    // Attempt to extract a point from the empty stream.
    let point = stream.extract::<Point, _>(Endianness::Big);
    assert_eq!(point, Err(ExtractError::Insufficient(2)));
}

Dependencies

~2MB
~45K SLoC