icinga2/lib/base/threadpool.hpp

137 lines
3.3 KiB
C++
Raw Normal View History

2012-06-24 02:56:48 +02:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
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/function.hpp>
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition_variable.hpp>
#include <deque>
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
*/
2013-03-25 18:36:15 +01:00
class I2_BASE_API ThreadPool
2012-06-24 02:56:48 +02:00
{
public:
2013-03-25 18:36:15 +01:00
typedef boost::function<void ()> WorkFunction;
ThreadPool(size_t max_threads = UINT_MAX);
2013-03-25 18:36:15 +01:00
~ThreadPool(void);
2012-06-24 02:56:48 +02:00
void Start(void);
2013-02-15 06:47:26 +01:00
void Stop(void);
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;
2013-08-27 15:57:00 +02:00
bool Zombie;
double Utilization;
double LastUpdate;
boost::thread *Thread;
WorkerThread(ThreadState state = ThreadDead)
: State(state), Zombie(false), Utilization(0), LastUpdate(0), Thread(NULL)
{ }
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;
double ServiceTime;
int TaskCount;
2012-06-24 02:56:48 +02:00
bool Stopped;
2013-03-23 20:38:41 +01:00
WorkerThread Threads[16];
2013-02-17 19:14:34 +01:00
Queue(void)
: WaitTime(0), ServiceTime(0), TaskCount(0), Stopped(false)
{ }
2013-03-25 18:36:15 +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
2014-11-13 10:00:49 +01:00
boost::thread m_MgmtThread;
boost::mutex m_MgmtMutex;
boost::condition_variable m_MgmtCV;
bool m_Stopped;
Queue m_Queues[QUEUECOUNT];
void ManagerThreadProc(void);
2012-06-24 02:56:48 +02:00
};
}
2013-02-15 06:47:26 +01:00
#endif /* EVENTQUEUE_H */