icinga2/lib/base/eventqueue.cpp

138 lines
3.6 KiB
C++
Raw Normal View History

2012-06-24 02:56:48 +02:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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. *
******************************************************************************/
#include "i2-base.h"
using namespace icinga;
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
2013-02-15 06:47:26 +01:00
EventQueue::EventQueue(void)
2013-02-20 19:52:25 +01:00
: m_Stopped(false), m_LastReport(0)
2013-02-18 14:40:24 +01:00
{
2013-02-19 12:17:31 +01:00
int thread_count = thread::hardware_concurrency();
2013-02-18 14:40:24 +01:00
2013-02-19 12:17:31 +01:00
if (thread_count < 4)
thread_count = 4;
2013-02-18 14:40:24 +01:00
2013-02-19 12:17:31 +01:00
for (int i = 0; i < thread_count; i++)
2013-02-18 14:40:24 +01:00
m_Threads.create_thread(boost::bind(&EventQueue::QueueThreadProc, this));
2013-02-26 10:13:54 +01:00
m_ReportTimer = boost::make_shared<Timer>();
m_ReportTimer->OnTimerExpired.connect(boost::bind(&EventQueue::ReportTimerHandler, this));
m_ReportTimer->SetInterval(5);
m_ReportTimer->Start();
2013-02-18 14:40:24 +01:00
}
2012-07-13 23:33:30 +02:00
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
EventQueue::~EventQueue(void)
2013-02-15 06:47:26 +01:00
{
2013-02-26 10:13:54 +01:00
m_ReportTimer->Stop();
2013-02-17 19:14:34 +01:00
Stop();
2013-02-18 14:40:24 +01:00
Join();
2013-02-15 06:47:26 +01:00
}
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
2013-02-15 06:47:26 +01:00
void EventQueue::Stop(void)
{
boost::mutex::scoped_lock lock(m_Mutex);
m_Stopped = true;
2013-02-17 19:14:34 +01:00
m_CV.notify_all();
2013-02-15 06:47:26 +01:00
}
2012-09-14 14:41:17 +02:00
/**
2013-02-18 14:40:24 +01:00
* Waits for all worker threads to finish.
2012-09-14 14:41:17 +02:00
*
2013-02-17 19:14:34 +01:00
* @threadsafety Always.
2012-09-14 14:41:17 +02:00
*/
2013-02-18 14:40:24 +01:00
void EventQueue::Join(void)
2012-06-24 02:56:48 +02:00
{
2013-02-18 14:40:24 +01:00
m_Threads.join_all();
2013-02-17 19:14:34 +01:00
}
2012-06-24 02:56:48 +02:00
2013-02-17 19:14:34 +01:00
/**
* Waits for events and processes them.
*
* @threadsafety Always.
*/
void EventQueue::QueueThreadProc(void)
{
2013-02-19 23:02:08 +01:00
for (;;) {
2013-02-17 19:14:34 +01:00
vector<Callback> events;
2012-06-24 02:56:48 +02:00
2013-02-17 19:14:34 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
while (m_Events.empty() && !m_Stopped)
m_CV.wait(lock);
2013-02-24 01:10:34 +01:00
if (m_Events.empty() && m_Stopped)
2013-02-19 23:02:08 +01:00
break;
2013-02-17 19:14:34 +01:00
events.swap(m_Events);
}
2013-02-17 19:14:34 +01:00
BOOST_FOREACH(const Callback& ev, events) {
double st = Utility::GetTime();
2012-08-03 13:19:55 +02:00
2013-02-17 19:14:34 +01:00
ev();
2012-08-03 13:19:55 +02:00
2013-02-17 19:14:34 +01:00
double et = Utility::GetTime();
2012-08-03 13:19:55 +02:00
2013-02-24 01:10:34 +01:00
if (et - st > 0.25) {
2013-02-17 19:14:34 +01:00
stringstream msgbuf;
msgbuf << "Event call took " << et - st << " seconds.";
Logger::Write(LogWarning, "base", msgbuf.str());
}
2012-08-03 13:19:55 +02:00
}
2012-07-16 22:00:50 +02:00
}
2012-06-24 02:56:48 +02:00
}
2012-09-14 14:41:17 +02:00
/**
2013-02-17 19:14:34 +01:00
* Appends an event to the event queue. Events will be processed in FIFO order.
2012-09-14 14:41:17 +02:00
*
* @param callback The callback function for the event.
2013-02-17 19:14:34 +01:00
* @threadsafety Always.
2012-09-14 14:41:17 +02:00
*/
2013-02-15 06:47:26 +01:00
void EventQueue::Post(const EventQueue::Callback& callback)
2012-06-24 02:56:48 +02:00
{
2013-02-17 19:14:34 +01:00
boost::mutex::scoped_lock lock(m_Mutex);
m_Events.push_back(callback);
2013-02-19 23:02:08 +01:00
m_CV.notify_one();
2013-02-26 10:13:54 +01:00
}
2013-02-20 19:52:25 +01:00
2013-02-26 10:13:54 +01:00
void EventQueue::ReportTimerHandler(void)
{
int pending;
{
boost::mutex::scoped_lock lock(m_Mutex);
pending = m_Events.size();
2013-02-20 19:52:25 +01:00
}
2013-02-26 10:13:54 +01:00
if (pending > 1000)
Logger::Write(LogCritical, "base", "More than 1000 pending events: " + Convert::ToString(pending));
2012-06-24 02:56:48 +02:00
}