|
|
|
@ -7,62 +7,101 @@
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace spdlog {
|
|
|
|
|
namespace details {
|
|
|
|
|
template<typename T>
|
|
|
|
|
class circular_q
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
using item_type = T;
|
|
|
|
|
|
|
|
|
|
explicit circular_q(size_t max_items)
|
|
|
|
|
: max_items_(max_items + 1) // one item is reserved as marker for full q
|
|
|
|
|
, v_(max_items_)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
// push back, overrun (oldest) item if no room left
|
|
|
|
|
void push_back(T &&item)
|
|
|
|
|
{
|
|
|
|
|
v_[tail_] = std::move(item);
|
|
|
|
|
tail_ = (tail_ + 1) % max_items_;
|
|
|
|
|
|
|
|
|
|
if (tail_ == head_) // overrun last item if full
|
|
|
|
|
namespace details {
|
|
|
|
|
template<typename T>
|
|
|
|
|
class circular_q
|
|
|
|
|
{
|
|
|
|
|
head_ = (head_ + 1) % max_items_;
|
|
|
|
|
++overrun_counter_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Pop item from front.
|
|
|
|
|
// If there are no elements in the container, the behavior is undefined.
|
|
|
|
|
void pop_front(T &popped_item)
|
|
|
|
|
{
|
|
|
|
|
popped_item = std::move(v_[head_]);
|
|
|
|
|
head_ = (head_ + 1) % max_items_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool empty()
|
|
|
|
|
{
|
|
|
|
|
return tail_ == head_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool full()
|
|
|
|
|
{
|
|
|
|
|
// head is ahead of the tail by 1
|
|
|
|
|
return ((tail_ + 1) % max_items_) == head_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t overrun_counter() const
|
|
|
|
|
{
|
|
|
|
|
return overrun_counter_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
size_t max_items_;
|
|
|
|
|
typename std::vector<T>::size_type head_ = 0;
|
|
|
|
|
typename std::vector<T>::size_type tail_ = 0;
|
|
|
|
|
size_t overrun_counter_ = 0;
|
|
|
|
|
std::vector<T> v_;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
} // namespace details
|
|
|
|
|
public:
|
|
|
|
|
using item_type = T;
|
|
|
|
|
|
|
|
|
|
// empty cir
|
|
|
|
|
circular_q() = default;
|
|
|
|
|
|
|
|
|
|
explicit circular_q(size_t max_items)
|
|
|
|
|
: max_items_(max_items + 1) // one item is reserved as marker for full q
|
|
|
|
|
, v_(max_items_)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
circular_q(const circular_q&) = default;
|
|
|
|
|
circular_q& operator=(const circular_q&) = default;
|
|
|
|
|
|
|
|
|
|
// move cannot be default,
|
|
|
|
|
// since we need to reset head_, tail_, etc to zero in the moved object
|
|
|
|
|
circular_q(circular_q&& other) SPDLOG_NOEXCEPT:
|
|
|
|
|
{
|
|
|
|
|
copy_moveable(std::move(other));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
circular_q& operator=(circular_q&& other) SPDLOG_NOEXCEPT
|
|
|
|
|
{
|
|
|
|
|
copy_moveable(std::move(other));
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// push back, overrun (oldest) item if no room left
|
|
|
|
|
void push_back(T &&item)
|
|
|
|
|
{
|
|
|
|
|
if(max_items_ > 0)
|
|
|
|
|
{
|
|
|
|
|
v_[tail_] = std::move(item);
|
|
|
|
|
tail_ = (tail_ + 1) % max_items_;
|
|
|
|
|
|
|
|
|
|
if (tail_ == head_) // overrun last item if full
|
|
|
|
|
{
|
|
|
|
|
head_ = (head_ + 1) % max_items_;
|
|
|
|
|
++overrun_counter_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Pop item from front.
|
|
|
|
|
// If there are no elements in the container, the behavior is undefined.
|
|
|
|
|
void pop_front(T &popped_item)
|
|
|
|
|
{
|
|
|
|
|
if(max_items_ > 0)
|
|
|
|
|
{
|
|
|
|
|
popped_item = std::move(v_[head_]);
|
|
|
|
|
head_ = (head_ + 1) % max_items_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool empty()
|
|
|
|
|
{
|
|
|
|
|
return tail_ == head_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool full()
|
|
|
|
|
{
|
|
|
|
|
// head is ahead of the tail by 1
|
|
|
|
|
return ((tail_ + 1) % max_items_) == head_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t overrun_counter() const
|
|
|
|
|
{
|
|
|
|
|
return overrun_counter_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
size_t max_items_ = 0;
|
|
|
|
|
typename std::vector<T>::size_type head_ = 0;
|
|
|
|
|
typename std::vector<T>::size_type tail_ = 0;
|
|
|
|
|
size_t overrun_counter_ = 0;
|
|
|
|
|
std::vector<T> v_;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void copy_moveable(circular_q&& other) SPDLOG_NOEXCEPT
|
|
|
|
|
{
|
|
|
|
|
max_items_ = other.max_items_;
|
|
|
|
|
head_ = other.head_;
|
|
|
|
|
tail_ = other.tail_;
|
|
|
|
|
overrun_counter_ = other.overrun_counter_,
|
|
|
|
|
v_ = std::move(other.v_);
|
|
|
|
|
other.max_items_ = 0; // disable other
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
} // namespace details
|
|
|
|
|
} // namespace spdlog
|
|
|
|
|