Introduce Bulker

This commit is contained in:
Alexander A. Klimov 2022-01-19 16:28:07 +01:00
parent ab70178bb3
commit 9a8d388734
2 changed files with 106 additions and 0 deletions

View File

@ -19,6 +19,7 @@ set(base_SOURCES
atomic.hpp
base64.cpp base64.hpp
boolean.cpp boolean.hpp boolean-script.cpp
bulker.hpp
configobject.cpp configobject.hpp configobject-ti.hpp configobject-script.cpp
configtype.cpp configtype.hpp
configuration.cpp configuration.hpp configuration-ti.hpp

105
lib/base/bulker.hpp Normal file
View File

@ -0,0 +1,105 @@
/* Icinga 2 | (c) 2022 Icinga GmbH | GPLv2+ */
#ifndef BULKER_H
#define BULKER_H
#include <boost/config.hpp>
#include <chrono>
#include <condition_variable>
#include <mutex>
#include <queue>
#include <utility>
#include <vector>
namespace icinga
{
/**
* A queue which outputs the input as bulks of a defined size
* or after a defined time, whichever is reached first
*
* @ingroup base
*/
template<class T>
class Bulker
{
private:
typedef std::chrono::steady_clock Clock;
public:
typedef std::vector<T> Container;
typedef typename Container::size_type SizeType;
typedef typename Clock::duration Duration;
Bulker(SizeType bulkSize, Duration threshold)
: m_BulkSize(bulkSize), m_Threshold(threshold), m_NextConsumption(NullTimePoint()) { }
void ProduceOne(T needle);
Container ConsumeMany();
private:
typedef std::chrono::time_point<Clock> TimePoint;
static inline
TimePoint NullTimePoint()
{
return TimePoint::min();
}
inline void UpdateNextConsumption()
{
m_NextConsumption = Clock::now() + m_Threshold;
}
const SizeType m_BulkSize;
const Duration m_Threshold;
std::mutex m_Mutex;
std::condition_variable m_CV;
std::queue<Container> m_Bulks;
TimePoint m_NextConsumption;
};
template<class T>
void Bulker<T>::ProduceOne(T needle)
{
std::unique_lock<std::mutex> lock (m_Mutex);
if (m_Bulks.empty() || m_Bulks.back().size() == m_BulkSize) {
m_Bulks.emplace();
}
m_Bulks.back().emplace_back(std::move(needle));
if (m_Bulks.size() == 1u && m_Bulks.back().size() == m_BulkSize) {
m_CV.notify_one();
}
}
template<class T>
typename Bulker<T>::Container Bulker<T>::ConsumeMany()
{
std::unique_lock<std::mutex> lock (m_Mutex);
if (BOOST_UNLIKELY(m_NextConsumption == NullTimePoint())) {
UpdateNextConsumption();
}
auto deadline (m_NextConsumption);
m_CV.wait_until(lock, deadline, [this]() { return !m_Bulks.empty() && m_Bulks.front().size() == m_BulkSize; });
UpdateNextConsumption();
if (m_Bulks.empty()) {
return Container();
}
auto haystack (std::move(m_Bulks.front()));
m_Bulks.pop();
return haystack;
}
}
#endif /* BULKER_H */