fixed-buffer
This is a Rust library with fixed-size buffers, useful for network protocol parsers.
Features
- Write bytes to the buffer and read them back
- Lives on the stack
- Does not allocate memory
- Supports tokio's AsyncRead and AsyncWrite
- Use it to read a stream, search for a delimiter, and save leftover bytes for the next read.
- Easy to learn & use. Easy to maintain code that uses it.
- Works with Rust
latest
,beta
, andnightly
Limitations
- Not a circular buffer.
You can call
shift()
periodically to move unread bytes to the front of the buffer. - There is no
iterate_delimited(AsyncRead)
. Because of borrowing rules, such a function would need to return non-borrowed (allocated and copied) data.
Examples
Read and handle requests from a remote client:
use FixedBuf;
use Error;
use AsyncWriteExt;
use TcpStream;
async
For a runnable example, see examples/server.rs.
Read and process records:
async
Documentation
Alternatives
- bytes
- buf_redux, circular buffer support
- std::io::BufReader
- std::io::BufWriter
- static-buffer, updated in 2016
- block-buffer, for processing fixed-length blocks of data
TODO
- DONE - Try to make this crate comply with the Rust API Guidelines.
- DONE - Find out how to include Readme.md info in the crate's docs.
- DONE - Make the repo public
- DONE - Set up continuous integration tests and banner.
- DONE - Add some documentation tests
- DONE - Switch to Gitlab because GitHub code reviews suck [1, 2]
- DONE - Custom buffer length.
- DONE - Publish to creates.io
- Read through https://crate-ci.github.io/index.html
- Get a code review from an experienced rustacean
- Add features: std, tokio, async-std
- Simplify
read_delimited()
- Make a more generic read_frame that takes a frame detector function.
Make
read_delimited
use that. - Implement FixedBuf::chain(AsyncRead) which buffers reads like tokio::io::ReadBuf.
- Fix FixedBuf rustdoc link to box_benchmark.
- Switch to const generics once they are stable: