/****************************************************************************** * 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/notification.hpp" #include "icinga/service.hpp" #include "config/configitembuilder.hpp" #include "config/applyrule.hpp" #include "config/configcompilercontext.hpp" #include "base/initialize.hpp" #include "base/dynamictype.hpp" #include "base/logger.hpp" #include "base/context.hpp" #include "base/workqueue.hpp" #include "base/configerror.hpp" #include using namespace icinga; INITIALIZE_ONCE(&Notification::RegisterApplyRuleHandler); void Notification::RegisterApplyRuleHandler(void) { std::vector targets; targets.push_back("Host"); targets.push_back("Service"); ApplyRule::RegisterType("Notification", targets, &Notification::EvaluateApplyRules); } bool Notification::EvaluateApplyRuleOne(const Checkable::Ptr& checkable, const ApplyRule& rule) { DebugInfo di = rule.GetDebugInfo(); std::ostringstream msgbuf; msgbuf << "Evaluating 'apply' rule (" << di << ")"; CONTEXT(msgbuf.str()); Host::Ptr host; Service::Ptr service; tie(host, service) = GetHostService(checkable); Dictionary::Ptr locals = make_shared(); locals->Set("__parent", rule.GetScope()); locals->Set("host", host); if (service) locals->Set("service", service); if (!rule.EvaluateFilter(locals)) return false; Log(LogDebug, "Notification") << "Applying notification '" << rule.GetName() << "' to object '" << checkable->GetName() << "' for rule " << di; ConfigItemBuilder::Ptr builder = make_shared(di); builder->SetType("Notification"); builder->SetName(rule.GetName()); builder->SetScope(locals); builder->AddExpression(make_shared(&Expression::OpSet, make_shared(&Expression::OpLiteral, "host_name", di), make_shared(&Expression::OpLiteral, host->GetName(), di), di)); if (service) { builder->AddExpression(make_shared(&Expression::OpSet, make_shared(&Expression::OpLiteral, "service_name", di), make_shared(&Expression::OpLiteral, service->GetShortName(), di), di)); } String zone = checkable->GetZone(); if (!zone.IsEmpty()) { builder->AddExpression(make_shared(&Expression::OpSet, make_shared(&Expression::OpLiteral, "zone", di), make_shared(&Expression::OpLiteral, zone, di), di)); } builder->AddExpression(rule.GetExpression()); ConfigItem::Ptr notificationItem = builder->Compile(); notificationItem->Register(); DynamicObject::Ptr dobj = notificationItem->Commit(); dobj->OnConfigLoaded(); return true; } void Notification::EvaluateApplyRule(const ApplyRule& rule) { int apply_count = 0; if (rule.GetTargetType() == "Host") { apply_count = 0; BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjectsByType()) { CONTEXT("Evaluating 'apply' rules for host '" + host->GetName() + "'"); try { if (EvaluateApplyRuleOne(host, rule)) apply_count++; } catch (const ConfigError& ex) { const DebugInfo *di = boost::get_error_info(ex); ConfigCompilerContext::GetInstance()->AddMessage(true, ex.what(), di ? *di : DebugInfo()); } } if (apply_count == 0) Log(LogWarning, "Notification") << "Apply rule '" << rule.GetName() << "' for host does not match anywhere!"; } else if (rule.GetTargetType() == "Service") { apply_count = 0; BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjectsByType()) { CONTEXT("Evaluating 'apply' rules for Service '" + service->GetName() + "'"); try { if (EvaluateApplyRuleOne(service, rule)) apply_count++; } catch (const ConfigError& ex) { const DebugInfo *di = boost::get_error_info(ex); ConfigCompilerContext::GetInstance()->AddMessage(true, ex.what(), di ? *di : DebugInfo()); } } if (apply_count == 0) Log(LogWarning, "Notification") << "Apply rule '" << rule.GetName() << "' for service does not match anywhere!"; } else { Log(LogWarning, "Notification") << "Wrong target type for apply rule '" << rule.GetName() << "'!"; } } void Notification::EvaluateApplyRules(const std::vector& rules) { ParallelWorkQueue upq; BOOST_FOREACH(const ApplyRule& rule, rules) { upq.Enqueue(boost::bind(&Notification::EvaluateApplyRule, boost::cref(rule))); } upq.Join(); }