36#ifndef IMT_BASE_CORE_UTIL_RINGBUFFER_H
37#define IMT_BASE_CORE_UTIL_RINGBUFFER_H
56template<
typename ElementType, u
int16_t BufferSize>
61 static_assert(BufferSize > 1,
"Buffer size less than 2 elements");
82 m_buf[m_inPos] = newValue;
83 m_inPos = (m_inPos + 1) % BufferSize;
95 return m_buf[m_outPos];
107 uint16_t const index {
static_cast<uint16_t>((m_outPos + offset) % BufferSize)};
122 return m_buf[m_outPos];
134 uint16_t const index {
static_cast<uint16_t>((m_outPos + offset) % BufferSize)};
150 m_outPos = (m_outPos + 1) % BufferSize;
162 uint16_t const index {(inPos > 0) ?
static_cast<uint16_t>((inPos - 1) % BufferSize) :
static_cast<uint16_t>(BufferSize - 1)};
174 uint16_t const index {(inPos > 0) ?
static_cast<uint16_t>((inPos - 1) % BufferSize) :
static_cast<uint16_t>(BufferSize - 1)};
188 uint16_t const index {
static_cast<uint16_t>((((BufferSize - 1) + m_inPos) - offset) % BufferSize)};
199 return m_inPos == m_outPos;
217 return (inPos >= outPos) ? (inPos - outPos) : (BufferSize - (outPos - inPos));
224 std::array<ValueType, BufferSize> m_buf {};
void ASSERT_DEBUG(bool const condition) noexcept
This template class implements a FIFO ringbuffer.
ValueType const & bottom(uint16_t const offset) const
Get the last recently added value.
ValueType const & top() const
The value on the top of the buffer.
bool isEmpty() const
Checks if the buffer is empty.
void push(ValueType const &newValue)
Add a value to the buffer (overwrite oldest if full)
ValueType const & bottomAndClearAll()
Get the last recently added value.
ValueType const & bottom() const
Get the last recently added value.
ElementType ValueType
The type of the values/elements in this buffer.
uint16_t getSizeUsed() const
Get the number of items in the buffer.
ValueType & top()
The value on the top of the buffer.
ValueType pop()
The value on the top of the buffer.
static constexpr uint16_t SIZE
The size of the buffer.
bool isFull() const
Checks if the buffer is full.
ValueType & top(uint16_t const offset)
The value on the top of the buffer.
ValueType const & top(uint16_t const offset) const
The value on the top of the buffer.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t