icinga2/lib/base/ringbuffer.hpp

46 lines
893 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2012-06-28 15:43:49 +02:00
#ifndef RINGBUFFER_H
#define RINGBUFFER_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/object.hpp"
#include <boost/thread/mutex.hpp>
2013-03-16 21:18:53 +01:00
#include <vector>
2012-06-28 15:43:49 +02:00
namespace icinga
{
2012-09-17 13:35:55 +02:00
/**
* A ring buffer that holds a pre-defined number of integers.
*
* @ingroup base
*/
class RingBuffer final
2012-06-28 15:43:49 +02:00
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(RingBuffer);
2013-03-01 12:07:52 +01:00
2013-03-16 21:18:53 +01:00
typedef std::vector<int>::size_type SizeType;
2012-06-28 15:43:49 +02:00
2012-08-07 21:02:12 +02:00
RingBuffer(SizeType slots);
SizeType GetLength() const;
2012-08-07 21:02:12 +02:00
void InsertValue(SizeType tv, int num);
int UpdateAndGetValues(SizeType tv, SizeType span);
double CalculateRate(SizeType tv, SizeType span);
2012-06-28 15:43:49 +02:00
private:
mutable boost::mutex m_Mutex;
2013-03-16 21:18:53 +01:00
std::vector<int> m_Slots;
2013-03-06 11:03:50 +01:00
SizeType m_TimeValue;
SizeType m_InsertedValues;
void InsertValueUnlocked(SizeType tv, int num);
int UpdateAndGetValuesUnlocked(SizeType tv, SizeType span);
2012-06-28 15:43:49 +02:00
};
}
#endif /* RINGBUFFER_H */