mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			150 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/******************************************************************************
 | 
						|
 * Icinga 2                                                                   *
 | 
						|
 * Copyright (C) 2012-2015 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/service.hpp"
 | 
						|
#include "config/configitembuilder.hpp"
 | 
						|
#include "config/applyrule.hpp"
 | 
						|
#include "base/initialize.hpp"
 | 
						|
#include "base/dynamictype.hpp"
 | 
						|
#include "base/logger.hpp"
 | 
						|
#include "base/context.hpp"
 | 
						|
#include "base/workqueue.hpp"
 | 
						|
#include "base/exception.hpp"
 | 
						|
#include <boost/foreach.hpp>
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
INITIALIZE_ONCE(&Service::RegisterApplyRuleHandler);
 | 
						|
 | 
						|
void Service::RegisterApplyRuleHandler(void)
 | 
						|
{
 | 
						|
	std::vector<String> targets;
 | 
						|
	targets.push_back("Host");
 | 
						|
	ApplyRule::RegisterType("Service", targets);
 | 
						|
}
 | 
						|
 | 
						|
bool Service::EvaluateApplyRuleInstance(const Host::Ptr& host, const String& name, ScriptFrame& frame, const ApplyRule& rule)
 | 
						|
{
 | 
						|
	if (!rule.EvaluateFilter(frame))
 | 
						|
		return false;
 | 
						|
 | 
						|
	DebugInfo di = rule.GetDebugInfo();
 | 
						|
 | 
						|
	Log(LogDebug, "Service")
 | 
						|
	    << "Applying service '" << name << "' to host '" << host->GetName() << "' for rule " << di;
 | 
						|
 | 
						|
	ConfigItemBuilder::Ptr builder = new ConfigItemBuilder(di);
 | 
						|
	builder->SetType("Service");
 | 
						|
	builder->SetName(name);
 | 
						|
	builder->SetScope(frame.Locals);
 | 
						|
 | 
						|
	builder->AddExpression(new SetExpression(MakeIndexer(ScopeCurrent, "host_name"), OpSetLiteral, MakeLiteral(host->GetName()), di));
 | 
						|
 | 
						|
	builder->AddExpression(new SetExpression(MakeIndexer(ScopeCurrent, "name"), OpSetLiteral, MakeLiteral(name), di));
 | 
						|
 | 
						|
	String zone = host->GetZoneName();
 | 
						|
 | 
						|
	if (!zone.IsEmpty())
 | 
						|
		builder->AddExpression(new SetExpression(MakeIndexer(ScopeCurrent, "zone"), OpSetLiteral, MakeLiteral(zone), di));
 | 
						|
 | 
						|
	builder->AddExpression(new OwnedExpression(rule.GetExpression()));
 | 
						|
 | 
						|
	ConfigItem::Ptr serviceItem = builder->Compile();
 | 
						|
	serviceItem->Commit();
 | 
						|
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
bool Service::EvaluateApplyRule(const Host::Ptr& host, const ApplyRule& rule)
 | 
						|
{
 | 
						|
	DebugInfo di = rule.GetDebugInfo();
 | 
						|
 | 
						|
	std::ostringstream msgbuf;
 | 
						|
	msgbuf << "Evaluating 'apply' rule (" << di << ")";
 | 
						|
	CONTEXT(msgbuf.str());
 | 
						|
 | 
						|
	ScriptFrame frame;
 | 
						|
	if (rule.GetScope())
 | 
						|
		rule.GetScope()->CopyTo(frame.Locals);
 | 
						|
	frame.Locals->Set("host", host);
 | 
						|
 | 
						|
	Value vinstances;
 | 
						|
 | 
						|
	if (rule.GetFTerm()) {
 | 
						|
		try {
 | 
						|
			vinstances = rule.GetFTerm()->Evaluate(frame);
 | 
						|
		} catch (const std::exception&) {
 | 
						|
			/* Silently ignore errors here and assume there are no instances. */
 | 
						|
			return false;
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		Array::Ptr instances = new Array();
 | 
						|
		instances->Add("");
 | 
						|
		vinstances = instances;
 | 
						|
	}
 | 
						|
 | 
						|
	bool match = false;
 | 
						|
 | 
						|
	if (vinstances.IsObjectType<Array>()) {
 | 
						|
		if (!rule.GetFVVar().IsEmpty())
 | 
						|
			BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
 | 
						|
 | 
						|
		Array::Ptr arr = vinstances;
 | 
						|
		Array::Ptr arrclone = arr->ShallowClone();
 | 
						|
 | 
						|
		ObjectLock olock(arrclone);
 | 
						|
		BOOST_FOREACH(const String& instance, arrclone) {
 | 
						|
			String name = rule.GetName();
 | 
						|
 | 
						|
			if (!rule.GetFKVar().IsEmpty()) {
 | 
						|
				frame.Locals->Set(rule.GetFKVar(), instance);
 | 
						|
				name += instance;
 | 
						|
			}
 | 
						|
 | 
						|
			if (EvaluateApplyRuleInstance(host, name, frame, rule))
 | 
						|
				match = true;
 | 
						|
		}
 | 
						|
	} else if (vinstances.IsObjectType<Dictionary>()) {
 | 
						|
		if (rule.GetFVVar().IsEmpty())
 | 
						|
			BOOST_THROW_EXCEPTION(ScriptError("Dictionary iterator requires value to be a dictionary.", di));
 | 
						|
	
 | 
						|
		Dictionary::Ptr dict = vinstances;
 | 
						|
 | 
						|
		BOOST_FOREACH(const String& key, dict->GetKeys()) {
 | 
						|
			frame.Locals->Set(rule.GetFKVar(), key);
 | 
						|
			frame.Locals->Set(rule.GetFVVar(), dict->Get(key));
 | 
						|
 | 
						|
			if (EvaluateApplyRuleInstance(host, rule.GetName() + key, frame, rule))
 | 
						|
				match = true;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return match;
 | 
						|
}
 | 
						|
 | 
						|
void Service::EvaluateApplyRules(const Host::Ptr& host)
 | 
						|
{
 | 
						|
	BOOST_FOREACH(ApplyRule& rule, ApplyRule::GetRules("Service")) {
 | 
						|
		CONTEXT("Evaluating 'apply' rules for host '" + host->GetName() + "'");
 | 
						|
 | 
						|
		if (EvaluateApplyRule(host, rule))
 | 
						|
			rule.AddMatch();
 | 
						|
	}
 | 
						|
}
 |