2个不稳定版本
0.2.0 | 2023年1月13日 |
---|---|
0.1.0 | 2022年4月22日 |
1743 in 数据结构
在 socktee 中使用
19KB
333 行
固定大小的环形缓冲区,用于各种大小的数据报。
实现使用 std::collections::VecDeque
用于元数据存储,以及固定大小的后端缓冲区用于存储数据报数据。
示例
作为UNIX数据报套接字的存储和转发缓冲区的使用。
use dgrambuf::DatagramBuf;
use std::os::unix::net::UnixDatagram;
fn main() -> std::io::Result<()> {
let socket = UnixDatagram::bind("/path/to/my/socket")?;
// allocate backing buffer
let mut dgram_buf = Vec::new();
dgram_buf.resize(512, 0);
let mut dgram_buf = DatagramBuf::from_slice(&mut dgram_buf);
// receive 10 datagrams up to 128 bytes in length each
for _ in 0..10 {
// drop old datagrams if there is not enough space left in the backing buffer (512)
let mut buf = dgram_buf.alloc_front_drop(128).unwrap();
let count = socket.recv(&mut buf)?;
// reduce the size of the allocation to fit the datagram received
dgram_buf.truncate_front(count);
}
// send back the received datagrams in order
while let Some(mut buf) = dgram_buf.pop_back() {
socket.send(&mut buf)?;
}
Ok(())
}