From 56ae875861ab260b80a030f50c4aff9f9dc8fff0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 13:32:39 +0200 Subject: Adding upstream version 2.14.2. Signed-off-by: Daniel Baumann --- lib/base/json-script.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/base/json-script.cpp (limited to 'lib/base/json-script.cpp') diff --git a/lib/base/json-script.cpp b/lib/base/json-script.cpp new file mode 100644 index 0000000..90595c8 --- /dev/null +++ b/lib/base/json-script.cpp @@ -0,0 +1,28 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/dictionary.hpp" +#include "base/function.hpp" +#include "base/functionwrapper.hpp" +#include "base/scriptframe.hpp" +#include "base/initialize.hpp" +#include "base/json.hpp" + +using namespace icinga; + +static String JsonEncodeShim(const Value& value) +{ + return JsonEncode(value); +} + +INITIALIZE_ONCE([]() { + Namespace::Ptr jsonNS = new Namespace(true); + + /* Methods */ + jsonNS->Set("encode", new Function("Json#encode", JsonEncodeShim, { "value" }, true)); + jsonNS->Set("decode", new Function("Json#decode", JsonDecode, { "value" }, true)); + + jsonNS->Freeze(); + + Namespace::Ptr systemNS = ScriptGlobal::Get("System"); + systemNS->Set("Json", jsonNS, true); +}); -- cgit v1.2.3