feat(buf): add ringbuffer structure

This commit is contained in:
doryan 2025-05-22 21:51:13 +04:00
parent 14bb705e94
commit 7cbbe955bb
2 changed files with 149 additions and 0 deletions

1
src/structures/mod.rs Normal file
View File

@ -0,0 +1 @@
pub mod ring_buffer;

View File

@ -0,0 +1,148 @@
// Thanks to Low Byte Productions, I like this channel.
// Youtube: https://www.youtube.com/watch?v=uIJnATS9j_0
use arduino_hal::port::PinOps;
use static_pins::StaticPinOps;
use crate::{HalfDuplexSerial, SoftSerialReader, SoftSerialWriter};
#[derive(Debug, Clone, Copy)]
pub struct RingBuffer<const N: usize> {
buf: [u8; N],
mask: usize,
head: usize,
tail: usize,
}
impl<const N: usize> RingBuffer<N> {
#[inline]
pub const fn new() -> Self {
if N.is_power_of_two() {
RingBuffer {
buf: [0; N],
mask: N - 1,
head: 0,
tail: 0,
}
} else {
panic!("Buffer capacity isn't power of two");
}
}
#[inline(always)]
pub fn get_buffer(&self) -> &[u8] {
&self.buf
}
#[inline(always)]
pub fn is_empty(&self) -> bool {
self.head == self.tail
}
#[inline(always)]
pub fn is_full(&self) -> bool {
(self.head + 1) & self.mask == self.tail
}
#[inline(always)]
pub fn capacity(&self) -> usize {
N
}
#[inline(always)]
pub fn len(&self) -> usize {
self.head.overflowing_sub(self.tail).0 & self.mask
}
#[inline(always)]
pub fn clear(&mut self) {
self.buf = [0; N];
self.head = 0;
self.tail = 0;
}
#[inline(always)]
pub fn push(&mut self, value: u8) -> Option<()> {
let (head, tail) = (self.head, self.tail);
let next_head = (head + 1) & self.mask;
if next_head == tail {
return None;
}
self.buf[head] = value;
self.head = next_head;
Some(())
}
#[inline(always)]
pub fn pop(&mut self) -> Option<u8> {
let (head, mut tail) = (self.head, self.tail);
if head == tail {
return None;
}
let value = self.buf[tail];
tail = (tail + 1) & self.mask;
self.tail = tail;
Some(value)
}
}
impl<const N: usize> Iterator for RingBuffer<N> {
type Item = u8;
fn next(&mut self) -> Option<Self::Item> {
self.pop()
}
}
impl<const N: usize, P> SoftSerialWriter<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
#[inline(never)]
fn write_byte(&self, data: u8) {
crate::_priv_write_bytes::<P>(data);
}
fn write_bytes(&self, transmit_data: &mut RingBuffer<N>) {
self.sync_transmitter();
<Self as SoftSerialWriter<P, &mut RingBuffer<N>>>::write_byte(self, N as u8);
for _ in 0..N {
let byte = transmit_data.pop().unwrap_or(0);
self.sync_transmitter();
<Self as SoftSerialWriter<P, &mut RingBuffer<N>>>::write_byte(self, byte);
}
}
}
impl<const N: usize, P> SoftSerialReader<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
#[inline(never)]
fn read_byte(&self) -> crate::ReadByteResult {
crate::_priv_read_byte::<P>()
}
fn read_bytes(&self, recieve_data: &mut RingBuffer<N>) {
self.sync_reciever();
let byte = <Self as SoftSerialReader<P, &mut RingBuffer<N>>>::read_byte(self);
if let Ok(len) = byte {
for _ in 0..len {
self.sync_reciever();
if let Ok(byte) = <Self as SoftSerialReader<P, &mut RingBuffer<N>>>::read_byte(self)
{
recieve_data.push(byte).unwrap_or(());
}
}
}
}
}