2012-06-14 11:23:25 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CHECKERCOMPONENT_H
|
|
|
|
#define CHECKERCOMPONENT_H
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-21 09:43:06 +02:00
|
|
|
/**
|
|
|
|
* @ingroup checker
|
|
|
|
*/
|
2012-08-04 13:49:25 +02:00
|
|
|
struct ServiceNextCheckExtractor
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
2012-08-04 13:49:25 +02:00
|
|
|
typedef double result_type;
|
|
|
|
|
|
|
|
double operator()(const Service::Ptr& service)
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
2012-08-04 13:49:25 +02:00
|
|
|
return service->GetNextCheck();
|
2012-06-14 11:23:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup checker
|
|
|
|
*/
|
2012-07-27 16:05:02 +02:00
|
|
|
class CheckerComponent : public IComponent
|
2012-06-14 11:23:25 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-06-15 19:32:41 +02:00
|
|
|
typedef shared_ptr<CheckerComponent> Ptr;
|
|
|
|
typedef weak_ptr<CheckerComponent> WeakPtr;
|
|
|
|
|
2012-08-04 13:49:25 +02:00
|
|
|
typedef multi_index_container<
|
|
|
|
Service::Ptr,
|
|
|
|
indexed_by<
|
|
|
|
ordered_unique<identity<Service::Ptr> >,
|
|
|
|
ordered_non_unique<ServiceNextCheckExtractor>
|
|
|
|
>
|
|
|
|
> ServiceSet;
|
2012-06-15 19:32:41 +02:00
|
|
|
|
2012-06-14 11:23:25 +02:00
|
|
|
virtual void Start(void);
|
|
|
|
virtual void Stop(void);
|
|
|
|
|
|
|
|
private:
|
2012-09-03 10:28:14 +02:00
|
|
|
Endpoint::Ptr m_Endpoint;
|
2012-06-18 00:14:34 +02:00
|
|
|
|
2012-08-04 13:49:25 +02:00
|
|
|
ServiceSet m_IdleServices;
|
|
|
|
ServiceSet m_PendingServices;
|
2012-06-18 00:14:34 +02:00
|
|
|
|
2012-06-14 11:23:25 +02:00
|
|
|
Timer::Ptr m_CheckTimer;
|
|
|
|
|
2012-06-17 20:35:56 +02:00
|
|
|
Timer::Ptr m_ResultTimer;
|
|
|
|
|
2012-06-15 19:32:41 +02:00
|
|
|
void CheckTimerHandler(void);
|
2012-06-17 20:35:56 +02:00
|
|
|
void ResultTimerHandler(void);
|
2012-06-14 11:23:25 +02:00
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
void CheckCompletedHandler(const Service::Ptr& service, const ScriptTask::Ptr& task);
|
2012-07-13 21:00:54 +02:00
|
|
|
|
2012-06-17 22:46:40 +02:00
|
|
|
void AdjustCheckTimer(void);
|
|
|
|
|
2012-08-03 23:03:58 +02:00
|
|
|
void CheckerChangedHandler(const Service::Ptr& service);
|
2012-09-21 09:43:06 +02:00
|
|
|
void ObjectRemovedHandler(const DynamicObject::Ptr& object);
|
2012-06-14 11:23:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CHECKERCOMPONENT_H */
|