2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-03-18 11:12:14 +01:00
|
|
|
|
|
|
|
#ifndef CONFIGFRAGMENT_H
|
|
|
|
#define CONFIGFRAGMENT_H
|
|
|
|
|
|
|
|
#include "config/configcompiler.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/debug.hpp"
|
2016-08-12 11:25:36 +02:00
|
|
|
#include "base/exception.hpp"
|
|
|
|
#include "base/application.hpp"
|
2015-03-18 11:12:14 +01:00
|
|
|
|
2018-09-04 15:17:34 +02:00
|
|
|
/* Ensure that the priority is lower than the basic namespace initialization in scriptframe.cpp. */
|
2016-08-28 11:01:45 +02:00
|
|
|
#define REGISTER_CONFIG_FRAGMENT(name, fragment) \
|
2016-08-27 09:35:08 +02:00
|
|
|
INITIALIZE_ONCE_WITH_PRIORITY([]() { \
|
2017-12-15 05:34:46 +01:00
|
|
|
std::unique_ptr<icinga::Expression> expression = icinga::ConfigCompiler::CompileText(name, fragment); \
|
2016-08-27 09:35:08 +02:00
|
|
|
VERIFY(expression); \
|
|
|
|
try { \
|
2018-01-03 10:19:24 +01:00
|
|
|
icinga::ScriptFrame frame(true); \
|
2016-08-27 09:35:08 +02:00
|
|
|
expression->Evaluate(frame); \
|
|
|
|
} catch (const std::exception& ex) { \
|
|
|
|
std::cerr << icinga::DiagnosticInformation(ex) << std::endl; \
|
|
|
|
icinga::Application::Exit(1); \
|
2015-03-18 11:12:14 +01:00
|
|
|
} \
|
2016-08-27 09:35:08 +02:00
|
|
|
}, 5)
|
2015-03-18 11:12:14 +01:00
|
|
|
|
|
|
|
#endif /* CONFIGFRAGMENT_H */
|