blob: 3ad5d269a2c341d4eeb9aca726c3464cdb931693 (
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
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef HOSTGROUP_H
#define HOSTGROUP_H
#include "icinga/i2-icinga.hpp"
#include "icinga/hostgroup-ti.hpp"
#include "icinga/host.hpp"
namespace icinga
{
class ConfigItem;
/**
* An Icinga host group.
*
* @ingroup icinga
*/
class HostGroup final : public ObjectImpl<HostGroup>
{
public:
DECLARE_OBJECT(HostGroup);
DECLARE_OBJECTNAME(HostGroup);
std::set<Host::Ptr> GetMembers() const;
void AddMember(const Host::Ptr& host);
void RemoveMember(const Host::Ptr& host);
bool ResolveGroupMembership(const Host::Ptr& host, bool add = true, int rstack = 0);
static void EvaluateObjectRules(const Host::Ptr& host);
private:
mutable std::mutex m_HostGroupMutex;
std::set<Host::Ptr> m_Members;
static bool EvaluateObjectRule(const Host::Ptr& host, const intrusive_ptr<ConfigItem>& item);
};
}
#endif /* HOSTGROUP_H */
|