mirror of https://github.com/Icinga/icinga2.git
145 lines
4.6 KiB
C++
145 lines
4.6 KiB
C++
/******************************************************************************
|
|
* Icinga 2 *
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License *
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
* of the License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
******************************************************************************/
|
|
|
|
#include "icinga/servicegroup.hpp"
|
|
#include "config/objectrule.hpp"
|
|
#include "base/dynamictype.hpp"
|
|
#include "base/objectlock.hpp"
|
|
#include "base/logger_fwd.hpp"
|
|
#include "base/context.hpp"
|
|
#include "base/workqueue.hpp"
|
|
#include <boost/foreach.hpp>
|
|
|
|
using namespace icinga;
|
|
|
|
REGISTER_TYPE(ServiceGroup);
|
|
|
|
INITIALIZE_ONCE(&ServiceGroup::RegisterObjectRuleHandler);
|
|
|
|
void ServiceGroup::RegisterObjectRuleHandler(void)
|
|
{
|
|
ObjectRule::RegisterType("ServiceGroup", &ServiceGroup::EvaluateObjectRules);
|
|
}
|
|
|
|
bool ServiceGroup::EvaluateObjectRuleOne(const Service::Ptr service, const ObjectRule& rule)
|
|
{
|
|
DebugInfo di = rule.GetDebugInfo();
|
|
|
|
std::ostringstream msgbuf;
|
|
msgbuf << "Evaluating 'object' rule (" << di << ")";
|
|
CONTEXT(msgbuf.str());
|
|
|
|
Host::Ptr host = service->GetHost();
|
|
|
|
Dictionary::Ptr locals = make_shared<Dictionary>();
|
|
locals->Set("host", host);
|
|
locals->Set("service", service);
|
|
|
|
if (!rule.EvaluateFilter(locals))
|
|
return false;
|
|
|
|
std::ostringstream msgbuf2;
|
|
msgbuf2 << "Assigning membership for group '" << rule.GetName() << "' to service '" << service->GetName() << "' for rule " << di;
|
|
Log(LogDebug, "ServiceGroup", msgbuf2.str());
|
|
|
|
String group_name = rule.GetName();
|
|
ServiceGroup::Ptr group = ServiceGroup::GetByName(group_name);
|
|
|
|
if (!group) {
|
|
Log(LogCritical, "ServiceGroup", "Invalid membership assignment. Group '" + group_name + "' does not exist.");
|
|
return false;
|
|
}
|
|
|
|
/* assign service group membership */
|
|
group->ResolveGroupMembership(service, true);
|
|
|
|
/* update groups attribute for apply */
|
|
service->AddGroup(group_name);
|
|
|
|
return true;
|
|
}
|
|
|
|
void ServiceGroup::EvaluateObjectRule(const ObjectRule& rule)
|
|
{
|
|
BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
|
|
CONTEXT("Evaluating group membership in '" + rule.GetName() + "' for service '" + service->GetName() + "'");
|
|
|
|
EvaluateObjectRuleOne(service, rule);
|
|
}
|
|
}
|
|
|
|
void ServiceGroup::EvaluateObjectRules(const std::vector<ObjectRule>& rules)
|
|
{
|
|
ParallelWorkQueue upq;
|
|
|
|
BOOST_FOREACH(const ObjectRule& rule, rules) {
|
|
upq.Enqueue(boost::bind(ServiceGroup::EvaluateObjectRule, boost::cref(rule)));
|
|
}
|
|
|
|
upq.Join();
|
|
}
|
|
|
|
std::set<Service::Ptr> ServiceGroup::GetMembers(void) const
|
|
{
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
|
return m_Members;
|
|
}
|
|
|
|
void ServiceGroup::AddMember(const Service::Ptr& service)
|
|
{
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
|
m_Members.insert(service);
|
|
}
|
|
|
|
void ServiceGroup::RemoveMember(const Service::Ptr& service)
|
|
{
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
|
m_Members.erase(service);
|
|
}
|
|
|
|
bool ServiceGroup::ResolveGroupMembership(Service::Ptr const& service, bool add, int rstack) {
|
|
|
|
if (add && rstack > 20) {
|
|
Log(LogWarning, "ServiceGroup", "Too many nested groups for group '" + GetName() + "': Service '" +
|
|
service->GetName() + "' membership assignment failed.");
|
|
|
|
return false;
|
|
}
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
if (groups && groups->GetLength() > 0) {
|
|
ObjectLock olock(groups);
|
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
ServiceGroup::Ptr group = ServiceGroup::GetByName(name);
|
|
|
|
if (group && !group->ResolveGroupMembership(service, add, rstack + 1))
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (add)
|
|
AddMember(service);
|
|
else
|
|
RemoveMember(service);
|
|
|
|
return true;
|
|
}
|