[][src]Struct dasp::ring_buffer::Bounded

pub struct Bounded<S> { /* fields omitted */ }

A ring buffer with an upper bound on its length.

AKA Circular buffer, cyclic buffer, FIFO queue.

Elements can be pushed to the back of the buffer and popped from the front.

Elements must be Copy due to the behaviour of the push and pop methods. If you require working with non-Copy elements, the std VecDeque type may be better suited.

A Bounded ring buffer can be created from any type providing a slice to use for pushing and popping elements.

fn main() {
    // From a fixed size array.
    dasp_ring_buffer::Bounded::from([0; 4]);

    // From a Vec.
    dasp_ring_buffer::Bounded::from(vec![0; 4]);

    // From a Boxed slice.
    dasp_ring_buffer::Bounded::from(vec![0; 3].into_boxed_slice());

    // From a mutably borrowed slice.
    let mut slice = [0; 4];
    dasp_ring_buffer::Bounded::from(&mut slice[..]);

    // An immutable ring buffer from an immutable slice.
    let slice = [0; 4];
    dasp_ring_buffer::Bounded::from(&slice[..]);
}

Implementations

impl<S> Bounded<S> where
    S: Slice,
    <S as Slice>::Element: Copy
[src]

pub fn from_full(data: S) -> Bounded<S>[src]

The same as the From implementation, but assumes that the given data is full of valid elements and initialises the ring buffer with a length equal to max_len.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from_full([0, 1, 2, 3]);
    assert_eq!(rb.len(), rb.max_len());
    assert_eq!(rb.pop(), Some(0));
    assert_eq!(rb.pop(), Some(1));
    assert_eq!(rb.pop(), Some(2));
    assert_eq!(rb.pop(), Some(3));
    assert_eq!(rb.pop(), None);
}

pub fn max_len(&self) -> usize[src]

The maximum length that the Bounded buffer can be before pushing would overwrite the front of the buffer.

fn main() {
    let mut ring_buffer = dasp_ring_buffer::Bounded::from([0i32; 3]);
    assert_eq!(ring_buffer.max_len(), 3);
}

pub fn len(&self) -> usize[src]

The current length of the ring buffer.

fn main() {
    let mut ring_buffer = dasp_ring_buffer::Bounded::from([0i32; 3]);
    assert_eq!(ring_buffer.len(), 0);
}

pub fn is_empty(&self) -> bool[src]

Whether or not the ring buffer's length is equal to 0.

Equivalent to self.len() == 0.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from([0i32; 2]);
    assert!(rb.is_empty());
    rb.push(0);
    assert!(!rb.is_empty());
}

pub fn is_full(&self) -> bool[src]

Whether or not the ring buffer's length is equal to the maximum length.

Equivalent to self.len() == self.max_len().

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from([0i32; 2]);
    assert!(!rb.is_full());
    rb.push(0);
    rb.push(1);
    assert!(rb.is_full());
}

pub fn slices(&self) -> (&[<S as Slice>::Element], &[<S as Slice>::Element])[src]

The start and end slices that make up the ring buffer.

These two slices chained together represent all elements within the buffer in order.

The first slice is always aligned contiguously behind the second slice.

fn main() {
    let mut ring_buffer = dasp_ring_buffer::Bounded::from([0i32; 4]);
    assert_eq!(ring_buffer.slices(), (&[][..], &[][..]));
    ring_buffer.push(1);
    ring_buffer.push(2);
    assert_eq!(ring_buffer.slices(), (&[1, 2][..], &[][..]));
    ring_buffer.push(3);
    ring_buffer.push(4);
    assert_eq!(ring_buffer.slices(), (&[1, 2, 3, 4][..], &[][..]));
    ring_buffer.push(5);
    ring_buffer.push(6);
    assert_eq!(ring_buffer.slices(), (&[3, 4][..], &[5, 6][..]));
}

pub fn slices_mut(
    &mut self
) -> (&mut [<S as Slice>::Element], &mut [<S as Slice>::Element]) where
    S: SliceMut
[src]

The same as the slices method, but returns mutable slices instead.

pub fn iter(
    &self
) -> Chain<Iter<<S as Slice>::Element>, Iter<<S as Slice>::Element>>
[src]

Produce an iterator that yields a reference to each element in the buffer.

This method uses the slices method internally.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from([0i32; 3]);
    assert_eq!(rb.iter().count(), 0);
    rb.push(1);
    rb.push(2);
    assert_eq!(rb.iter().cloned().collect::<Vec<_>>(), vec![1, 2]);
}

pub fn iter_mut(
    &mut self
) -> Chain<IterMut<<S as Slice>::Element>, IterMut<<S as Slice>::Element>> where
    S: SliceMut
[src]

Produce an iterator that yields a mutable reference to each element in the buffer.

This method uses the slices_mut method internally.

pub fn get(&self, index: usize) -> Option<&<S as Slice>::Element>[src]

Borrows the item at the given index.

Returns None if there is no element at the given index.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from([0i32; 4]);
    assert_eq!(rb.get(1), None);
    rb.push(0);
    rb.push(1);
    assert_eq!(rb.get(1), Some(&1));
}

pub fn get_mut(&mut self, index: usize) -> Option<&mut <S as Slice>::Element> where
    S: SliceMut
