icinga2/lib/icinga/servicegroup.cpp

145 lines
4.6 KiB
C++
Raw Normal View History

/******************************************************************************
* 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. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "icinga/servicegroup.hpp"
#include "config/objectrule.hpp"
#include "base/dynamictype.hpp"
#include "base/objectlock.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
2014-05-25 16:23:35 +02:00
#include "base/context.hpp"
#include "base/workqueue.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2012-07-01 13:08:07 +02:00
using namespace icinga;
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(ServiceGroup);
INITIALIZE_ONCE(&ServiceGroup::RegisterObjectRuleHandler);
void ServiceGroup::RegisterObjectRuleHandler(void)
{
2014-08-17 17:57:20 +02:00
ObjectRule::RegisterType("ServiceGroup", &ServiceGroup::EvaluateObjectRules);
}
2014-08-17 17:57:20 +02:00
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::GetObjectsByType<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
2012-07-01 13:08:07 +02:00
{
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
return m_Members;
2012-07-01 13:08:07 +02:00
}
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)
2013-02-27 15:23:25 +01:00
{
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
m_Members.erase(service);
2013-02-27 15:23:25 +01:00
}
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;
}