Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RingBuffer.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_UTIL_RINGBUFFER_H
37#define IMT_BASE_CORE_UTIL_RINGBUFFER_H
38
39#include <array>
42
43namespace imt {
44namespace base {
45namespace core {
46namespace util {
47
56template<typename ElementType, uint16_t BufferSize>
57class RingBuffer final {
58
59 // There must always be a gap between in and out position.
60 // Therefore a buffer of size 0 or 1 does not work
61 static_assert(BufferSize > 1, "Buffer size less than 2 elements");
62
63public:
64
68 using ValueType = ElementType;
69
73 static constexpr uint16_t SIZE {BufferSize}; // AXIVION Line AutosarC++19_03-M0.1.4: field will be reference in the projects
74
75 RingBuffer() = default;
76
81 void push(ValueType const& newValue) {
82 m_buf[m_inPos] = newValue;
83 m_inPos = (m_inPos + 1) % BufferSize;
84 }
85
92 ValueType const& top() const {
93 // check for invalid address space access
94 ASSERT_DEBUG(m_outPos < BufferSize);
95 return m_buf[m_outPos];
96 }
97
106 ValueType const& top(uint16_t const offset) const {
107 uint16_t const index {static_cast<uint16_t>((m_outPos + offset) % BufferSize)};
108 // check for invalid address space access
109 ASSERT_DEBUG(index < BufferSize);
110 return m_buf[index];
111 }
112
120 // check for invalid address space access
121 ASSERT_DEBUG(m_outPos < BufferSize);
122 return m_buf[m_outPos];
123 }
124
133 ValueType& top(uint16_t const offset) {
134 uint16_t const index {static_cast<uint16_t>((m_outPos + offset) % BufferSize)};
135 // check for invalid address space access
136 ASSERT_DEBUG(index < BufferSize);
137 return m_buf[index];
138 }
139
147 // Calculate index of the position to return
148 uint16_t const pos {m_outPos};
149 // Calculate next output position
150 m_outPos = (m_outPos + 1) % BufferSize;
151 // check for invalid address space access
152 ASSERT_DEBUG(pos < BufferSize);
153 return m_buf[pos];
154 }
155
160 ValueType const& bottom() const {
161 uint16_t const inPos {m_inPos}; // copy m_inPos to prevent race conditions (irq/tasking)
162 uint16_t const index {(inPos > 0) ? static_cast<uint16_t>((inPos - 1) % BufferSize) : static_cast<uint16_t>(BufferSize - 1)};
163 // check for invalid address space access
164 ASSERT_DEBUG(index < BufferSize);
165 return m_buf[index];
166 }
167
173 uint16_t const inPos {m_inPos}; // copy m_inPos to prevent race conditions (irq/tasking)
174 uint16_t const index {(inPos > 0) ? static_cast<uint16_t>((inPos - 1) % BufferSize) : static_cast<uint16_t>(BufferSize - 1)};
175 m_outPos = m_inPos;
176 // check for invalid address space access
177 ASSERT_DEBUG(index < BufferSize);
178 return m_buf[index];
179 }
180
187 ValueType const& bottom(uint16_t const offset) const {
188 uint16_t const index {static_cast<uint16_t>((((BufferSize - 1) + m_inPos) - offset) % BufferSize)};
189 // check for invalid address space access
190 ASSERT_DEBUG(index < BufferSize);
191 return m_buf[index];
192 }
193
198 bool isEmpty() const {
199 return m_inPos == m_outPos;
200 }
201
206 bool isFull() const {
207 return getSizeUsed() == (BufferSize - 1);
208 }
209
215 uint16_t const inPos {m_inPos}; // copy m_inPos to prevent race conditions (irq/tasking)
216 uint16_t const outPos {m_outPos}; // copy m_outPos to prevent race conditions (irq/tasking)
217 return (inPos >= outPos) ? (inPos - outPos) : (BufferSize - (outPos - inPos));
218 }
219
220private:
221
222 uint16_t m_inPos {0U};
223 uint16_t m_outPos {0U};
224 std::array<ValueType, BufferSize> m_buf {};
225};
226
227} // namespace util
228} // namespace core
229} // namespace base
230} // namespace imt
231
232#endif // IMT_BASE_CORE_UTIL_RINGBUFFER_H
void ASSERT_DEBUG(bool const condition) noexcept
Definition Diagnostics.h:88
This template class implements a FIFO ringbuffer.
Definition RingBuffer.h:57
ValueType const & bottom(uint16_t const offset) const
Get the last recently added value.
Definition RingBuffer.h:187
ValueType const & top() const
The value on the top of the buffer.
Definition RingBuffer.h:92
bool isEmpty() const
Checks if the buffer is empty.
Definition RingBuffer.h:198
void push(ValueType const &newValue)
Add a value to the buffer (overwrite oldest if full)
Definition RingBuffer.h:81
ValueType const & bottomAndClearAll()
Get the last recently added value.
Definition RingBuffer.h:172
ValueType const & bottom() const
Get the last recently added value.
Definition RingBuffer.h:160
ElementType ValueType
The type of the values/elements in this buffer.
Definition RingBuffer.h:68
uint16_t getSizeUsed() const
Get the number of items in the buffer.
Definition RingBuffer.h:214
ValueType & top()
The value on the top of the buffer.
Definition RingBuffer.h:119
ValueType pop()
The value on the top of the buffer.
Definition RingBuffer.h:146
static constexpr uint16_t SIZE
The size of the buffer.
Definition RingBuffer.h:73
bool isFull() const
Checks if the buffer is full.
Definition RingBuffer.h:206
ValueType & top(uint16_t const offset)
The value on the top of the buffer.
Definition RingBuffer.h:133
ValueType const & top(uint16_t const offset) const
The value on the top of the buffer.
Definition RingBuffer.h:106
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63