forked from Icinga/icinga2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson-script.cpp
More file actions
39 lines (31 loc) · 1.14 KB
/
Copy pathjson-script.cpp
File metadata and controls
39 lines (31 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
#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);
}
static Value JsonDecodeShim(const String& data)
{
/* Wrap JsonDecode() so that the DSL function keeps its single-argument
* signature. JsonDecode()'s depthLimit parameter has a default value, but
* function pointers don't carry defaults, so binding it directly would make
* depthLimit a required argument and break Json.decode("..."). See #10913.
*/
return JsonDecode(data);
}
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", JsonDecodeShim, { "value" }, true));
jsonNS->Freeze();
Namespace::Ptr systemNS = ScriptGlobal::Get("System");
systemNS->Set("Json", jsonNS, true);
});