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