2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-09-10 14:07:32 +02:00
|
|
|
#include "i2-icinga.h"
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-02-13 20:08:09 +01:00
|
|
|
Value MacroProcessor::ResolveMacros(const Value& cmd, const Dictionary::Ptr& macros)
|
|
|
|
{
|
|
|
|
Value result;
|
|
|
|
|
|
|
|
if (cmd.IsScalar()) {
|
|
|
|
result = InternalResolveMacros(cmd, macros);
|
|
|
|
} else {
|
|
|
|
Dictionary::Ptr resultDict = boost::make_shared<Dictionary>();
|
|
|
|
Dictionary::Ptr dict = cmd;
|
|
|
|
|
|
|
|
Value arg;
|
|
|
|
BOOST_FOREACH(tie(tuples::ignore, arg), dict) {
|
|
|
|
resultDict->Add(InternalResolveMacros(arg, macros));
|
|
|
|
}
|
|
|
|
|
|
|
|
result = resultDict;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
String MacroProcessor::InternalResolveMacros(const String& str, const Dictionary::Ptr& macros)
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
2012-08-02 09:38:08 +02:00
|
|
|
size_t offset, pos_first, pos_second;
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String result = str;
|
|
|
|
while ((pos_first = result.FindFirstOf("$", offset)) != String::NPos) {
|
|
|
|
pos_second = result.FindFirstOf("$", pos_first + 1);
|
2012-06-13 13:42:55 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
if (pos_second == String::NPos)
|
2013-02-06 12:51:12 +01:00
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Closing $ not found in macro format String."));
|
2012-06-13 13:42:55 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String name = result.SubStr(pos_first + 1, pos_second - pos_first - 1);
|
|
|
|
|
2013-02-13 20:08:09 +01:00
|
|
|
if (!macros || !macros->Contains(name))
|
2013-02-06 12:51:12 +01:00
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Macro '" + name + "' is not defined."));
|
2013-02-13 20:08:09 +01:00
|
|
|
|
|
|
|
String value = macros->Get(name);
|
|
|
|
result.Replace(pos_first, pos_second - pos_first + 1, value);
|
|
|
|
offset = pos_first + value.GetLength();
|
2012-06-13 13:42:55 +02:00
|
|
|
}
|
|
|
|
|
2012-06-16 20:44:24 +02:00
|
|
|
return result;
|
2012-06-13 13:42:55 +02:00
|
|
|
}
|
2013-02-09 23:02:33 +01:00
|
|
|
|
2013-02-13 20:08:09 +01:00
|
|
|
Dictionary::Ptr MacroProcessor::MergeMacroDicts(const vector<Dictionary::Ptr>& dicts)
|
2013-02-09 23:02:33 +01:00
|
|
|
{
|
|
|
|
Dictionary::Ptr result = boost::make_shared<Dictionary>();
|
|
|
|
|
|
|
|
BOOST_REVERSE_FOREACH(const Dictionary::Ptr& dict, dicts) {
|
2013-02-10 01:56:26 +01:00
|
|
|
if (!dict)
|
|
|
|
continue;
|
|
|
|
|
2013-02-09 23:02:33 +01:00
|
|
|
String key;
|
|
|
|
Value value;
|
|
|
|
BOOST_FOREACH(tie(key, value), dict) {
|
|
|
|
if (!value.IsScalar())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
result->Set(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|