2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
#ifndef SCRIPTGLOBAL_H
|
|
|
|
#define SCRIPTGLOBAL_H
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
#include "base/i2-base.hpp"
|
2018-08-07 13:55:41 +02:00
|
|
|
#include "base/namespace.hpp"
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
namespace icinga
|
2014-11-20 06:53:57 +01:00
|
|
|
{
|
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
/**
|
|
|
|
* Global script variables.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class ScriptGlobal
|
2014-11-20 06:53:57 +01:00
|
|
|
{
|
2014-12-14 11:33:45 +01:00
|
|
|
public:
|
2017-12-14 15:37:20 +01:00
|
|
|
static Value Get(const String& name, const Value *defaultValue = nullptr);
|
2023-02-08 11:50:40 +01:00
|
|
|
static void Set(const String& name, const Value& value);
|
2018-08-07 13:55:41 +02:00
|
|
|
static void SetConst(const String& name, const Value& value);
|
2014-12-15 12:57:40 +01:00
|
|
|
static bool Exists(const String& name);
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
static void WriteToFile(const String& filename);
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2018-08-07 13:55:41 +02:00
|
|
|
static Namespace::Ptr GetGlobals();
|
2014-11-20 06:53:57 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
private:
|
2018-08-07 13:55:41 +02:00
|
|
|
static Namespace::Ptr m_Globals;
|
2014-12-14 11:33:45 +01:00
|
|
|
};
|
2014-11-20 06:53:57 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
#endif /* SCRIPTGLOBAL_H */
|