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-03-06 11:03:50 +01:00
|
|
|
: m_Stopped(false)
|
2013-02-18 14:40:24 +01:00
|
|
|
{
|
2013-03-06 11:03:50 +01:00
|
|
|
unsigned int threads = thread::hardware_concurrency();
|
2013-02-18 14:40:24 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
if (threads == 0)
|
|
|
|
threads = 1;
|
2013-02-18 14:40:24 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
threads *= 8;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < threads; 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
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
thread reportThread(boost::bind(&EventQueue::ReportThreadProc, this));
|
|
|
|
reportThread.detach();
|
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-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-16 07:27:45 +01:00
|
|
|
|
2013-02-17 19:14:34 +01:00
|
|
|
BOOST_FOREACH(const Callback& ev, events) {
|
2013-03-06 11:03:50 +01:00
|
|
|
#ifdef _DEBUG
|
|
|
|
struct rusage usage_start, usage_end;
|
|
|
|
|
2013-02-17 19:14:34 +01:00
|
|
|
double st = Utility::GetTime();
|
2013-03-06 11:03:50 +01:00
|
|
|
(void) getrusage(RUSAGE_THREAD, &usage_start);
|
|
|
|
#endif /* _DEBUG */
|
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-03-06 11:03:50 +01:00
|
|
|
#ifdef _DEBUG
|
2013-02-17 19:14:34 +01:00
|
|
|
double et = Utility::GetTime();
|
2013-03-06 11:03:50 +01:00
|
|
|
(void) getrusage(RUSAGE_THREAD, &usage_end);
|
|
|
|
|
|
|
|
double duser = (usage_end.ru_utime.tv_sec - usage_start.ru_utime.tv_sec) +
|
|
|
|
(usage_end.ru_utime.tv_usec - usage_start.ru_utime.tv_usec) / 1000000.0;
|
|
|
|
|
|
|
|
double dsys = (usage_end.ru_stime.tv_sec - usage_start.ru_stime.tv_sec) +
|
|
|
|
(usage_end.ru_stime.tv_usec - usage_start.ru_stime.tv_usec) / 1000000.0;
|
|
|
|
|
|
|
|
double dwait = (et - st) - (duser + dsys);
|
|
|
|
|
|
|
|
int dminfaults = usage_end.ru_minflt - usage_start.ru_minflt;
|
|
|
|
int dmajfaults = usage_end.ru_majflt - usage_start.ru_majflt;
|
|
|
|
|
|
|
|
int dvctx = usage_end.ru_nvcsw - usage_start.ru_nvcsw;
|
|
|
|
int divctx = usage_end.ru_nivcsw - usage_start.ru_nivcsw;
|
2012-08-03 13:19:55 +02:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
if (et - st > 0.5) {
|
2013-02-17 19:14:34 +01:00
|
|
|
stringstream msgbuf;
|
2013-03-06 11:03:50 +01:00
|
|
|
msgbuf << "Event call took user:" << duser << "s, system:" << dsys << "s, wait:" << dwait << "s, minor_faults:" << dminfaults << ", major_faults:" << dmajfaults << ", voluntary_csw:" << dvctx << ", involuntary_csw:" << divctx;
|
2013-02-17 19:14:34 +01:00
|
|
|
Logger::Write(LogWarning, "base", msgbuf.str());
|
|
|
|
}
|
2013-03-06 11:03:50 +01:00
|
|
|
#endif /* _DEBUG */
|
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-03-06 11:03:50 +01:00
|
|
|
void EventQueue::ReportThreadProc(void)
|
2013-02-26 10:13:54 +01:00
|
|
|
{
|
2013-03-06 11:03:50 +01:00
|
|
|
for (;;) {
|
|
|
|
Utility::Sleep(5);
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
int pending;
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
pending = m_Events.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::Write(LogInformation, "base", "Pending tasks: " + Convert::ToString(pending));
|
|
|
|
}
|
2012-06-24 02:56:48 +02:00
|
|
|
}
|