2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2012-07-09 20:32:02 +02:00
|
|
|
* *
|
|
|
|
* 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-06-13 13:42:55 +02:00
|
|
|
#ifndef MACROPROCESSOR_H
|
|
|
|
#define MACROPROCESSOR_H
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "icinga/i2-icinga.h"
|
2013-03-22 14:40:55 +01:00
|
|
|
#include "icinga/macroresolver.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "base/dictionary.h"
|
2013-09-09 13:44:18 +02:00
|
|
|
#include "base/array.h"
|
2013-03-22 10:58:47 +01:00
|
|
|
#include <boost/function.hpp>
|
2013-03-17 20:19:29 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2012-06-13 13:42:55 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-17 13:35:55 +02:00
|
|
|
/**
|
|
|
|
* Resolves macros.
|
|
|
|
*
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2012-09-10 14:07:32 +02:00
|
|
|
class I2_ICINGA_API MacroProcessor
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-03-22 10:58:47 +01:00
|
|
|
typedef boost::function<String (const String&)> EscapeCallback;
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
static Value ResolveMacros(const Value& str, const std::vector<MacroResolver::Ptr>& resolvers,
|
2013-11-09 14:22:38 +01:00
|
|
|
const CheckResult::Ptr& cr, const EscapeCallback& escapeFn = EscapeCallback(), const Array::Ptr& escapeMacros = Array::Ptr());
|
2013-03-22 14:40:55 +01:00
|
|
|
static bool ResolveMacro(const String& macro, const std::vector<MacroResolver::Ptr>& resolvers,
|
2013-11-09 14:22:38 +01:00
|
|
|
const CheckResult::Ptr& cr, String *result);
|
2013-02-13 20:08:09 +01:00
|
|
|
|
|
|
|
private:
|
2013-03-14 23:52:52 +01:00
|
|
|
MacroProcessor(void);
|
|
|
|
|
2013-03-22 10:58:47 +01:00
|
|
|
static String InternalResolveMacros(const String& str,
|
2013-11-09 14:22:38 +01:00
|
|
|
const std::vector<MacroResolver::Ptr>& resolvers, const CheckResult::Ptr& cr,
|
2013-09-09 13:44:18 +02:00
|
|
|
const EscapeCallback& escapeFn, const Array::Ptr& escapeMacros);
|
2012-06-13 13:42:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-13 11:29:23 +02:00
|
|
|
#endif /* MACROPROCESSOR_H */
|