/****************************************************************************** * 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/customvarobject.hpp" #include "icinga/macroprocessor.hpp" #include "base/logger.hpp" #include "base/function.hpp" #include "base/exception.hpp" #include "base/objectlock.hpp" #include using namespace icinga; REGISTER_TYPE(CustomVarObject); REGISTER_SCRIPTFUNCTION(ValidateCustomAttributes, &CustomVarObject::ValidateCustomAttributes); boost::signals2::signal CustomVarObject::OnVarsChanged; Dictionary::Ptr CustomVarObject::GetVars(void) const { if (GetOverrideVars()) return GetOverrideVars(); else return GetVarsRaw(); } void CustomVarObject::SetVars(const Dictionary::Ptr& vars, const MessageOrigin& origin) { SetOverrideVars(vars); OnVarsChanged(this, vars, origin); } int CustomVarObject::GetModifiedAttributes(void) const { /* does nothing by default */ return 0; } void CustomVarObject::SetModifiedAttributes(int, const MessageOrigin&) { /* does nothing by default */ } bool CustomVarObject::IsVarOverridden(const String& name) const { Dictionary::Ptr vars_override = GetOverrideVars(); if (!vars_override) return false; return vars_override->Contains(name); } void CustomVarObject::ValidateCustomAttributes(const String& location, const CustomVarObject::Ptr& object) { Dictionary::Ptr vars = object->GetVars(); if (!vars) return; /* string, array, dictionary */ ObjectLock olock(vars); BOOST_FOREACH(const Dictionary::Pair& kv, vars) { const Value& varval = kv.second; if (varval.IsObjectType()) { /* only one dictonary level */ Dictionary::Ptr varval_dict = varval; ObjectLock xlock(varval_dict); BOOST_FOREACH(const Dictionary::Pair& kv_var, varval_dict) { if (kv_var.second.IsEmpty()) continue; if (!MacroProcessor::ValidateMacroString(kv_var.second)) { BOOST_THROW_EXCEPTION(ScriptError("Validation failed for " + location + ": Closing $ not found in macro format string '" + kv_var.second + "'.", object->GetDebugInfo())); } } } else if (varval.IsObjectType()) { /* check all array entries */ Array::Ptr varval_arr = varval; ObjectLock ylock (varval_arr); BOOST_FOREACH(const Value& arrval, varval_arr) { if (arrval.IsEmpty()) continue; if (!MacroProcessor::ValidateMacroString(arrval)) { BOOST_THROW_EXCEPTION(ScriptError("Validation failed for " + location + ": Closing $ not found in macro format string '" + arrval + "'.", object->GetDebugInfo())); } } } else { if (varval.IsEmpty()) continue; String varstr = varval; if (!MacroProcessor::ValidateMacroString(varstr)) { BOOST_THROW_EXCEPTION(ScriptError("Validation failed for " + location + ": Closing $ not found in macro format string '" + varstr + "'.", object->GetDebugInfo())); } } } }