瀏覽代碼

Add RingBuffer::{enqueue_allocated,dequeue_allocated}.

These should be used instead of enqueue_many because they do not
require the caller to handle wraparound explicitly.
whitequark 7 年之前
父節點
當前提交
3c74d3309b
共有 1 個文件被更改,包括 19 次插入3 次删除
  1. 19 3
      src/storage/ring_buffer.rs

+ 19 - 3
src/storage/ring_buffer.rs

@@ -230,9 +230,6 @@ impl<'a, T: 'a> RingBuffer<'a, T> {
 
 /// This is the "random access" ring buffer interface: it operates with element slices,
 /// and allows to access elements of the buffer that are not adjacent to its head or tail.
-///
-/// After calling these functions to inject or extract elements, one would normally
-/// use the `enqueue_many` or `dequeue_many` methods to adjust the head or tail.
 impl<'a, T: 'a> RingBuffer<'a, T> {
     /// Return the largest contiguous slice of unallocated buffer elements starting
     /// at the given offset past the last allocated element, and up to the given size.
@@ -270,6 +267,15 @@ impl<'a, T: 'a> RingBuffer<'a, T> {
         size_1 + size_2
     }
 
+    /// Enqueue the given number of unallocated buffer elements.
+    ///
+    /// # Panics
+    /// Panics if the number of elements given exceeds the number of unallocated elements.
+    pub fn enqueue_unallocated(&mut self, count: usize) {
+        assert!(count <= self.window());
+        self.length += count;
+    }
+
     /// Return the largest contiguous slice of allocated buffer elements starting
     /// at the given offset past the first allocated element, and up to the given size.
     pub fn get_allocated(&self, offset: usize, mut size: usize) -> &[T] {
@@ -303,6 +309,16 @@ impl<'a, T: 'a> RingBuffer<'a, T> {
         };
         size_1 + size_2
     }
+
+    /// Dequeue the given number of allocated buffer elements.
+    ///
+    /// # Panics
+    /// Panics if the number of elements given exceeds the number of allocated elements.
+    pub fn dequeue_allocated(&mut self, count: usize) {
+        assert!(count <= self.len());
+        self.length -= count;
+        self.read_at = (self.read_at + count) % self.capacity();
+    }
 }
 
 impl<'a, T: 'a> From<ManagedSlice<'a, T>> for RingBuffer<'a, T> {