2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-09 20:32:02 +02:00
|
|
|
|
2012-06-13 13:42:55 +02:00
|
|
|
#ifndef SERVICE_H
|
|
|
|
#define SERVICE_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/i2-icinga.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/service-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/macroresolver.hpp"
|
|
|
|
#include "icinga/host.hpp"
|
2017-11-22 12:05:36 +01:00
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
using std::tie;
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2012-06-13 13:42:55 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-17 13:35:55 +02:00
|
|
|
/**
|
|
|
|
* An Icinga service.
|
|
|
|
*
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class Service final : public ObjectImpl<Service>, public MacroResolver
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(Service);
|
|
|
|
DECLARE_OBJECTNAME(Service);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2013-02-08 15:38:22 +01:00
|
|
|
static Service::Ptr GetByNamePair(const String& hostName, const String& serviceName);
|
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
Host::Ptr GetHost() const override;
|
|
|
|
int GetSeverity() const override;
|
2019-04-11 11:25:45 +02:00
|
|
|
bool GetHandled() const override;
|
2012-06-14 11:18:20 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
|
2013-02-24 01:10:34 +01:00
|
|
|
|
2019-04-09 11:26:34 +02:00
|
|
|
bool IsStateOK(ServiceState state) const override;
|
2018-01-04 05:12:56 +01:00
|
|
|
void SaveLastState(ServiceState state, double timestamp) override;
|
2015-11-02 14:10:44 +01:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
static ServiceState StateFromString(const String& state);
|
|
|
|
static String StateToString(ServiceState state);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2013-03-07 12:04:20 +01:00
|
|
|
static StateType StateTypeFromString(const String& state);
|
|
|
|
static String StateTypeToString(StateType state);
|
2012-07-03 14:18:46 +02:00
|
|
|
|
2014-11-16 16:20:39 +01:00
|
|
|
static void EvaluateApplyRules(const Host::Ptr& host);
|
|
|
|
|
2019-12-03 16:51:34 +01:00
|
|
|
static boost::signals2::signal<void (const Service::Ptr&, const CheckResult::Ptr&, const MessageOrigin::Ptr&)> OnHostProblemChanged;
|
|
|
|
|
2012-08-03 23:03:58 +02:00
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnAllConfigLoaded() override;
|
|
|
|
void CreateChildObjects(const Type::Ptr& childType) override;
|
2013-08-29 16:53:57 +02:00
|
|
|
|
2013-01-22 11:07:09 +01:00
|
|
|
private:
|
2013-11-10 22:04:18 +01:00
|
|
|
Host::Ptr m_Host;
|
2014-04-05 12:56:56 +02:00
|
|
|
|
2015-01-29 12:38:25 +01:00
|
|
|
static bool EvaluateApplyRuleInstance(const Host::Ptr& host, const String& name, ScriptFrame& frame, const ApplyRule& rule);
|
2014-11-16 16:20:39 +01:00
|
|
|
static bool EvaluateApplyRule(const Host::Ptr& host, const ApplyRule& rule);
|
2012-06-13 13:42:55 +02:00
|
|
|
};
|
|
|
|
|
2017-12-31 07:22:16 +01:00
|
|
|
std::pair<Host::Ptr, Service::Ptr> GetHostService(const Checkable::Ptr& checkable);
|
2014-04-03 15:36:13 +02:00
|
|
|
|
2012-06-13 13:42:55 +02:00
|
|
|
}
|
|
|
|
|
2012-06-16 20:44:24 +02:00
|
|
|
#endif /* SERVICE_H */
|