fixed-buffer

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

unsafe forbidden

Features

Limitations

Documentation

https://docs.rs/fixed-buffer

Examples

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

fn handlerequest( readerwriter: &mut RW, request: Request, ) -> Result<(), Error> { // ... Ok(()) }

fn handleconn(mut tcpstream: TcpStream ) -> Result<(), Error> { let mut buf: FixedBuf<[u8; 4096]> = FixedBuf::new([0; 4096]); 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)?; // Read any request payload // from buf + TcpStream. let mut readerwriter = ReadWriteChain::new( &mut buf, &mut tcpstream); handlerequest(&mut reader_writer, 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<[u8; 1024]> = FixedBuf::new([0; 1024]); 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 bytesread = tryprocessrecord(buf.readable())?; if bytesread == 0 { break; } buf.readbytes(bytesread); } // Shift data in the buffer to free up // space at the end for writing. buf.shift(); } } # ```

The filled constructor is useful in tests.

Alternatives

Release Process

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

Changelog

TO DO

License: Apache-2.0