]> granicus.if.org Git - icinga2/blob - lib/icinga/compatutility.hpp
Drop Freshness wrappers from CompatUtility class
[icinga2] / lib / icinga / compatutility.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 COMPATUTILITY_H
21 #define COMPATUTILITY_H
22
23 #include "icinga/i2-icinga.hpp"
24 #include "icinga/customvarobject.hpp"
25 #include "icinga/host.hpp"
26 #include "icinga/command.hpp"
27 #include "base/dictionary.hpp"
28 #include "base/array.hpp"
29 #include <vector>
30
31 namespace icinga
32 {
33
34 /**
35  * Compatibility utility functions.
36  *
37  * @ingroup icinga
38  */
39 class CompatUtility
40 {
41 public:
42         /* command */
43         static String GetCommandLine(const Command::Ptr& command);
44         static String GetCommandName(const Command::Ptr& command);
45
46         /* host */
47         static int GetHostCurrentState(const Host::Ptr& host);
48         static String GetHostStateString(const Host::Ptr& host);
49         static int GetHostNotifyOnDown(const Host::Ptr& host);
50         static int GetHostNotifyOnUnreachable(const Host::Ptr& host);
51
52         /* service */
53         static String GetCheckableCommandArgs(const Checkable::Ptr& checkable);
54         static double GetCheckableCheckInterval(const Checkable::Ptr& checkable);
55         static double GetCheckableRetryInterval(const Checkable::Ptr& checkable);
56         static String GetCheckableCheckPeriod(const Checkable::Ptr& checkable);
57
58         static int GetCheckableNoMoreNotifications(const Checkable::Ptr& checkable);
59         static int GetCheckableInCheckPeriod(const Checkable::Ptr& checkable);
60         static int GetCheckableInNotificationPeriod(const Checkable::Ptr& checkable);
61
62         /* notification */
63         static int GetCheckableNotificationsEnabled(const Checkable::Ptr& checkable);
64         static int GetCheckableNotificationLastNotification(const Checkable::Ptr& checkable);
65         static int GetCheckableNotificationNextNotification(const Checkable::Ptr& checkable);
66         static int GetCheckableNotificationNotificationNumber(const Checkable::Ptr& checkable);
67         static double GetCheckableNotificationNotificationInterval(const Checkable::Ptr& checkable);
68         static String GetCheckableNotificationNotificationOptions(const Checkable::Ptr& checkable);
69         static int GetCheckableNotificationTypeFilter(const Checkable::Ptr& checkable);
70         static int GetCheckableNotificationStateFilter(const Checkable::Ptr& checkable);
71         static int GetCheckableNotifyOnWarning(const Checkable::Ptr& checkable);
72         static int GetCheckableNotifyOnCritical(const Checkable::Ptr& checkable);
73         static int GetCheckableNotifyOnUnknown(const Checkable::Ptr& checkable);
74         static int GetCheckableNotifyOnRecovery(const Checkable::Ptr& checkable);
75         static int GetCheckableNotifyOnFlapping(const Checkable::Ptr& checkable);
76         static int GetCheckableNotifyOnDowntime(const Checkable::Ptr& checkable);
77
78         static std::set<User::Ptr> GetCheckableNotificationUsers(const Checkable::Ptr& checkable);
79         static std::set<UserGroup::Ptr> GetCheckableNotificationUserGroups(const Checkable::Ptr& checkable);
80
81         /* custom attribute */
82         static String GetCustomAttributeConfig(const CustomVarObject::Ptr& object, const String& name);
83         static Dictionary::Ptr GetCustomAttributeConfig(const CustomVarObject::Ptr& object);
84
85         /* check result */
86         static String GetCheckResultOutput(const CheckResult::Ptr& cr);
87         static String GetCheckResultLongOutput(const CheckResult::Ptr& cr);
88         static String GetCheckResultPerfdata(const CheckResult::Ptr& cr);
89
90         /* misc */
91         static std::pair<unsigned long, unsigned long> ConvertTimestamp(double time);
92
93         static int MapNotificationReasonType(NotificationType type);
94         static int MapExternalCommandType(const String& name);
95
96         static String EscapeString(const String& str);
97         static String UnEscapeString(const String& str);
98
99 private:
100         CompatUtility();
101
102         static String GetCommandNamePrefix(const Command::Ptr& command);
103 };
104
105 }
106
107 #endif /* COMPATUTILITY_H */