blob: 7b96fb308b96523ee0acbf4d13b180f84bc24165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef COMPATUTILITY_H
#define COMPATUTILITY_H
#include "icinga/i2-icinga.hpp"
#include "icinga/host.hpp"
#include "icinga/command.hpp"
namespace icinga
{
/**
* Compatibility utility functions.
*
* @ingroup icinga
*/
class CompatUtility
{
public:
/* command */
static String GetCommandLine(const Command::Ptr& command);
static String GetCommandName(const Command::Ptr& command);
/* service */
static String GetCheckableCommandArgs(const Checkable::Ptr& checkable);
/* notification */
static int GetCheckableNotificationsEnabled(const Checkable::Ptr& checkable);
static int GetCheckableNotificationLastNotification(const Checkable::Ptr& checkable);
static int GetCheckableNotificationNextNotification(const Checkable::Ptr& checkable);
static int GetCheckableNotificationNotificationNumber(const Checkable::Ptr& checkable);
static double GetCheckableNotificationNotificationInterval(const Checkable::Ptr& checkable);
static int GetCheckableNotificationTypeFilter(const Checkable::Ptr& checkable);
static int GetCheckableNotificationStateFilter(const Checkable::Ptr& checkable);
static std::set<User::Ptr> GetCheckableNotificationUsers(const Checkable::Ptr& checkable);
static std::set<UserGroup::Ptr> GetCheckableNotificationUserGroups(const Checkable::Ptr& checkable);
/* check result */
static String GetCheckResultOutput(const CheckResult::Ptr& cr);
static String GetCheckResultLongOutput(const CheckResult::Ptr& cr);
/* misc */
static String EscapeString(const String& str);
static String UnEscapeString(const String& str);
private:
CompatUtility();
static String GetCommandNamePrefix(const Command::Ptr& command);
};
}
#endif /* COMPATUTILITY_H */
|