1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
use core::ops::{Index, IndexMut}; #[cfg(feature = "alloc")] extern crate alloc; #[cfg(feature = "alloc")] use alloc::vec::Vec; use core::iter::FromIterator; // TODO: Remove Default <Issue #13> /// RingBuffer is a trait defining the standard interface for all RingBuffer /// implementations ([`AllocRingBuffer`](crate::AllocRingBuffer), [`GenericRingBuffer`](crate::GenericRingBuffer), [`ConstGenericRingBuffer`](crate::ConstGenericRingBuffer)) /// /// This trait is not object safe, so can't be used dynamically. However it is possible to /// define a generic function over types implementing RingBuffer. pub trait RingBuffer<T: 'static + Default>: Default + Index<isize, Output = T> + IndexMut<isize> + FromIterator<T> + crate::private::Sealed { /// Returns the length of the internal buffer. /// This length grows up to the capacity and then stops growing. /// This is because when the length is reached, new items are appended at the start. fn len(&self) -> usize; // TODO: issue #21: pop feature /// Returns true if the buffer is entirely empty. /// This is currently only true when nothing has ever been pushed, or when the [`Self::clear`] /// function is called. This might change when the `pop` function is added with issue #21 #[inline] fn is_empty(&self) -> bool { self.len() == 0 } /// Returns true when the length of the ringbuffer equals the capacity. This happens whenever /// more elements than capacity have been pushed to the buffer. #[inline] fn is_full(&self) -> bool { self.len() == self.capacity() } /// Empties the buffer entirely. Sets the length to 0 but keeps the capacity allocated. fn clear(&mut self); /// Returns the capacity of the buffer. fn capacity(&self) -> usize; /// Gets a value relative to the current index. 0 is the next index to be written to with push. /// -1 and down are the last elements pushed and 0 and up are the items that were pushed the longest ago. fn get(&self, index: isize) -> Option<&T>; /// Gets a value relative to the current index mutably. 0 is the next index to be written to with push. /// -1 and down are the last elements pushed and 0 and up are the items that were pushed the longest ago. /// /// # Safety /// get_mut_impl is used to implement [`iter_mut`](Self::iter_mut). It requires that for indices in the range /// 0..self.len(), every reference ***MUST ONLY BE RETURNED ONCE***. Any sane implementation of /// get_mut does this anyway, but failing to do so results in the possibility to have multiple multiple /// references to data inside the ringbuffer. (as per issue #25) This function is unsafe precisely because /// of this issue. unsafe fn get_mut_impl(&mut self, index: isize) -> Option<&mut T>; /// Gets a value relative to the current index mutably. 0 is the next index to be written to with push. /// -1 and down are the last elements pushed and 0 and up are the items that were pushed the longest ago. fn get_mut(&mut self, index: isize) -> Option<&mut T> { // Safety: calling get_mut_impl is not unsafe, implementing it might be unsafe because of // the behaviour of iter_mut (see [`Self::get_mut_impl`]) unsafe { self.get_mut_impl(index) } } /// Gets a value relative to the start of the array (rarely useful, usually you want [`Self::get`]) fn get_absolute(&self, index: usize) -> Option<&T>; /// Gets a value mutably relative to the start of the array (rarely useful, usually you want [`Self::get_mut`]) fn get_absolute_mut(&mut self, index: usize) -> Option<&mut T>; /// Pushes a value onto the buffer. Cycles around if capacity is reached. fn push(&mut self, e: T); /// Returns the value at the current index. /// This is the value that will be overwritten by the next push and also the value pushed /// the longest ago. (alias of [`Self::front`]) #[inline] fn peek(&self) -> Option<&T> { self.front() } /// Returns the value at the back of the queue. /// This is the item that was pushed most recently. #[inline] fn back(&self) -> Option<&T> { self.get(-1) } /// Returns the value at the back of the queue. /// This is the value that will be overwritten by the next push and also the value pushed /// the longest ago. /// (alias of peek) #[inline] fn front(&self) -> Option<&T> { self.get(0) } /// Returns a mutable reference to the value at the back of the queue. /// This is the item that was pushed most recently. #[inline] fn back_mut(&mut self) -> Option<&mut T> { self.get_mut(-1) } /// Returns a mutable reference to the value at the back of the queue. /// This is the value that will be overwritten by the next push. /// (alias of peek) #[inline] fn front_mut(&mut self) -> Option<&mut T> { self.get_mut(0) } /// Creates an iterator over the buffer starting from the latest push. /// Creates an iterator over the buffer starting from the item pushed the longest ago, /// and ending at the element most recently pushed. #[inline] fn iter(&self) -> RingBufferIterator<T, Self> { RingBufferIterator::new(self) } /// Creates a mutable iterator over the buffer starting from the latest push. /// Creates a mutable iterator over the buffer starting from the item pushed the longest ago, /// and ending at the element most recently pushed. #[inline] fn iter_mut(&mut self) -> RingBufferMutIterator<T, Self> { RingBufferMutIterator::new(self) } /// Converts the buffer to a vector. This Copies all elements in the ringbuffer. #[cfg(feature = "alloc")] fn to_vec(&self) -> Vec<T> where T: Clone, { self.iter().cloned().collect() } /// Returns true if elem is in the ringbuffer. fn contains(&self, elem: &T) -> bool where T: PartialEq, { self.iter().any(|i| i == elem) } } mod iter { use crate::RingBuffer; use core::marker::PhantomData; /// RingBufferIterator holds a reference to a RingBuffer and iterates over it. `index` is the /// current iterator position. pub struct RingBufferIterator<'rb, T: 'static + Default, RB: RingBuffer<T>> { obj: &'rb RB, index: usize, phantom: PhantomData<T>, } impl<'rb, T: 'static + Default, RB: RingBuffer<T>> RingBufferIterator<'rb, T, RB> { #[inline] pub fn new(obj: &'rb RB) -> Self { Self { obj, index: 0, phantom: Default::default(), } } } impl<'rb, T: 'static + Default, RB: RingBuffer<T>> Iterator for RingBufferIterator<'rb, T, RB> { type Item = &'rb T; #[inline] fn next(&mut self) -> Option<Self::Item> { if self.index < self.obj.len() { let res = self.obj.get(self.index as isize); self.index += 1; res } else { None } } } /// RingBufferMutIterator holds a reference to a RingBuffer and iterates over it. `index` is the /// current iterator position. /// /// WARNING: NEVER ACCESS THE `obj` FIELD. it's private on purpose, and can technically be accessed /// in the same module. However, this breaks the safety of `next()` pub struct RingBufferMutIterator<'rb, T: 'static + Default, RB: RingBuffer<T>> { obj: &'rb mut RB, index: usize, phantom: PhantomData<T>, } impl<'rb, T: 'static + Default, RB: RingBuffer<T>> RingBufferMutIterator<'rb, T, RB> { #[inline] pub fn new(obj: &'rb mut RB) -> Self { Self { obj, index: 0, phantom: Default::default(), } } } impl<'rb, T: 'static + Default, RB: RingBuffer<T>> Iterator for RingBufferMutIterator<'rb, T, RB> { type Item = &'rb mut T; #[inline] fn next(&mut self) -> Option<Self::Item> { if self.index < self.obj.len() { let res: Option<&'_ mut T> = unsafe { self.obj.get_mut_impl(self.index as isize) }; self.index += 1; // Safety: // This mem transmute is extending the lifetime of the returned value. // This is necessary because the rust borrow checker is too restrictive in giving out mutable references. // It thinks the iterator can give out a mutable reference, while it's also possible to mutably borrow // `obj` in the RingBufferMutIterator struct. This is however *never* possible because it's a private field // Unfortunately this is a limitation of the rust compiler. It's well explained here: // http://smallcultfollowing.com/babysteps/blog/2013/10/24/iterators-yielding-mutable-references/ unsafe { core::mem::transmute::<Option<&'_ mut T>, Option<&'rb mut T>>(res) } } else { None } } } } pub use iter::{RingBufferIterator, RingBufferMutIterator}; /// Implement the get, get_mut, get_absolute and get_absolute_mut functions on implementors /// of RingBuffer. This is to avoid duplicate code. macro_rules! impl_ringbuffer { ($buf: ident, $index: ident) => { #[inline] fn get(&self, index: isize) -> Option<&T> { if self.len() > 0 { let index = (index + self.$index as isize).rem_euclid(self.len() as isize) as usize; self.$buf.get(index) } else { None } } #[inline] unsafe fn get_mut_impl(&mut self, index: isize) -> Option<&mut T> { if self.len() > 0 { let index = (index + self.$index as isize).rem_euclid(self.len() as isize) as usize; self.$buf.get_mut(index) } else { None } } #[inline] fn get_absolute(&self, index: usize) -> Option<&T> { if index < self.len() { self.$buf.get(index) } else { None } } #[inline] fn get_absolute_mut(&mut self, index: usize) -> Option<&mut T> { if index < self.len() { self.$buf.get_mut(index) } else { None } } }; }