fixed-buffer

crates.io version license: Apache 2.0 unsafe forbidden pipeline status

This is a Rust library with fixed-size buffers, useful for network protocol parsers and file parsers.

Features

Limitations

Examples

Read and handle requests from a remote client: ```rust use fixedbuffer::{deframeline, FixedBuf}; use std::io::Error; use std::net::TcpStream;

fn handleconn(mut tcpstream: TcpStream) -> Result<(), Error> { let mut buf: FixedBuf<4096> = FixedBuf::new(); loop { // Read a line // and leave leftover bytes in buf. let linebytes = match buf.readframe( &mut tcpstream, deframeline)? { Some(linebytes) => linebytes, None => return Ok(()), }; let request = Request::parse(linebytes)?; handlerequest(request)?; } } `` For a complete example, see [tests/server.rs`](https://gitlab.com/leonhard-llc/fixed-buffer-rs/-/blob/main/fixed-buffer/tests/server.rs).

Read and process records: ```rust use fixed_buffer::FixedBuf; use std::io::{Error, ErrorKind, Read}; use std::net::TcpStream;

fn tryprocessrecord(b: &[u8]) -> Result { if b.len() < 2 { return Ok(0); } if b.startswith("ab".asbytes()) { println!("found record"); Ok(2) } else { Err(Error::new(ErrorKind::InvalidData, "bad record")) } }

fn readandprocess(mut input: R) -> Result<(), Error> { let mut buf: FixedBuf<1024> = FixedBuf::new(); loop { // Read a chunk into the buffer. if buf.copyoncefrom(&mut input)? == 0 { return if buf.len() == 0 { // EOF at record boundary Ok(()) } else { // EOF in the middle of a record Err(Error::from( ErrorKind::UnexpectedEof)) }; } // Process records in the buffer. loop { let numtoconsume = tryprocessrecord(buf.readable())?; if numtoconsume == 0 { break; } buf.tryreadexact(numtoconsume).unwrap(); } // Shift data in the buffer to free up // space at the end for writing. buf.shift(); } } # ```

The From<[u8; SIZE]> implementation is useful in tests. Example: rust use core::convert::From; assert_eq!(3, FixedBuf::from(*b"abc").len());

Alternatives

Changelog

Older changelog entries

TO DO

Release Process

  1. Edit Cargo.toml and bump version number.
  2. Run ../release.sh

License: Apache-2.0