icinga2/lib/checker/checkercomponent.hpp

100 lines
2.2 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2012-06-14 11:23:25 +02:00
#ifndef CHECKERCOMPONENT_H
#define CHECKERCOMPONENT_H
2018-01-18 13:50:38 +01:00
#include "checker/checkercomponent-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "base/timer.hpp"
#include "base/utility.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>
2021-02-02 10:16:04 +01:00
#include <condition_variable>
#include <mutex>
2017-11-21 12:12:58 +01:00
#include <thread>
2013-03-16 21:18:53 +01:00
2012-06-14 11:23:25 +02:00
namespace icinga
{
/**
* @ingroup checker
*/
struct CheckableScheduleInfo
{
Checkable::Ptr Object;
double NextCheck;
};
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
{
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
*/
double operator()(const CheckableScheduleInfo& csi)
2012-06-14 11:23:25 +02:00
{
return csi.NextCheck;
2012-06-14 11:23:25 +02:00
}
};
/**
* @ingroup checker
*/
2018-01-04 06:11:04 +01:00
class CheckerComponent final : 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<
CheckableScheduleInfo,
2013-03-16 21:18:53 +01:00
boost::multi_index::indexed_by<
boost::multi_index::ordered_unique<boost::multi_index::member<CheckableScheduleInfo, Checkable::Ptr, &CheckableScheduleInfo::Object> >,
2014-04-03 15:36:13 +02:00
boost::multi_index::ordered_non_unique<CheckableNextCheckExtractor>
>
2014-04-03 15:36:13 +02:00
> CheckableSet;
2012-06-15 19:32:41 +02:00
void OnConfigLoaded() override;
void Start(bool runtimeCreated) override;
void Stop(bool runtimeRemoved) override;
2012-06-14 11:23:25 +02:00
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
unsigned long GetIdleCheckables();
unsigned long GetPendingCheckables();
2012-06-14 11:23:25 +02:00
private:
2021-02-02 10:16:04 +01:00
std::mutex m_Mutex;
std::condition_variable m_CV;
bool m_Stopped{false};
2017-11-21 12:12:58 +01:00
std::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;
void CheckThreadProc();
void ResultTimerHandler();
2012-06-14 11:23:25 +02:00
2014-04-05 19:02:45 +02:00
void ExecuteCheckHelper(const Checkable::Ptr& checkable);
void AdjustCheckTimer();
void ObjectHandler(const ConfigObject::Ptr& object);
2014-04-05 19:02:45 +02:00
void NextCheckChangedHandler(const Checkable::Ptr& checkable);
void RescheduleCheckTimer();
static CheckableScheduleInfo GetCheckableScheduleInfo(const Checkable::Ptr& checkable);
2012-06-14 11:23:25 +02:00
};
}
#endif /* CHECKERCOMPONENT_H */