From 0915b3ef56dfac3113cce55a59a5765dc94976be Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:34:54 +0200 Subject: Adding upstream version 2.13.6. Signed-off-by: Daniel Baumann --- lib/base/function.hpp | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 lib/base/function.hpp (limited to 'lib/base/function.hpp') diff --git a/lib/base/function.hpp b/lib/base/function.hpp new file mode 100644 index 0000000..e0067d2 --- /dev/null +++ b/lib/base/function.hpp @@ -0,0 +1,89 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#ifndef FUNCTION_H +#define FUNCTION_H + +#include "base/i2-base.hpp" +#include "base/function-ti.hpp" +#include "base/value.hpp" +#include "base/functionwrapper.hpp" +#include "base/scriptglobal.hpp" +#include + +namespace icinga +{ + +/** + * A script function that can be used to execute a script task. + * + * @ingroup base + */ +class Function final : public ObjectImpl +{ +public: + DECLARE_OBJECT(Function); + + typedef std::function& arguments)> Callback; + + template + Function(const String& name, F function, const std::vector& args = std::vector(), + bool side_effect_free = false, bool deprecated = false) + : Function(name, WrapFunction(function), args, side_effect_free, deprecated) + { } + + Value Invoke(const std::vector& arguments = std::vector()); + Value InvokeThis(const Value& otherThis, const std::vector& arguments = std::vector()); + + bool IsSideEffectFree() const + { + return GetSideEffectFree(); + } + + bool IsDeprecated() const + { + return GetDeprecated(); + } + + static Object::Ptr GetPrototype(); + + Object::Ptr Clone() const override; + +private: + Callback m_Callback; + + Function(const String& name, Callback function, const std::vector& args, + bool side_effect_free, bool deprecated); +}; + +/* Ensure that the priority is lower than the basic namespace initialization in scriptframe.cpp. */ +#define REGISTER_FUNCTION(ns, name, callback, args) \ + INITIALIZE_ONCE_WITH_PRIORITY([]() { \ + Function::Ptr sf = new icinga::Function(#ns "#" #name, callback, String(args).Split(":"), false); \ + Namespace::Ptr nsp = ScriptGlobal::Get(#ns); \ + nsp->SetAttribute(#name, new ConstEmbeddedNamespaceValue(sf)); \ + }, 10) + +#define REGISTER_SAFE_FUNCTION(ns, name, callback, args) \ + INITIALIZE_ONCE_WITH_PRIORITY([]() { \ + Function::Ptr sf = new icinga::Function(#ns "#" #name, callback, String(args).Split(":"), true); \ + Namespace::Ptr nsp = ScriptGlobal::Get(#ns); \ + nsp->SetAttribute(#name, new ConstEmbeddedNamespaceValue(sf)); \ + }, 10) + +#define REGISTER_FUNCTION_NONCONST(ns, name, callback, args) \ + INITIALIZE_ONCE_WITH_PRIORITY([]() { \ + Function::Ptr sf = new icinga::Function(#ns "#" #name, callback, String(args).Split(":"), false); \ + Namespace::Ptr nsp = ScriptGlobal::Get(#ns); \ + nsp->SetAttribute(#name, new EmbeddedNamespaceValue(sf)); \ + }, 10) + +#define REGISTER_SAFE_FUNCTION_NONCONST(ns, name, callback, args) \ + INITIALIZE_ONCE_WITH_PRIORITY([]() { \ + Function::Ptr sf = new icinga::Function(#ns "#" #name, callback, String(args).Split(":"), true); \ + Namespace::Ptr nsp = ScriptGlobal::Get(#ns); \ + nsp->SetAttribute(#name, new EmbeddedNamespaceValue(sf)); \ + }, 10) + +} + +#endif /* FUNCTION_H */ -- cgit v1.2.3