icinga2/lib/icinga/service.hpp

65 lines
1.7 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#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
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
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(Service);
DECLARE_OBJECTNAME(Service);
2012-06-27 18:43:34 +02:00
static Service::Ptr GetByNamePair(const String& hostName, const String& serviceName);
Host::Ptr GetHost() const override;
int GetSeverity() const override;
2019-04-11 11:25:45 +02:00
bool GetHandled() const override;
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;
void SaveLastState(ServiceState state, double timestamp) override;
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
static void EvaluateApplyRules(const Host::Ptr& host);
static boost::signals2::signal<void (const Service::Ptr&, const CheckResult::Ptr&, const MessageOrigin::Ptr&)> OnHostProblemChanged;
protected:
void OnAllConfigLoaded() override;
void CreateChildObjects(const Type::Ptr& childType) override;
private:
2013-11-10 22:04:18 +01:00
Host::Ptr m_Host;
static bool EvaluateApplyRuleInstance(const Host::Ptr& host, const String& name, ScriptFrame& frame, const ApplyRule& rule);
static bool EvaluateApplyRule(const Host::Ptr& host, const ApplyRule& rule);
};
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
}
#endif /* SERVICE_H */