mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			168 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			4.8 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 "config/applyrule.hpp"
 | 
						|
#include "base/logger.hpp"
 | 
						|
#include <boost/foreach.hpp>
 | 
						|
#include <set>
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
ApplyRule::RuleMap ApplyRule::m_Rules;
 | 
						|
ApplyRule::TypeMap ApplyRule::m_Types;
 | 
						|
 | 
						|
ApplyRule::ApplyRule(const String& targetType, const String& name, const boost::shared_ptr<Expression>& expression,
 | 
						|
    const boost::shared_ptr<Expression>& filter, const String& fkvar, const String& fvvar, const boost::shared_ptr<Expression>& fterm,
 | 
						|
    const DebugInfo& di, const Dictionary::Ptr& scope)
 | 
						|
	: m_TargetType(targetType), m_Name(name), m_Expression(expression), m_Filter(filter), m_FKVar(fkvar),
 | 
						|
	  m_FVVar(fvvar), m_FTerm(fterm), m_DebugInfo(di), m_Scope(scope), m_HasMatches(false)
 | 
						|
{ }
 | 
						|
 | 
						|
String ApplyRule::GetTargetType(void) const
 | 
						|
{
 | 
						|
	return m_TargetType;
 | 
						|
}
 | 
						|
 | 
						|
String ApplyRule::GetName(void) const
 | 
						|
{
 | 
						|
	return m_Name;
 | 
						|
}
 | 
						|
 | 
						|
boost::shared_ptr<Expression> ApplyRule::GetExpression(void) const
 | 
						|
{
 | 
						|
	return m_Expression;
 | 
						|
}
 | 
						|
 | 
						|
boost::shared_ptr<Expression> ApplyRule::GetFilter(void) const
 | 
						|
{
 | 
						|
	return m_Filter;
 | 
						|
}
 | 
						|
 | 
						|
String ApplyRule::GetFKVar(void) const
 | 
						|
{
 | 
						|
	return m_FKVar;
 | 
						|
}
 | 
						|
 | 
						|
String ApplyRule::GetFVVar(void) const
 | 
						|
{
 | 
						|
	return m_FVVar;
 | 
						|
}
 | 
						|
 | 
						|
boost::shared_ptr<Expression> ApplyRule::GetFTerm(void) const
 | 
						|
{
 | 
						|
	return m_FTerm;
 | 
						|
}
 | 
						|
 | 
						|
DebugInfo ApplyRule::GetDebugInfo(void) const
 | 
						|
{
 | 
						|
	return m_DebugInfo;
 | 
						|
}
 | 
						|
 | 
						|
Dictionary::Ptr ApplyRule::GetScope(void) const
 | 
						|
{
 | 
						|
	return m_Scope;
 | 
						|
}
 | 
						|
 | 
						|
void ApplyRule::AddRule(const String& sourceType, const String& targetType, const String& name,
 | 
						|
    const boost::shared_ptr<Expression>& expression, const boost::shared_ptr<Expression>& filter, const String& fkvar,
 | 
						|
    const String& fvvar, const boost::shared_ptr<Expression>& fterm, const DebugInfo& di, const Dictionary::Ptr& scope)
 | 
						|
{
 | 
						|
	m_Rules[sourceType].push_back(ApplyRule(targetType, name, expression, filter, fkvar, fvvar, fterm, di, scope));
 | 
						|
}
 | 
						|
 | 
						|
bool ApplyRule::EvaluateFilter(ScriptFrame& frame) const
 | 
						|
{
 | 
						|
	return m_Filter->Evaluate(frame).ToBool();
 | 
						|
}
 | 
						|
 | 
						|
void ApplyRule::RegisterType(const String& sourceType, const std::vector<String>& targetTypes)
 | 
						|
{
 | 
						|
	m_Types[sourceType] = targetTypes;
 | 
						|
}
 | 
						|
 | 
						|
bool ApplyRule::IsValidSourceType(const String& sourceType)
 | 
						|
{
 | 
						|
	return m_Types.find(sourceType) != m_Types.end();
 | 
						|
}
 | 
						|
 | 
						|
bool ApplyRule::IsValidTargetType(const String& sourceType, const String& targetType)
 | 
						|
{
 | 
						|
	TypeMap::const_iterator it = m_Types.find(sourceType);
 | 
						|
 | 
						|
	if (it == m_Types.end())
 | 
						|
		return false;
 | 
						|
 | 
						|
	if (it->second.size() == 1 && targetType == "")
 | 
						|
		return true;
 | 
						|
 | 
						|
	BOOST_FOREACH(const String& type, it->second) {
 | 
						|
		if (type == targetType)
 | 
						|
			return true;
 | 
						|
	}
 | 
						|
 | 
						|
	return false;
 | 
						|
}
 | 
						|
 | 
						|
std::vector<String> ApplyRule::GetTargetTypes(const String& sourceType)
 | 
						|
{
 | 
						|
	TypeMap::const_iterator it = m_Types.find(sourceType);
 | 
						|
 | 
						|
	if (it == m_Types.end())
 | 
						|
		return std::vector<String>();
 | 
						|
 | 
						|
	return it->second;
 | 
						|
}
 | 
						|
 | 
						|
void ApplyRule::AddMatch(void)
 | 
						|
{
 | 
						|
	m_HasMatches = true;
 | 
						|
}
 | 
						|
 | 
						|
bool ApplyRule::HasMatches(void) const
 | 
						|
{
 | 
						|
	return m_HasMatches;
 | 
						|
}
 | 
						|
 | 
						|
std::vector<ApplyRule>& ApplyRule::GetRules(const String& type)
 | 
						|
{
 | 
						|
	RuleMap::iterator it = m_Rules.find(type);
 | 
						|
	if (it == m_Rules.end()) {
 | 
						|
		static std::vector<ApplyRule> emptyList;
 | 
						|
		return emptyList;
 | 
						|
	}
 | 
						|
	return it->second;
 | 
						|
}
 | 
						|
 | 
						|
void ApplyRule::CheckMatches(void)
 | 
						|
{
 | 
						|
	BOOST_FOREACH(const RuleMap::value_type& kv, m_Rules) {
 | 
						|
		BOOST_FOREACH(const ApplyRule& rule, kv.second) {
 | 
						|
			if (!rule.HasMatches())
 | 
						|
				Log(LogWarning, "ApplyRule")
 | 
						|
				    << "Apply rule '" << rule.GetName() << "' (" << rule.GetDebugInfo() << ") for type '" << kv.first << "' does not match anywhere!";
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void ApplyRule::DiscardRules(void)
 | 
						|
{
 | 
						|
	m_Rules.clear();
 | 
						|
}
 | 
						|
 |