2012-06-14 11:23:25 +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-14 11:23:25 +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 CHECKERCOMPONENT_H
|
|
|
|
#define CHECKERCOMPONENT_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "checker/checkercomponent.thpp"
|
|
|
|
#include "icinga/service.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/timer.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
#include <boost/thread/condition_variable.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/multi_index_container.hpp>
|
|
|
|
#include <boost/multi_index/ordered_index.hpp>
|
|
|
|
#include <boost/multi_index/key_extractors.hpp>
|
|
|
|
|
2012-06-14 11:23:25 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-21 09:43:06 +02:00
|
|
|
/**
|
|
|
|
* @ingroup checker
|
|
|
|
*/
|
2014-04-03 15:36:13 +02:00
|
|
|
struct CheckableNextCheckExtractor
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
2012-08-04 13:49:25 +02:00
|
|
|
typedef double result_type;
|
|
|
|
|
2013-02-18 14:40:24 +01:00
|
|
|
/**
|
2013-03-02 09:07:47 +01:00
|
|
|
* @threadsafety Always.
|
2013-02-18 14:40:24 +01:00
|
|
|
*/
|
2014-04-05 19:02:45 +02:00
|
|
|
double operator()(const Checkable::Ptr& checkable)
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
2014-04-05 19:02:45 +02:00
|
|
|
return checkable->GetNextCheck();
|
2012-06-14 11:23:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup checker
|
|
|
|
*/
|
2013-11-08 11:17:46 +01:00
|
|
|
class CheckerComponent : public ObjectImpl<CheckerComponent>
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(CheckerComponent);
|
|
|
|
DECLARE_OBJECTNAME(CheckerComponent);
|
2012-06-15 19:32:41 +02:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
typedef boost::multi_index_container<
|
2014-04-03 15:36:13 +02:00
|
|
|
Checkable::Ptr,
|
2013-03-16 21:18:53 +01:00
|
|
|
boost::multi_index::indexed_by<
|
2014-04-03 15:36:13 +02:00
|
|
|
boost::multi_index::ordered_unique<boost::multi_index::identity<Checkable::Ptr> >,
|
|
|
|
boost::multi_index::ordered_non_unique<CheckableNextCheckExtractor>
|
2012-08-04 13:49:25 +02:00
|
|
|
>
|
2014-04-03 15:36:13 +02:00
|
|
|
> CheckableSet;
|
2012-06-15 19:32:41 +02:00
|
|
|
|
2015-03-03 09:14:15 +01:00
|
|
|
CheckerComponent(void);
|
|
|
|
|
2015-08-18 07:46:04 +02:00
|
|
|
virtual void OnConfigLoaded(void) override;
|
2015-08-20 17:18:48 +02:00
|
|
|
virtual void Start(bool runtimeCreated) override;
|
|
|
|
virtual void Stop(bool runtimeRemoved) override;
|
2012-06-14 11:23:25 +02:00
|
|
|
|
2015-02-07 22:36:17 +01:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-04-03 15:36:13 +02:00
|
|
|
unsigned long GetIdleCheckables(void);
|
|
|
|
unsigned long GetPendingCheckables(void);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2012-06-14 11:23:25 +02:00
|
|
|
private:
|
2013-02-17 19:14:34 +01:00
|
|
|
boost::mutex m_Mutex;
|
2013-02-18 14:40:24 +01:00
|
|
|
boost::condition_variable m_CV;
|
2013-02-19 23:02:08 +01:00
|
|
|
bool m_Stopped;
|
2013-03-15 18:21:29 +01:00
|
|
|
boost::thread m_Thread;
|
2013-02-17 19:14:34 +01:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
CheckableSet m_IdleCheckables;
|
|
|
|
CheckableSet m_PendingCheckables;
|
2012-06-18 00:14:34 +02:00
|
|
|
|
2012-06-17 20:35:56 +02:00
|
|
|
Timer::Ptr m_ResultTimer;
|
|
|
|
|
2013-02-18 14:40:24 +01:00
|
|
|
void CheckThreadProc(void);
|
2012-06-17 20:35:56 +02:00
|
|
|
void ResultTimerHandler(void);
|
2012-06-14 11:23:25 +02:00
|
|
|
|
2014-04-05 19:02:45 +02:00
|
|
|
void ExecuteCheckHelper(const Checkable::Ptr& checkable);
|
2012-07-13 21:00:54 +02:00
|
|
|
|
2012-06-17 22:46:40 +02:00
|
|
|
void AdjustCheckTimer(void);
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
void ObjectHandler(const ConfigObject::Ptr& object);
|
2014-04-05 19:02:45 +02:00
|
|
|
void NextCheckChangedHandler(const Checkable::Ptr& checkable);
|
2013-02-08 10:14:24 +01:00
|
|
|
|
|
|
|
void RescheduleCheckTimer(void);
|
2012-06-14 11:23:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CHECKERCOMPONENT_H */
|