#byte #endianness #extract #stream #zero-allocation #binary #format

塔拉斯克

一个用于零分配解析二进制格式的库

9 个重大版本发布

0.10.0 2019年1月1日
0.9.0 2018年12月27日
0.8.0 2018年12月24日
0.5.0 2018年6月17日

#2514 in 解析实现

每月下载量 27
用于 2 crates

Apache-2.0

35KB
600

塔拉斯克

crates.io docs.rs travis-ci.com

一个用于零分配解析二进制格式的库。

在 Apache License 2.0 许可下发布。

支持 Rust 1.31.0 及以上版本。

示例

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)));
}

依赖项

~2MB
~46K SLoC