icinga2/lib/base/initialize.hpp

50 lines
1.2 KiB
C++
Raw Normal View History

/* 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"
#include <functional>
2013-08-01 11:07:26 +02:00
namespace icinga
{
/**
* Priority values for use with the INITIALIZE_ONCE_WITH_PRIORITY macro.
*
* The values are given in the order of initialization.
*/
enum class InitializePriority {
CreateNamespaces,
InitIcingaApplication,
RegisterTypeType,
RegisterObjectType,
RegisterPrimitiveTypes,
RegisterBuiltinTypes,
RegisterFunctions,
RegisterTypes,
EvaluateConfigFragments,
Default,
FreezeNamespaces,
};
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__)
bool InitializeOnceHelper(const std::function<void()>& func, InitializePriority priority = InitializePriority::Default);
2013-08-01 11:07:26 +02: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)); \
} }
2013-08-01 11:07:26 +02: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)); \
} }
2013-08-01 11:07:26 +02:00
}
2013-08-01 11:10:02 +02:00
#endif /* INITIALIZE_H */