#ring-buffer #buffer #memory-buffer #networking #allocation #fixed-size

magic-buffer

a virtual ring buffer implementation that magically wraps around itself

2 releases

0.1.1 Feb 6, 2024
0.1.0 Jun 12, 2023

#565 in Algorithms

Download history 5/week @ 2024-02-02 7/week @ 2024-02-16 21/week @ 2024-02-23 10/week @ 2024-03-01 2/week @ 2024-03-08 36/week @ 2024-03-15 30/week @ 2024-03-22 84/week @ 2024-03-29 35/week @ 2024-04-05 23/week @ 2024-04-12

172 downloads per month

MIT license

33KB
591 lines

CI crates.io docs.rs

Magic Buffer

A Magic Ring Buffer (or Virtual Ring Buffer) implementation for Rust. magic-buffer provides a simplified way to deal with buffers that wrap around by delegating that logic to hardware.

diagram

The same underlying buffer is mapped twice into memory at adjacent addresses. This allows to wrap around the buffer while still reading forward in the virtual address space.

This behavior is useful for a variety of applications:

  • network protocol parsers with a fixed size buffer
  • VecDec implementations that can provide a consecutive slice of memory (e.g. SliceDeq)
  • IPC ring buffer implementations
[dependencies]
magic-buffer = "0.1"

Examples

Allocating a Buffer

Buffer lens have to be page aligned and follow the allocation granularity of the operating system

use magic_buffer::*;
let buf = MagicBuffer::new(1 << 16).unwrap();
OS Architecture Min Buffer Len
Windows x86_64 64 KiB
Linux x86_64 4 KiB
OSX x86_64 4 KiB
OSX aarch64 16 KiB

** PRs welcome to complete this list

Indexing into a Buffer

use magic_buffer::*;
let mut buf = MagicBuffer::new(1 << 16).unwrap();
buf[0] = b'1';
buf[1] = b'2';

// index wraps around
assert_eq!(buf[0], buf[1 << 16]);
assert_eq!(buf[1], buf[(1 << 16) + 1]);

Slices

use magic_buffer::*;
let buf = MagicBuffer::new(1 << 16).unwrap();

// the whole underlying buffer starting at pos 0
let a = &buf[..];

// the whole underlying buffer starting at pos 1
// then wrapping around with the first byte at the end
let b = &buf[1..];

Dependencies

~0.4–12MB
~104K SLoC