]> granicus.if.org Git - icinga2/blobdiff - lib/icinga/servicegroup.cpp
Service: be handled while host is down
[icinga2] / lib / icinga / servicegroup.cpp
index ef44f4653f9e73e4012a01328b095ba716700f08..45d953f63febba5e1d12f941c93479d57b41cf2b 100644 (file)
-/******************************************************************************
- * 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.             *
- ******************************************************************************/
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 
 #include "icinga/servicegroup.hpp"
+#include "icinga/servicegroup-ti.cpp"
 #include "config/objectrule.hpp"
-#include "base/dynamictype.hpp"
+#include "config/configitem.hpp"
+#include "base/configtype.hpp"
 #include "base/objectlock.hpp"
-#include "base/logger_fwd.hpp"
+#include "base/logger.hpp"
 #include "base/context.hpp"
 #include "base/workqueue.hpp"
-#include <boost/foreach.hpp>
 
 using namespace icinga;
 
 REGISTER_TYPE(ServiceGroup);
 
-INITIALIZE_ONCE(&ServiceGroup::RegisterObjectRuleHandler);
+INITIALIZE_ONCE([]() {
+       ObjectRule::RegisterType("ServiceGroup");
+});
 
-void ServiceGroup::RegisterObjectRuleHandler(void)
+bool ServiceGroup::EvaluateObjectRule(const Service::Ptr& service, const ConfigItem::Ptr& group)
 {
-        ObjectRule::RegisterType("ServiceGroup", &ServiceGroup::EvaluateObjectRules);
-}
-
-bool ServiceGroup::EvaluateObjectRuleOne(const Service::Ptr service, const ObjectRule& rule)
-{
-       DebugInfo di = rule.GetDebugInfo();
+       String groupName = group->GetName();
 
-       std::ostringstream msgbuf;
-       msgbuf << "Evaluating 'object' rule (" << di << ")";
-       CONTEXT(msgbuf.str());
+       CONTEXT("Evaluating rule for group '" + groupName + "'");
 
        Host::Ptr host = service->GetHost();
 
-       Dictionary::Ptr locals = make_shared<Dictionary>();
-       locals->Set("host", host);
-       locals->Set("service", service);
+       ScriptFrame frame(true);
+       if (group->GetScope())
+               group->GetScope()->CopyTo(frame.Locals);
+       frame.Locals->Set("host", host);
+       frame.Locals->Set("service", service);
 
-       if (!rule.EvaluateFilter(locals))
+       if (!group->GetFilter()->Evaluate(frame).GetValue().ToBool())
                return false;
 
-       std::ostringstream msgbuf2;
-       msgbuf2 << "Assigning membership for group '" << rule.GetName() << "' to service '" << service->GetName() << "' for rule " << di;
-       Log(LogDebug, "icinga", msgbuf2.str());
-
-       String group_name = rule.GetName();
-       ServiceGroup::Ptr group = ServiceGroup::GetByName(group_name);
-
-       if (!group) {
-               Log(LogCritical, "icinga", "Invalid membership assignment. Group '" + group_name + "' does not exist.");
-               return false;
-       }
+       Log(LogDebug, "ServiceGroup")
+               << "Assigning membership for group '" << groupName << "' to service '" << service->GetName() << "'";
 
-       /* assign service group membership */
-       group->ResolveGroupMembership(service, true);
+       Array::Ptr groups = service->GetGroups();
 
-       /* update groups attribute for apply */
-       service->AddGroup(group_name);
+       if (groups && !groups->Contains(groupName))
+               groups->Add(groupName);
 
        return true;
 }
 
-void ServiceGroup::EvaluateObjectRule(const ObjectRule& rule)
+void ServiceGroup::EvaluateObjectRules(const Service::Ptr& service)
 {
-       BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
-               CONTEXT("Evaluating group membership in '" + rule.GetName() + "' for service '" + service->GetName() + "'");
+       CONTEXT("Evaluating group membership for service '" + service->GetName() + "'");
 
-               EvaluateObjectRuleOne(service, rule);
-       }
-}
-
-void ServiceGroup::EvaluateObjectRules(const std::vector<ObjectRule>& rules)
-{
-       ParallelWorkQueue upq;
+       for (const ConfigItem::Ptr& group : ConfigItem::GetItems(ServiceGroup::TypeInstance))
+       {
+               if (!group->GetFilter())
+                       continue;
 
-       BOOST_FOREACH(const ObjectRule& rule, rules) {
-               upq.Enqueue(boost::bind(ServiceGroup::EvaluateObjectRule, boost::cref(rule)));
+               EvaluateObjectRule(service, group);
        }
-
-       upq.Join();
 }
 
-std::set<Service::Ptr> ServiceGroup::GetMembers(void) const
+std::set<Service::Ptr> ServiceGroup::GetMembers() const
 {
        boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
        return m_Members;
@@ -103,6 +67,8 @@ std::set<Service::Ptr> ServiceGroup::GetMembers(void) const
 
 void ServiceGroup::AddMember(const Service::Ptr& service)
 {
+       service->AddGroup(GetName());
+
        boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
        m_Members.insert(service);
 }
@@ -113,11 +79,12 @@ void ServiceGroup::RemoveMember(const Service::Ptr& service)
        m_Members.erase(service);
 }
 
-bool ServiceGroup::ResolveGroupMembership(Service::Ptr const& service, bool add, int rstack) {
+bool ServiceGroup::ResolveGroupMembership(const Service::Ptr& service, bool add, int rstack) {
 
        if (add && rstack > 20) {
-               Log(LogWarning, "icinga", "Too many nested groups for group '" + GetName() + "': Service '" +
-                   service->GetName() + "' membership assignment failed.");
+               Log(LogWarning, "ServiceGroup")
+                       << "Too many nested groups for group '" << GetName() << "': Service '"
+                       << service->GetName() << "' membership assignment failed.";
 
                return false;
        }
@@ -127,7 +94,7 @@ bool ServiceGroup::ResolveGroupMembership(Service::Ptr const& service, bool add,
        if (groups && groups->GetLength() > 0) {
                ObjectLock olock(groups);
 
-               BOOST_FOREACH(const String& name, groups) {
+               for (const String& name : groups) {
                        ServiceGroup::Ptr group = ServiceGroup::GetByName(name);
 
                        if (group && !group->ResolveGroupMembership(service, add, rstack + 1))