icinga2/lib/base/ringbuffer.cpp

92 lines
1.9 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2014-05-25 16:23:35 +02:00
#include "base/ringbuffer.hpp"
#include "base/objectlock.hpp"
#include "base/utility.hpp"
#include <algorithm>
2012-06-28 15:43:49 +02:00
using namespace icinga;
2012-08-07 21:02:12 +02:00
RingBuffer::RingBuffer(RingBuffer::SizeType slots)
: m_Slots(slots, 0), m_TimeValue(0), m_InsertedValues(0)
2012-06-28 15:43:49 +02:00
{ }
RingBuffer::SizeType RingBuffer::GetLength() const
2012-06-28 15:43:49 +02:00
{
2021-02-02 10:16:04 +01:00
std::unique_lock<std::mutex> lock(m_Mutex);
2012-06-28 15:43:49 +02:00
return m_Slots.size();
}
2012-08-07 21:02:12 +02:00
void RingBuffer::InsertValue(RingBuffer::SizeType tv, int num)
2012-06-28 15:43:49 +02:00
{
2021-02-02 10:16:04 +01:00
std::unique_lock<std::mutex> lock(m_Mutex);
InsertValueUnlocked(tv, num);
}
2013-03-01 12:07:52 +01:00
void RingBuffer::InsertValueUnlocked(RingBuffer::SizeType tv, int num)
{
2013-03-06 11:03:50 +01:00
RingBuffer::SizeType offsetTarget = tv % m_Slots.size();
2012-06-28 15:43:49 +02:00
if (m_TimeValue == 0)
m_InsertedValues = 1;
2013-02-18 23:44:24 +01:00
if (tv > m_TimeValue) {
2013-03-06 11:03:50 +01:00
RingBuffer::SizeType offset = m_TimeValue % m_Slots.size();
2012-06-28 15:43:49 +02:00
2013-02-18 23:44:24 +01:00
/* walk towards the target offset, resetting slots to 0 */
while (offset != offsetTarget) {
offset++;
2012-06-28 15:43:49 +02:00
2013-02-18 23:44:24 +01:00
if (offset >= m_Slots.size())
offset = 0;
m_Slots[offset] = 0;
if (m_TimeValue != 0 && m_InsertedValues < m_Slots.size())
m_InsertedValues++;
2013-02-18 23:44:24 +01:00
}
m_TimeValue = tv;
2012-06-28 15:43:49 +02:00
}
2013-02-18 23:44:24 +01:00
m_Slots[offsetTarget] += num;
2012-06-28 15:43:49 +02:00
}
int RingBuffer::UpdateAndGetValues(RingBuffer::SizeType tv, RingBuffer::SizeType span)
2012-06-28 15:43:49 +02:00
{
2021-02-02 10:16:04 +01:00
std::unique_lock<std::mutex> lock(m_Mutex);
2013-03-01 12:07:52 +01:00
return UpdateAndGetValuesUnlocked(tv, span);
}
int RingBuffer::UpdateAndGetValuesUnlocked(RingBuffer::SizeType tv, RingBuffer::SizeType span)
{
InsertValueUnlocked(tv, 0);
2012-06-28 15:43:49 +02:00
if (span > m_Slots.size())
span = m_Slots.size();
int off = m_TimeValue % m_Slots.size();
2012-06-28 15:43:49 +02:00
int sum = 0;
while (span > 0) {
sum += m_Slots[off];
if (off == 0)
off = m_Slots.size();
off--;
span--;
}
return sum;
}
double RingBuffer::CalculateRate(RingBuffer::SizeType tv, RingBuffer::SizeType span)
{
2021-02-02 10:16:04 +01:00
std::unique_lock<std::mutex> lock(m_Mutex);
int sum = UpdateAndGetValuesUnlocked(tv, span);
return sum / static_cast<double>(std::min(span, m_InsertedValues));
}