aboutsummaryrefslogtreecommitdiffstats
path: root/source/circular.hpp
diff options
context:
space:
mode:
authorClyne <clyne@bitgloo.com>2022-05-24 17:38:05 -0400
committerClyne <clyne@bitgloo.com>2022-05-24 17:38:05 -0400
commit5902a67796000c7546d07fa778b26619c4588c3a (patch)
tree1c1fa04635a3c248d07fde4dce8857885ca23952 /source/circular.hpp
parent1cf4908a23dc5537be0bab1089ffcaa7079d5434 (diff)
parentdff847ff4455e7b8c5123167a7d01afe7c45f585 (diff)
Merge pull request 'devel: Ready for pre-release' (#1) from devel into masterv0.1
Reviewed-on: https://code.bitgloo.com/clyne/stmdspgui/pulls/1
Diffstat (limited to 'source/circular.hpp')
-rw-r--r--source/circular.hpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/source/circular.hpp b/source/circular.hpp
new file mode 100644
index 0000000..4f49322
--- /dev/null
+++ b/source/circular.hpp
@@ -0,0 +1,48 @@
+/**
+ * @file circular.hpp
+ * @brief Small utility for filling a buffer in a circular manner.
+ *
+ * Copyright (C) 2021 Clyne Sullivan
+ *
+ * Distributed under the GNU GPL v3 or later. You should have received a copy of
+ * the GNU General Public License along with this program.
+ * If not, see <https://www.gnu.org/licenses/>.
+ */
+
+#ifndef CIRCULAR_HPP
+#define CIRCULAR_HPP
+
+#include <iterator>
+
+template<template<typename> class Container, typename T>
+class CircularBuffer
+{
+public:
+ CircularBuffer(Container<T>& container) :
+ m_begin(std::begin(container)),
+ m_end(std::end(container)),
+ m_current(m_begin) {}
+
+ void put(const T& value) noexcept {
+ *m_current = value;
+ if (++m_current == m_end)
+ m_current = m_begin;
+ }
+
+ std::size_t size() const noexcept {
+ return std::distance(m_begin, m_end);
+ }
+
+ void reset(const T& fill) noexcept {
+ std::fill(m_begin, m_end, fill);
+ m_current = m_begin;
+ }
+
+private:
+ Container<T>::iterator m_begin;
+ Container<T>::iterator m_end;
+ Container<T>::iterator m_current;
+};
+
+#endif // CIRCULAR_HPP
+