2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-08-01 11:07:26 +02:00
|
|
|
|
2013-08-01 11:10:02 +02:00
|
|
|
#ifndef INITIALIZE_H
|
|
|
|
#define INITIALIZE_H
|
2013-08-01 11:07:26 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
2022-12-12 11:25:54 +01:00
|
|
|
#include <functional>
|
2013-08-01 11:07:26 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2022-12-12 13:08:41 +01:00
|
|
|
/**
|
|
|
|
* Priority values for use with the INITIALIZE_ONCE_WITH_PRIORITY macro.
|
|
|
|
*
|
|
|
|
* The values are given in the order of initialization.
|
|
|
|
*/
|
2022-12-12 12:32:59 +01:00
|
|
|
enum class InitializePriority {
|
2022-12-12 13:08:41 +01:00
|
|
|
CreateNamespaces,
|
|
|
|
InitIcingaApplication,
|
|
|
|
RegisterTypeType,
|
|
|
|
RegisterObjectType,
|
|
|
|
RegisterPrimitiveTypes,
|
|
|
|
RegisterBuiltinTypes,
|
|
|
|
RegisterFunctions,
|
|
|
|
RegisterTypes,
|
|
|
|
EvaluateConfigFragments,
|
|
|
|
Default,
|
2023-01-09 17:09:46 +01:00
|
|
|
FreezeNamespaces,
|
2022-12-12 12:32:59 +01:00
|
|
|
};
|
|
|
|
|
2017-12-14 08:47:04 +01:00
|
|
|
#define I2_TOKENPASTE(x, y) x ## y
|
|
|
|
#define I2_TOKENPASTE2(x, y) I2_TOKENPASTE(x, y)
|
|
|
|
|
|
|
|
#define I2_UNIQUE_NAME(prefix) I2_TOKENPASTE2(prefix, __COUNTER__)
|
|
|
|
|
2022-12-12 12:32:59 +01:00
|
|
|
bool InitializeOnceHelper(const std::function<void()>& func, InitializePriority priority = InitializePriority::Default);
|
2013-08-01 11:07:26 +02:00
|
|
|
|
2015-03-18 13:24:31 +01:00
|
|
|
#define INITIALIZE_ONCE(func) \
|
2017-12-14 08:47:04 +01:00
|
|
|
namespace { namespace I2_UNIQUE_NAME(io) { \
|
2017-12-31 07:22:16 +01:00
|
|
|
bool l_InitializeOnce(icinga::InitializeOnceHelper(func)); \
|
2014-08-30 18:08:28 +02:00
|
|
|
} }
|
2013-08-01 11:07:26 +02:00
|
|
|
|
2015-03-18 13:24:31 +01:00
|
|
|
#define INITIALIZE_ONCE_WITH_PRIORITY(func, priority) \
|
2017-12-14 08:47:04 +01:00
|
|
|
namespace { namespace I2_UNIQUE_NAME(io) { \
|
2017-12-31 07:22:16 +01:00
|
|
|
bool l_InitializeOnce(icinga::InitializeOnceHelper(func, priority)); \
|
2015-03-18 13:24:31 +01:00
|
|
|
} }
|
2013-08-01 11:07:26 +02:00
|
|
|
}
|
|
|
|
|
2013-08-01 11:10:02 +02:00
|
|
|
#endif /* INITIALIZE_H */
|