2013-09-18 09:09:16 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:27:04 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2013-09-18 09:09:16 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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"
|
2013-10-17 10:19:17 +02:00
|
|
|
#include <boost/thread/thread.hpp>
|
2013-09-18 09:09:16 +02:00
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
#include <boost/thread/condition_variable.hpp>
|
2016-08-31 13:43:14 +02:00
|
|
|
#include <boost/exception_ptr.hpp>
|
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
|
|
|
|
{
|
|
|
|
PriorityLow,
|
|
|
|
PriorityNormal,
|
|
|
|
PriorityHigh
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2015-09-02 09:16:20 +02:00
|
|
|
WorkQueue(size_t maxItems = 0, int threadCount = 1);
|
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
|
|
|
|
2018-01-06 04:36:58 +01:00
|
|
|
boost::mutex::scoped_lock AcquireLock();
|
|
|
|
void EnqueueUnlocked(boost::mutex::scoped_lock& lock, TaskFunction&& function, WorkQueuePriority priority = PriorityNormal);
|
|
|
|
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;
|
2014-12-18 15:11:57 +01:00
|
|
|
void ReportExceptions(const String& facility) 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
|
|
|
|
2014-12-18 15:11:57 +01:00
|
|
|
mutable boost::mutex m_Mutex;
|
2013-11-29 17:07:04 +01:00
|
|
|
boost::condition_variable m_CVEmpty;
|
|
|
|
boost::condition_variable m_CVFull;
|
2013-12-10 21:44:38 +01:00
|
|
|
boost::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;
|
|
|
|
|
|
|
|
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 */
|