2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-09-18 09:09:16 +02:00
|
|
|
|
|
|
|
#ifndef WORKQUEUE_H
|
|
|
|
#define WORKQUEUE_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/timer.hpp"
|
2017-05-16 12:54:37 +02:00
|
|
|
#include "base/ringbuffer.hpp"
|
2020-09-14 17:09:11 +02:00
|
|
|
#include "base/logger.hpp"
|
2013-10-17 10:19:17 +02:00
|
|
|
#include <boost/thread/thread.hpp>
|
2016-08-31 13:43:14 +02:00
|
|
|
#include <boost/exception_ptr.hpp>
|
2021-02-02 10:16:04 +01:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
2015-12-10 16:54:43 +01:00
|
|
|
#include <queue>
|
2015-03-29 00:03:47 +01:00
|
|
|
#include <deque>
|
2017-12-14 08:47:04 +01:00
|
|
|
#include <atomic>
|
2013-09-18 09:09:16 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-12-10 16:54:43 +01:00
|
|
|
enum WorkQueuePriority
|
|
|
|
{
|
2019-03-29 15:53:56 +01:00
|
|
|
PriorityLow = 0,
|
|
|
|
PriorityNormal = 1,
|
|
|
|
PriorityHigh = 2,
|
|
|
|
PriorityImmediate = 4
|
2015-12-10 16:54:43 +01:00
|
|
|
};
|
|
|
|
|
2018-01-06 04:36:58 +01:00
|
|
|
using TaskFunction = std::function<void ()>;
|
|
|
|
|
2015-12-10 16:54:43 +01:00
|
|
|
struct Task
|
|
|
|
{
|
2018-01-04 09:43:49 +01:00
|
|
|
Task() = default;
|
2015-12-10 16:54:43 +01:00
|
|
|
|
2018-01-06 04:36:58 +01:00
|
|
|
Task(TaskFunction function, WorkQueuePriority priority, int id)
|
2017-12-19 15:50:05 +01:00
|
|
|
: Function(std::move(function)), Priority(priority), ID(id)
|
2015-12-10 16:54:43 +01:00
|
|
|
{ }
|
|
|
|
|
2018-01-06 04:36:58 +01:00
|
|
|
TaskFunction Function;
|
2018-01-04 09:43:49 +01:00
|
|
|
WorkQueuePriority Priority{PriorityNormal};
|
|
|
|
int ID{-1};
|
2015-12-10 16:54:43 +01:00
|
|
|
};
|
|
|
|
|
2018-01-04 10:36:35 +01:00
|
|
|
bool operator<(const Task& a, const Task& b);
|
2013-11-28 10:36:43 +01:00
|
|
|
|
2013-09-18 09:09:16 +02:00
|
|
|
/**
|
|
|
|
* A workqueue.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class WorkQueue
|
2013-09-18 09:09:16 +02:00
|
|
|
{
|
|
|
|
public:
|
2017-11-21 11:52:55 +01:00
|
|
|
typedef std::function<void (boost::exception_ptr)> ExceptionCallback;
|
2013-09-18 09:09:16 +02:00
|
|
|
|
2020-09-14 17:09:11 +02:00
|
|
|
WorkQueue(size_t maxItems = 0, int threadCount = 1, LogSeverity statsLogLevel = LogInformation);
|
2018-01-04 04:25:35 +01:00
|
|
|
~WorkQueue();
|
2013-09-18 09:09:16 +02:00
|
|
|
|
2016-06-14 08:19:13 +02:00
|
|
|
void SetName(const String& name);
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetName() const;
|
2016-06-14 08:19:13 +02:00
|
|
|
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> AcquireLock();
|
|
|
|
void EnqueueUnlocked(std::unique_lock<std::mutex>& lock, TaskFunction&& function, WorkQueuePriority priority = PriorityNormal);
|
2018-01-06 04:36:58 +01:00
|
|
|
void Enqueue(TaskFunction&& function, WorkQueuePriority priority = PriorityNormal,
|
2017-12-19 15:50:05 +01:00
|
|
|
bool allowInterleaved = false);
|
2013-12-10 21:44:38 +01:00
|
|
|
void Join(bool stop = false);
|
2013-09-18 09:09:16 +02:00
|
|
|
|
2018-01-06 04:36:58 +01:00
|
|
|
template<typename VectorType, typename FuncType>
|
|
|
|
void ParallelFor(const VectorType& items, const FuncType& func)
|
|
|
|
{
|
|
|
|
using SizeType = decltype(items.size());
|
|
|
|
|
|
|
|
SizeType totalCount = items.size();
|
|
|
|
|
|
|
|
auto lock = AcquireLock();
|
|
|
|
|
|
|
|
SizeType offset = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < m_ThreadCount; i++) {
|
|
|
|
SizeType count = totalCount / static_cast<SizeType>(m_ThreadCount);
|
|
|
|
if (static_cast<SizeType>(i) < totalCount % static_cast<SizeType>(m_ThreadCount))
|
|
|
|
count++;
|
|
|
|
|
|
|
|
EnqueueUnlocked(lock, [&items, func, offset, count, this]() {
|
|
|
|
for (SizeType j = offset; j < offset + count; j++) {
|
|
|
|
RunTaskFunction([&func, &items, j]() {
|
|
|
|
func(items[j]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
offset += count;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(offset == items.size());
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool IsWorkerThread() const;
|
2014-12-18 15:11:57 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
size_t GetLength() const;
|
2017-12-14 08:47:04 +01:00
|
|
|
size_t GetTaskCount(RingBuffer::SizeType span);
|
2013-10-30 13:13:09 +01:00
|
|
|
|
2013-11-05 12:40:25 +01:00
|
|
|
void SetExceptionCallback(const ExceptionCallback& callback);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool HasExceptions() const;
|
|
|
|
std::vector<boost::exception_ptr> GetExceptions() const;
|
2019-06-19 14:26:34 +02:00
|
|
|
void ReportExceptions(const String& facility, bool verbose = false) const;
|
2014-02-18 10:53:44 +01:00
|
|
|
|
2017-05-16 12:54:37 +02:00
|
|
|
protected:
|
2018-01-04 04:25:35 +01:00
|
|
|
void IncreaseTaskCount();
|
2017-05-16 12:54:37 +02:00
|
|
|
|
2013-09-18 09:09:16 +02:00
|
|
|
private:
|
2013-10-17 10:19:17 +02:00
|
|
|
int m_ID;
|
2016-06-14 08:19:13 +02:00
|
|
|
String m_Name;
|
2017-12-14 08:47:04 +01:00
|
|
|
static std::atomic<int> m_NextID;
|
2014-12-18 15:11:57 +01:00
|
|
|
int m_ThreadCount;
|
2018-01-04 09:43:49 +01:00
|
|
|
bool m_Spawned{false};
|
2013-10-17 10:19:17 +02:00
|
|
|
|
2021-02-02 10:16:04 +01:00
|
|
|
mutable std::mutex m_Mutex;
|
|
|
|
std::condition_variable m_CVEmpty;
|
|
|
|
std::condition_variable m_CVFull;
|
|
|
|
std::condition_variable m_CVStarved;
|
2014-12-18 15:11:57 +01:00
|
|
|
boost::thread_group m_Threads;
|
2013-09-21 17:53:14 +02:00
|
|
|
size_t m_MaxItems;
|
2018-01-04 09:43:49 +01:00
|
|
|
bool m_Stopped{false};
|
|
|
|
int m_Processing{0};
|
2015-12-10 16:54:43 +01:00
|
|
|
std::priority_queue<Task, std::deque<Task> > m_Tasks;
|
2018-01-04 09:43:49 +01:00
|
|
|
int m_NextTaskID{0};
|
2013-11-05 12:40:25 +01:00
|
|
|
ExceptionCallback m_ExceptionCallback;
|
2016-08-31 13:43:14 +02:00
|
|
|
std::vector<boost::exception_ptr> m_Exceptions;
|
2013-11-29 17:07:04 +01:00
|
|
|
Timer::Ptr m_StatusTimer;
|
2017-05-16 12:54:37 +02:00
|
|
|
double m_StatusTimerTimeout;
|
2020-09-14 17:09:11 +02:00
|
|
|
LogSeverity m_StatsLogLevel;
|
2017-05-16 12:54:37 +02:00
|
|
|
|
|
|
|
RingBuffer m_TaskStats;
|
2018-01-04 09:43:49 +01:00
|
|
|
size_t m_PendingTasks{0};
|
|
|
|
double m_PendingTasksTimestamp{0};
|
2013-09-18 09:09:16 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void WorkerThreadProc();
|
|
|
|
void StatusTimerHandler();
|
2018-01-06 04:36:58 +01:00
|
|
|
|
|
|
|
void RunTaskFunction(const TaskFunction& func);
|
2013-12-10 21:44:38 +01:00
|
|
|
};
|
|
|
|
|
2013-09-18 09:09:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WORKQUEUE_H */
|