]> granicus.if.org Git - icinga2/blob - lib/icinga/service.hpp
Apply clang-tidy fix 'modernize-use-override'
[icinga2] / lib / icinga / service.hpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #ifndef SERVICE_H
21 #define SERVICE_H
22
23 #include "icinga/i2-icinga.hpp"
24 #include "icinga/service.thpp"
25 #include "icinga/macroresolver.hpp"
26 #include "icinga/host.hpp"
27 #include <utility>
28 #include <tuple>
29
30 using std::tie;
31
32 namespace icinga
33 {
34
35 /**
36  * An Icinga service.
37  *
38  * @ingroup icinga
39  */
40 class Service final : public ObjectImpl<Service>, public MacroResolver
41 {
42 public:
43         DECLARE_OBJECT(Service);
44         DECLARE_OBJECTNAME(Service);
45
46         static Service::Ptr GetByNamePair(const String& hostName, const String& serviceName);
47
48         Host::Ptr GetHost() const override;
49         int GetSeverity() const override;
50
51         bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
52
53         bool IsStateOK(ServiceState state) override;
54         void SaveLastState(ServiceState state, double timestamp) override;
55
56         static ServiceState StateFromString(const String& state);
57         static String StateToString(ServiceState state);
58
59         static StateType StateTypeFromString(const String& state);
60         static String StateTypeToString(StateType state);
61
62         static void EvaluateApplyRules(const Host::Ptr& host);
63
64 protected:
65         void OnAllConfigLoaded() override;
66         void CreateChildObjects(const Type::Ptr& childType) override;
67
68 private:
69         Host::Ptr m_Host;
70
71         static bool EvaluateApplyRuleInstance(const Host::Ptr& host, const String& name, ScriptFrame& frame, const ApplyRule& rule);
72         static bool EvaluateApplyRule(const Host::Ptr& host, const ApplyRule& rule);
73 };
74
75 std::pair<Host::Ptr, Service::Ptr> GetHostService(const Checkable::Ptr& checkable);
76
77 }
78
79 #endif /* SERVICE_H */