[src]

Mutably borrows the item at the given index.

Returns None if there is no element at the given index.

pub fn push(
    &mut self,
    elem: <S as Slice>::Element
) -> Option<<S as Slice>::Element> where
    S: SliceMut
[src]

Pushes the given element to the back of the buffer.

If the buffer length is currently the max length, this replaces the element at the front of the buffer and returns it.

If the buffer length is less than the max length, this pushes the element to the back of the buffer and increases the length of the buffer by 1. None is returned.

fn main() {
    let mut ring_buffer = dasp_ring_buffer::Bounded::from([0i32; 3]);
    assert_eq!(ring_buffer.push(1), None);
    assert_eq!(ring_buffer.push(2), None);
    assert_eq!(ring_buffer.len(), 2);
    assert_eq!(ring_buffer.push(3), None);
    assert_eq!(ring_buffer.len(), 3);
    assert_eq!(ring_buffer.push(4), Some(1));
    assert_eq!(ring_buffer.len(), 3);
}

pub fn pop(&mut self) -> Option<<S as Slice>::Element> where
    S: SliceMut
[src]

Pop an element from the front of the ring buffer.

If the buffer is empty, this returns None.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from_full([0, 1, 2]);
    assert_eq!(rb.len(), rb.max_len());
    assert_eq!(rb.pop(), Some(0));
    assert_eq!(rb.pop(), Some(1));
    assert_eq!(rb.push(3), None);
    assert_eq!(rb.pop(), Some(2));
    assert_eq!(rb.pop(), Some(3));
    assert_eq!(rb.pop(), None);
}

pub fn drain(&mut self) -> DrainBounded<S>[src]

Produce an iterator that drains the ring buffer by popping each element one at a time.

Note that only elements yielded by DrainBounded::next will be popped from the ring buffer. That is, all non-yielded elements will remain in the ring buffer.

fn main() {
    let mut rb = dasp_ring_buffer::Bounded::from_full([0, 1, 2, 3]);
    assert_eq!(rb.drain().take(2).collect::<Vec<_>>(), vec![0, 1]);
    assert_eq!(rb.pop(), Some(2));
    assert_eq!(rb.pop(), Some(3));
    assert_eq!(rb.pop(), None);
}

pub fn from_raw_parts(start: usize, len: usize, data: S) -> Bounded<S>[src]

Creates a Bounded ring buffer from its start index, length and data slice.

The maximum length of the Bounded ring buffer is assumed to the length of the given slice.

Note: Existing elements within the given data's slice will not be dropped when overwritten by calls to push. Thus, it is safe for the slice to contain uninitialized elements when using this method.

Note: This method should only be necessary if you require specifying the start and initial len.

**Panic!**s if the following conditions are not met:

  • start < data.slice().len()
  • len <= data.slice().len()

pub unsafe fn from_raw_parts_unchecked(
    start: usize,
    len: usize,
    data: S
) -> Bounded<S>
[src]

Creates a Bounded ring buffer from its start index, len and data slice.

This method is unsafe as there is no guarantee that either:

  • start < data.slice().len() or
  • len <= data.slice().len().

pub unsafe fn into_raw_parts(self) -> (usize, usize, S)[src]

Consumes the Bounded ring buffer and returns its parts:

  • The first usize is an index into the first element of the buffer.
  • The second usize is the length of the ring buffer.
  • S is the buffer data.

This method is unsafe as the returned data may contain uninitialised memory in the case that the ring buffer is not full.

Trait Implementations

impl<S> Clone for Bounded<S> where
    S: Clone
[src]

impl<S> Copy for Bounded<S> where
    S: Copy
[src]

impl<S> Debug for Bounded<S> where
    S: Debug
[src]

impl<S> Eq for Bounded<S> where
    S: Eq
[src]

impl<S> From<S> for Bounded<S> where
    S: Slice,
    <S as Slice>::Element: Copy
[src]

fn from(data: S) -> Bounded<S>[src]

Construct a Bounded ring buffer from the given data slice.

**Panic!**s if the given data buffer is empty.

impl<S, T> FromIterator<T> for Bounded<S> where
    S: Slice<Element = T> + FromIterator<T>,
    T: Copy
[src]

impl<S> Hash for Bounded<S> where
    S: Hash
[src]

impl<S> Index<usize> for Bounded<S> where
    S: Slice,
    <S as Slice>::Element: Copy
[src]

type Output = <S as Slice>::Element

The returned type after indexing.

impl<S> IndexMut<usize> for Bounded<S> where
    S: SliceMut,
    <S as Slice>::Element: Copy
[src]

impl<S> PartialEq<Bounded<S>> for Bounded<S> where
    S: PartialEq<S>, 
[src]

impl<S> StructuralEq for Bounded<S>[src]

impl<S> StructuralPartialEq for Bounded<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Bounded<S> where
    S: RefUnwindSafe

impl<S> Send for Bounded<S> where
    S: Send

impl<S> Sync for Bounded<S> where
    S: Sync

impl<S> Unpin for Bounded<S> where
    S: Unpin

impl<S> UnwindSafe for Bounded<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> From<T> for T[src]

impl<S> FromSample<S> for S[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.