36#ifndef IMT_BASE_CORE_UTIL_WAITFREERINGBUFFER_H
37#define IMT_BASE_CORE_UTIL_WAITFREERINGBUFFER_H
60template<
typename ElementType, u
int16_t MaxSize>
64 static_assert(MaxSize > 0U);
67 static_assert(ATOMIC_SHORT_LOCK_FREE == 2);
88 bool push(ElementType const& value) {
89 uint16_t const inPos {m_inPos.load(std::memory_order_relaxed)};
90 uint16_t const nextPos {next(inPos)};
91 if (nextPos == m_outPos.load(std::memory_order_acquire)) {
95 m_inPos.store(nextPos, std::memory_order_release);
109 bool pop(ElementType& value) {
110 uint16_t const outPos {m_outPos.load(std::memory_order_relaxed)};
111 if (outPos == m_inPos.load(std::memory_order_acquire)) {
114 value = m_buf[outPos];
115 m_outPos.store(next(outPos), std::memory_order_release);
125 uint16_t const inPos {m_inPos.load(std::memory_order_acquire)};
126 uint16_t const outPos {m_outPos.load(std::memory_order_relaxed)};
127 return getSizeUsed(inPos, outPos);
136 uint16_t const inPos {m_inPos.load(std::memory_order_relaxed)};
137 uint16_t const outPos {m_outPos.load(std::memory_order_acquire)};
138 uint16_t const sizeUsed {getSizeUsed(inPos, outPos)};
139 return BUFFER_SIZE - sizeUsed - 1U;
154 static constexpr uint16_t MAX_SIZE {MaxSize};
155 static constexpr uint16_t BUFFER_SIZE {MAX_SIZE + 1U};
165 return (current + 1U) % BUFFER_SIZE;
169 return (inPos >= outPos) ? (inPos - outPos) : (BUFFER_SIZE - (outPos - inPos));
173 std::atomic<uint16_t> m_inPos {0U};
174 std::atomic<uint16_t> m_outPos {0U};
175 std::array<ElementType, BUFFER_SIZE> m_buf {};
This template class implements a FIFO ringbuffer to transfer data from a producer thread to a consume...
bool push(ElementType const &value)
Add a value to the head of the buffer.
uint16_t getReadAvailable() const
Get number of available values to read.
static uint16_t getMaxSize()
Get template parameter value MaxSize.
~WaitFreeRingBuffer() noexcept=default
uint16_t getWriteAvailable() const
Get number of available values to write.
WaitFreeRingBuffer()=default
bool pop(ElementType &value)
Read and remove the value from the tail of the buffer.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t