-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcirc_buffer.h
138 lines (129 loc) · 3.85 KB
/
circ_buffer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/// Copyright 2021 Piotr Grygorczuk <[email protected]>
///
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the "Software"), to deal
/// in the Software without restriction, including without limitation the rights
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/// copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in all
/// copies or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
/// THE SOFTWARE.
#ifndef CIRC_BUFFER_LIB_H_
#define CIRC_BUFFER_LIB_H_
#include <array>
namespace utils {
/// @brief Circular buffer
///
/// Circular buffer of elements of type T in a static array of fixed size N.
///
///
/// @tparam T - type of items
/// @tparam N - size of the container
template<class T, int N>
class CircBuffer {
std::array<T, N> _d{};
int _h{};
int _t{};
bool _full{};
public:
constexpr bool empty() const { return _h == _t && !_full; }
constexpr bool full() const { return _full; }
constexpr int size() const {
if (_full)
return N;
if (_h < _t)
return N - _t + _h;
return _h - _t;
}
constexpr void push(const T& e) {
if (_full)
return;
_d[_h++] = e;
if (_h == N)
_h = 0;
if (_h == _t)
_full = true;
}
constexpr void push(T&& e) {
if (_full)
return;
_d[_h++] = std::move(e);
if (_h == N)
_h = 0;
if (_h == _t)
_full = true;
}
constexpr void pop() {
if (empty())
return;
_d[_t++] = {};
_full = false;
if (_t == N)
_t = 0;
if (_t == _h)
_t = _h = 0;
}
constexpr T& back() {
if (_h == 0)
return _d[N - 1];
return _d[_h - 1];
}
constexpr const T& back() const {
if (_h == 0)
return _d[N - 1];
return _d[_h - 1];
}
constexpr T& front() {
return _d[_t];
}
constexpr const T& front() const {
return _d[_t];
}
constexpr T& operator[](int idx) {
idx %= N;
if (_t + idx >= N)
return _d[_t + idx - N];
return _d[_t + idx];
}
constexpr const T& operator[](int idx) const {
idx %= N;
if (_t + idx >= N)
return _d[_t + idx - N];
return _d[_t + idx];
}
template<class C, int K>
class iterator {
CircBuffer<C, K>* _cb;
int _idx;
public:
constexpr iterator(CircBuffer<C, K>& c, int idx) : _cb(&c), _idx(idx) {}
constexpr iterator& operator++() { _idx++; return *this; }
constexpr iterator operator++(int) { iterator ret = *this; ++(*this); return ret; }
constexpr T& operator*() { return (*_cb)[_idx]; }
constexpr bool operator==(iterator& other) { return _cb == other._cb && _idx == other._idx; }
constexpr bool operator!=(iterator& other) { return !(*this == other); }
};
constexpr iterator<T, N> begin() {
return { *this, _t };
}
constexpr const iterator<T, N> begin() const {
return { *this, _t };
}
constexpr iterator<T, N> end() {
return { *this, _h };
}
constexpr const iterator<T, N> end() const {
return { *this, _h };
}
};
} // namespace utils
#endif