2015-03-18 11:12:14 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIGFRAGMENT_H
|
|
|
|
#define CONFIGFRAGMENT_H
|
|
|
|
|
|
|
|
#include "config/configcompiler.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/debug.hpp"
|
|
|
|
|
|
|
|
#define REGISTER_CONFIG_FRAGMENT(id, name, fragment) \
|
|
|
|
namespace { \
|
|
|
|
void RegisterConfigFragment(void) \
|
|
|
|
{ \
|
2015-08-26 06:57:24 +02:00
|
|
|
icinga::Expression *expression = icinga::ConfigCompiler::CompileText(name, fragment); \
|
2015-03-18 14:36:46 +01:00
|
|
|
VERIFY(expression); \
|
2015-03-18 11:12:14 +01:00
|
|
|
icinga::ScriptFrame frame; \
|
|
|
|
expression->Evaluate(frame); \
|
|
|
|
delete expression; \
|
|
|
|
} \
|
|
|
|
\
|
2015-03-18 13:24:31 +01:00
|
|
|
INITIALIZE_ONCE_WITH_PRIORITY(RegisterConfigFragment, 5); \
|
2015-03-18 11:12:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIGFRAGMENT_H */
|