blob: f2d0ab7894b0b13ca248a44faa55e194043255a0 (
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 SERVICEGROUP_H
#define SERVICEGROUP_H
#include "icinga/i2-icinga.hpp"
#include "icinga/servicegroup-ti.hpp"
#include "icinga/service.hpp"
namespace icinga
{
class ConfigItem;
/**
* An Icinga service group.
*
* @ingroup icinga
*/
class ServiceGroup final : public ObjectImpl<ServiceGroup>
{
public:
DECLARE_OBJECT(ServiceGroup);
DECLARE_OBJECTNAME(ServiceGroup);
std::set<Service::Ptr> GetMembers() const;
void AddMember(const Service::Ptr& service);
void RemoveMember(const Service::Ptr& service);
bool ResolveGroupMembership(const Service::Ptr& service, bool add = true, int rstack = 0);
static void EvaluateObjectRules(const Service::Ptr& service);
private:
mutable std::mutex m_ServiceGroupMutex;
std::set<Service::Ptr> m_Members;
static bool EvaluateObjectRule(const Service::Ptr& service, const intrusive_ptr<ConfigItem>& group);
};
}
#endif /* SERVICEGROUP_H */
|