#varint #io #future #async #async-io #no-std

no-std variable-len-reader

A library for reading/writing variable length data. Support AsyncRead/AsyncWrite in tokio.

13 releases (stable)

3.2.0 Mar 20, 2024
2.4.0 Feb 26, 2024
1.0.0 Dec 20, 2023
0.5.1 Dec 20, 2023

#301 in Encoding

Download history 41/week @ 2023-12-24 25/week @ 2023-12-31 5/week @ 2024-01-07 1/week @ 2024-01-14 55/week @ 2024-01-21 3/week @ 2024-01-28 148/week @ 2024-02-25 9/week @ 2024-03-03 18/week @ 2024-03-10 561/week @ 2024-03-17 12/week @ 2024-03-24 36/week @ 2024-03-31 1/week @ 2024-04-07

619 downloads per month
Used in 3 crates (2 directly)

MIT license

205KB
4K SLoC

Variable Len Reader

Crate GitHub last commit GitHub issues GitHub pull requests GitHub

Read this in other languages: English, 简体中文.

Description

A Rust crate to read variable length data based on varint format.

Features

  • Reading and writing.
  • Both synchronous and asynchronous implementations.
  • Support bytes and tokio crates.
  • Long chunk version for varint implementations. (But not recommended to use because it's stupid.)
  • Support signed and unsigned value. (Using zigzag encoding.)
  • Support usize/isize directly or convert from/to u128/i128. (with the ap suffix.)
  • Support extra type of f32, f64, vec<u8> and string.
  • Built-in implementation of std::io::Read, std::io::Write and tokio::io::AsyncRead, tokio::io::AsyncWrite.
  • Chaining bytes::Buf support.
  • no-std support.

Usage

Add this to your Cargo.toml:

[dependencies]
variable-len-reader = "^3.2"

Example

Directly use in tcp stream:

use std::net::{TcpListener, TcpStream};
use anyhow::Result;
use variable_len_reader::{VariableReader, VariableWriter};

fn main() -> Result<()> {
    let server = TcpListener::bind("localhost:0")?;
    let mut client = TcpStream::connect(server.local_addr()?)?;
    let mut server = server.incoming().next().unwrap()?;

    // Write
    client.write_string(&"Hello world!")?;

    // Read
    let message = server.read_string()?;
    assert_eq!("Hello world!", message);
    
    Ok(())
}

Use with bytes crate:

use bytes::{Buf, BufMut, BytesMut};
use variable_len_reader::{VariableReader, VariableWriter};

fn main() {
    let message = "Hello world!";
    let mut writer = BytesMut::new().writer();

    // Write
    writer.write_string(message).unwrap();

    let bytes = writer.into_inner();
    assert_eq!(message.len() as u8, bytes[0]);
    assert_eq!(message.as_bytes(), &bytes[1..]);
    let mut reader = bytes.reader();

    // Read
    let string = reader.read_string().unwrap();
    assert_eq!(message, string);
}

Async mode with tokio crate: (Require 'async_default' feature)

use anyhow::Result;
use tokio::net::{TcpListener, TcpStream};
use variable_len_reader::{AsyncVariableReader, AsyncVariableWriter};
use variable_len_reader::helper::{AsyncReaderHelper, AsyncWriterHelper};

#[tokio::main]
async fn main() -> Result<()> {
    let server = TcpListener::bind("localhost:0").await?;
    let mut client = TcpStream::connect(server.local_addr()?).await?;
    let (mut server, _) = server.accept().await?;

    // Write
    AsyncWriterHelper(&mut client).help_write_string(&"Hello tokio!").await?;

    // Read
    let message = AsyncReaderHelper(&mut server).help_read_string().await?;
    assert_eq!("Hello tokio!", message);
    
    Ok(())
}

Dependencies

~0–3.5MB
~60K SLoC