This repository was archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathring_buffer.hpp
More file actions
460 lines (377 loc) · 10.7 KB
/
ring_buffer.hpp
File metadata and controls
460 lines (377 loc) · 10.7 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
//
// Fixed size ring buffer (circular buffer)
//
// Copyright(c) 2020 Chronimal. All rights reserved.
//
// Licensed under the MIT license; A copy of the license that can be
// found in the LICENSE file.
//
#ifndef RB_RING_BUFFER_HPP_INCLUDED
#define RB_RING_BUFFER_HPP_INCLUDED
// Configure namespace preference for RingBuffer.
// By default namespace utl is used.
#define RB_NAMESPACE_NAME utl
// clang-format off
#ifndef RB_BEGIN_NAMESPACE
#define RB_BEGIN_NAMESPACE namespace RB_NAMESPACE_NAME {
#endif // RB_BEGIN_NAMESPAC
#ifndef RB_END_NAMESPACE
#define RB_END_NAMESPACE }
#endif // RB_END_NAMESPACE
// clang-format on
#include <iterator>
#include <utility>
#include <memory>
RB_BEGIN_NAMESPACE
template<typename T, std::size_t N>
class RingBuffer;
template<class T, std::size_t N>
class RingBufferConstIterator
{
public:
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = std::ptrdiff_t;
using pointer = T const*;
using reference = T const&;
constexpr explicit RingBufferConstIterator(RingBuffer<T, N> const* rb, std::size_t current = 0)
: rb_{rb}
, current_{current}
{
}
[[nodiscard]] constexpr reference operator*() const
{
return (*rb_)[current_];
}
[[nodiscard]] constexpr pointer operator->() const
{
return &((*rb_)[current_]);
}
constexpr RingBufferConstIterator& operator++()
{
++current_;
return *this;
}
constexpr RingBufferConstIterator operator++(int)
{
RingBufferConstIterator temp{*this};
++current_;
return temp;
}
constexpr RingBufferConstIterator& operator--()
{
--current_;
return *this;
}
constexpr RingBufferConstIterator operator--(int)
{
RingBufferConstIterator temp{*this};
--current_;
return temp;
}
constexpr RingBufferConstIterator& operator+=(std::ptrdiff_t const offset)
{
current_ += offset;
return *this;
}
[[nodiscard]] constexpr RingBufferConstIterator operator+(std::ptrdiff_t const offset) const
{
RingBufferConstIterator temp{*this};
return temp += offset;
}
constexpr RingBufferConstIterator& operator-=(std::ptrdiff_t const offset)
{
current_ -= offset;
return *this;
}
[[nodiscard]] constexpr RingBufferConstIterator operator-(std::ptrdiff_t const offset) const
{
RingBufferConstIterator temp{*this};
return temp -= offset;
}
[[nodiscard]] constexpr std::ptrdiff_t operator-(RingBufferConstIterator const& rhs) const
{
return current_ - rhs.current_;
}
[[nodiscard]] constexpr reference operator[](std::ptrdiff_t const offset) const
{
return (*rb_)[offset];
}
[[nodiscard]] constexpr bool operator==(RingBufferConstIterator const& rhs) const
{
return current_ == rhs.current_;
}
[[nodiscard]] constexpr bool operator!=(RingBufferConstIterator const& rhs) const
{
return !(*this == rhs);
}
[[nodiscard]] constexpr bool operator<(RingBufferConstIterator const& rhs) const
{
return current_ < rhs.current_;
}
[[nodiscard]] constexpr bool operator>(RingBufferConstIterator const& rhs) const
{
return rhs < *this;
}
[[nodiscard]] constexpr bool operator<=(RingBufferConstIterator const& rhs) const
{
return !(rhs < *this);
}
[[nodiscard]] constexpr bool operator>=(RingBufferConstIterator const& rhs) const
{
return !(*this < rhs);
}
private:
RingBuffer<T, N> const* rb_;
std::size_t current_;
};
template<class T, std::size_t N>
class RingBufferIterator : public RingBufferConstIterator<T, N>
{
public:
using BaseClass = RingBufferConstIterator<T, N>;
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = std::ptrdiff_t;
using pointer = T*;
using reference = T&;
constexpr explicit RingBufferIterator(RingBuffer<T, N>* rb, std::size_t current = 0)
: BaseClass(rb, current)
{
}
[[nodiscard]] constexpr reference operator*() const
{
return const_cast<reference>(BaseClass::operator*());
}
[[nodiscard]] constexpr pointer operator->() const
{
return const_cast<pointer>(BaseClass::operator->());
}
constexpr RingBufferIterator& operator++()
{
BaseClass::operator++();
return *this;
}
constexpr RingBufferIterator operator++(int)
{
RingBufferIterator temp{*this};
BaseClass::operator++();
return temp;
}
constexpr RingBufferIterator& operator--()
{
BaseClass::operator--();
return *this;
}
constexpr RingBufferIterator operator--(int)
{
RingBufferIterator temp{*this};
BaseClass::operator--();
return temp;
}
constexpr RingBufferIterator& operator+=(std::ptrdiff_t const offset)
{
BaseClass::operator+=(offset);
return *this;
}
[[nodiscard]] constexpr RingBufferIterator operator+(std::ptrdiff_t const offset) const
{
RingBufferIterator temp{*this};
return temp += offset;
}
constexpr RingBufferIterator& operator-=(std::ptrdiff_t const offset)
{
BaseClass::operator-=(offset);
return *this;
}
using BaseClass::operator-;
[[nodiscard]] constexpr RingBufferIterator operator-(std::ptrdiff_t const offset) const
{
RingBufferIterator temp{*this};
return temp -= offset;
}
[[nodiscard]] constexpr reference operator[](std::ptrdiff_t const offset) const
{
return const_cast<reference>(BaseClass::operator[](offset));
}
};
template<typename T, std::size_t N>
class RingBuffer
{
public:
static_assert(N > 0, "Template argument N must not be zero");
using value_type = T;
using pointer = T*;
using const_pointer = T const*;
using reference = T&;
using const_reference = T const&;
using size_type = std::size_t;
using difference_type = std::ptrdiff_t;
using iterator = RingBufferIterator<T, N>;
using reverse_iterator = std::reverse_iterator<iterator>;
using const_iterator = RingBufferConstIterator<T, N>;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
RingBuffer() = default;
RingBuffer(RingBuffer&&) = delete;
RingBuffer(RingBuffer const&) = delete;
RingBuffer& operator=(RingBuffer&&) = delete;
RingBuffer& operator=(RingBuffer const&) = delete;
~RingBuffer() noexcept
{
clear();
}
template<typename... Args>
decltype(auto) emplace(Args&&... args)
{
auto element = std::construct_at(static_cast<T*>(storageAt(write_)), std::forward<Args>(args)...);
if (full())
{
destruct(increment(read_));
}
increment(write_);
return *element;
}
void push(T const& element)
{
emplace(element);
}
void push(T&& element)
{
emplace(std::move(element));
}
void pop() noexcept
{
destruct(increment(read_));
}
void clear() noexcept
{
while (!empty())
{
pop();
}
write_ = read_ = 0;
}
[[nodiscard]] reference front() noexcept
{
return *objectAt(read_);
}
[[nodiscard]] const_reference front() const noexcept
{
return *objectAt(read_);
}
[[nodiscard]] reference back() noexcept
{
return *objectAt(previousIndex(write_));
}
[[nodiscard]] const_reference back() const noexcept
{
return *objectAt(previousIndex(write_));
}
[[nodiscard]] reference operator[](size_type const index) noexcept
{
return *objectAt(calculateIndex(read_ + index));
}
[[nodiscard]] const_reference operator[](size_type const index) const noexcept
{
return *objectAt(calculateIndex(read_ + index));
}
[[nodiscard]] iterator begin() noexcept
{
return iterator{this};
}
[[nodiscard]] const_iterator begin() const noexcept
{
return const_iterator{this};
}
[[nodiscard]] const_iterator cbegin() const noexcept
{
return begin();
}
[[nodiscard]] iterator end() noexcept
{
return iterator{this, size()};
}
[[nodiscard]] const_iterator end() const noexcept
{
return const_iterator{this, size()};
}
[[nodiscard]] const_iterator cend() const noexcept
{
return end();
}
[[nodiscard]] reverse_iterator rbegin() noexcept
{
return reverse_iterator(end());
}
[[nodiscard]] const_reverse_iterator rbegin() const noexcept
{
return const_reverse_iterator(end());
}
[[nodiscard]] const_reverse_iterator crbegin() const noexcept
{
return rbegin();
}
[[nodiscard]] reverse_iterator rend() noexcept
{
return reverse_iterator(begin());
}
[[nodiscard]] const_reverse_iterator rend() const noexcept
{
return const_reverse_iterator(begin());
}
[[nodiscard]] const_reverse_iterator crend() const noexcept
{
return rend();
}
[[nodiscard]] size_type size() const noexcept
{
return (write_ - read_ + N + 1) % (N + 1);
}
[[nodiscard]] size_type capacity() const noexcept
{
return N;
}
[[nodiscard]] bool empty() const noexcept
{
return read_ == write_;
}
[[nodiscard]] bool full() const noexcept
{
return calculateIndex(write_ + 1) == read_;
}
private:
std::ptrdiff_t read_{}; // Storage index of object referenced by front()
std::ptrdiff_t write_{}; // Storage index to created the next object in
std::aligned_storage_t<sizeof(T), alignof(T)> storage_[N + 1];
// index must be zero or higher
auto calculateIndex(std::ptrdiff_t index) const noexcept
{
return index % (N + 1);
}
auto previousIndex(std::ptrdiff_t index) const noexcept
{
return (index + N) % (N + 1);
}
auto increment(std::ptrdiff_t& index) noexcept
{
return std::exchange(index, calculateIndex(index + 1));
}
T* objectAt(std::ptrdiff_t index) noexcept
{
return std::launder(static_cast<T*>(static_cast<void*>(&storage_[index])));
}
T const* objectAt(std::ptrdiff_t index) const noexcept
{
return std::launder(static_cast<T const*>(static_cast<void const*>(&storage_[index])));
}
void* storageAt(std::ptrdiff_t index) noexcept
{
return static_cast<void*>(&storage_[index]);
}
void destruct(std::ptrdiff_t index) noexcept
{
std::destroy_at(objectAt(index));
}
};
RB_END_NAMESPACE
#endif // RB_RING_BUFFER_HPP_INCLUDED