icinga2/lib/base/threadpool.hpp

133 lines
3.2 KiB
C++
Raw Normal View History

2012-06-24 02:56:48 +02:00
/******************************************************************************
* Icinga 2 *
2018-01-02 12:06:00 +01:00
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
2012-06-24 02:56:48 +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. *
******************************************************************************/
2013-03-25 18:36:15 +01:00
#ifndef THREADPOOL_H
#define THREADPOOL_H
2012-06-24 02:56:48 +02:00
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
2013-03-15 18:21:29 +01:00
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition_variable.hpp>
#include <deque>
2017-11-21 12:12:58 +01:00
#include <thread>
2013-03-15 18:21:29 +01:00
2012-06-24 02:56:48 +02:00
namespace icinga
{
#define QUEUECOUNT 4U
enum SchedulerPolicy
{
DefaultScheduler,
LowLatencyScheduler
};
2012-09-17 13:35:55 +02:00
/**
2013-03-25 18:36:15 +01:00
* A thread pool.
2012-09-17 13:35:55 +02:00
*
* @ingroup base
*/
2017-12-31 07:22:16 +01:00
class ThreadPool
2012-06-24 02:56:48 +02:00
{
public:
typedef std::function<void ()> WorkFunction;
2013-03-25 18:36:15 +01:00
ThreadPool(size_t max_threads = UINT_MAX);
~ThreadPool();
2012-06-24 02:56:48 +02:00
void Start();
void Stop();
2013-02-18 14:40:24 +01:00
bool Post(const WorkFunction& callback, SchedulerPolicy policy = DefaultScheduler);
2012-06-24 02:56:48 +02:00
2013-02-15 06:47:26 +01:00
private:
2013-03-25 18:36:15 +01:00
enum ThreadState
{
ThreadUnspecified,
2013-03-25 18:36:15 +01:00
ThreadDead,
ThreadIdle,
ThreadBusy
};
struct WorkItem
{
WorkFunction Callback;
double Timestamp;
};
struct Queue;
struct WorkerThread
{
ThreadState State{ThreadDead};
bool Zombie{false};
double Utilization{0};
double LastUpdate{0};
boost::thread *Thread{nullptr};
WorkerThread(ThreadState state = ThreadDead)
: State(state)
{ }
void UpdateUtilization(ThreadState state = ThreadUnspecified);
void ThreadProc(Queue& queue);
};
struct Queue
{
boost::mutex Mutex;
boost::condition_variable CV;
boost::condition_variable CVStarved;
std::deque<WorkItem> Items;
2013-04-19 12:58:16 +02:00
double WaitTime{0};
double ServiceTime{0};
int TaskCount{0};
2012-06-24 02:56:48 +02:00
bool Stopped{false};
2013-03-23 20:38:41 +01:00
WorkerThread Threads[16];
2013-02-17 19:14:34 +01:00
void SpawnWorker(boost::thread_group& group);
void KillWorker(boost::thread_group& group);
2013-03-25 18:36:15 +01:00
};
int m_ID;
static int m_NextID;
2013-03-25 18:36:15 +01:00
size_t m_MaxThreads;
2013-02-17 19:14:34 +01:00
boost::thread_group m_ThreadGroup;
2013-03-23 12:23:13 +01:00
2017-11-21 12:12:58 +01:00
std::thread m_MgmtThread;
boost::mutex m_MgmtMutex;
boost::condition_variable m_MgmtCV;
bool m_Stopped{true};
Queue m_Queues[QUEUECOUNT];
void ManagerThreadProc();
2012-06-24 02:56:48 +02:00
};
}
2013-02-15 06:47:26 +01:00
#endif /* EVENTQUEUE_H */