1#ifndef Cpl_Container_RingBuffer_h_
2#define Cpl_Container_RingBuffer_h_
55 const unsigned m_memoryNumElements;
58 ITEM*
const m_endOfMemPtr;
61 ITEM*
const m_elements;
74 RingBuffer(
unsigned numElements, ITEM memoryForElements[] )
noexcept;
92 bool add(
const ITEM& item )
noexcept;
212 m_headPtr = m_tailPtr = m_elements;
225 if ( ++m_tailPtr >= m_endOfMemPtr )
227 m_tailPtr = m_elements;
242 if ( ++m_headPtr >= m_endOfMemPtr )
244 m_headPtr = m_elements;
273 if ( m_headPtr >= m_endOfMemPtr )
275 m_headPtr = m_elements;
303 if ( m_tailPtr >= m_endOfMemPtr )
305 m_tailPtr = m_elements;
341 return m_headPtr == m_tailPtr;
362 tailIdx += m_memoryNumElements;
370 return m_memoryNumElements - 1;
This template class implements a Ring Buffer.
Definition RingBuffer.h:46
ITEM * peekTail(void) const noexcept
Returns a pointer to the last item in the Buffer.
Definition RingBuffer.h:321
RingBuffer(unsigned numElements, ITEM memoryForElements[]) noexcept
Constructor.
Definition RingBuffer.h:199
bool isFull(void) const noexcept
This method returns true if the Ring Buffer is full.
Definition RingBuffer.h:345
ITEM * peekHead(void) const noexcept
Returns a pointer to the first item in the Buffer.
Definition RingBuffer.h:310
void clearTheBuffer() noexcept
Empties the Ring Buffer.
Definition RingBuffer.h:210
void removeElements(unsigned numElementsToRemove) noexcept
This method 'removes' N elements - that were removed using the pointer returned from peekNextRemoveIt...
Definition RingBuffer.h:269
ITEM * peekNextAddItems(unsigned &dstNumFlatElements) noexcept
This method returns a pointer to the next item to be added.
Definition RingBuffer.h:280
unsigned getNumItems(void) const noexcept
This method returns the current number of items in the Ring Buffer.
Definition RingBuffer.h:356
ITEM * peekNextRemoveItems(unsigned &dstNumFlatElements) noexcept
This method returns a pointer to the next item to be removed.
Definition RingBuffer.h:251
unsigned getMaxItems(void) const noexcept
This method returns the maximum number of items that can be stored in the Ring buffer.
Definition RingBuffer.h:368
bool add(const ITEM &item) noexcept
The contents of 'item' will be copied into the Ring Buffer as the 'last' item in the buffer.
Definition RingBuffer.h:217
bool isEmpty(void) const noexcept
This method returns true if the Ring Buffer is empty.
Definition RingBuffer.h:339
bool remove(ITEM &dst) noexcept
Removes the first item in the Buffer.
Definition RingBuffer.h:234
void addElements(unsigned numElementsAdded) noexcept
This method 'adds' N elements - that were populated using the pointer returned from peekNextAddItems ...
Definition RingBuffer.h:299
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20