2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
#include "base/dictionary.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
|
|
|
#include "base/functionwrapper.hpp"
|
2014-12-12 15:33:02 +01:00
|
|
|
#include "base/scriptframe.hpp"
|
2015-08-11 13:56:42 +02:00
|
|
|
#include "base/array.hpp"
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static double DictionaryLen()
|
2014-12-12 15:19:23 +01:00
|
|
|
{
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2014-12-12 15:19:23 +01:00
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2014-12-12 15:19:23 +01:00
|
|
|
return self->GetLength();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DictionarySet(const String& key, const Value& value)
|
|
|
|
{
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2014-12-12 15:19:23 +01:00
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2014-12-12 15:19:23 +01:00
|
|
|
self->Set(key, value);
|
|
|
|
}
|
|
|
|
|
2015-07-30 20:58:52 +02:00
|
|
|
static Value DictionaryGet(const String& key)
|
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2015-07-30 20:58:52 +02:00
|
|
|
return self->Get(key);
|
|
|
|
}
|
|
|
|
|
2014-12-12 15:19:23 +01:00
|
|
|
static void DictionaryRemove(const String& key)
|
|
|
|
{
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2014-12-12 15:19:23 +01:00
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2014-12-12 15:19:23 +01:00
|
|
|
self->Remove(key);
|
|
|
|
}
|
|
|
|
|
2018-08-02 08:45:19 +02:00
|
|
|
static void DictionaryClear()
|
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
|
|
|
REQUIRE_NOT_NULL(self);
|
|
|
|
self->Clear();
|
|
|
|
}
|
|
|
|
|
2014-12-12 15:19:23 +01:00
|
|
|
static bool DictionaryContains(const String& key)
|
|
|
|
{
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2014-12-12 15:19:23 +01:00
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2014-12-12 15:19:23 +01:00
|
|
|
return self->Contains(key);
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static Dictionary::Ptr DictionaryShallowClone()
|
2014-12-12 15:19:23 +01:00
|
|
|
{
|
2014-12-12 15:33:02 +01:00
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2014-12-12 15:19:23 +01:00
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2014-12-12 15:38:06 +01:00
|
|
|
return self->ShallowClone();
|
2014-12-12 15:19:23 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static Array::Ptr DictionaryKeys()
|
2015-08-11 13:56:42 +02:00
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2018-01-30 11:26:07 +01:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData keys;
|
2015-08-11 13:56:42 +02:00
|
|
|
ObjectLock olock(self);
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Dictionary::Pair& kv : self) {
|
2018-01-11 11:17:38 +01:00
|
|
|
keys.push_back(kv.first);
|
2015-08-11 13:56:42 +02:00
|
|
|
}
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(keys));
|
2015-08-11 13:56:42 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static Array::Ptr DictionaryValues()
|
2017-05-15 15:54:48 +02:00
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2018-01-30 11:26:07 +01:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData values;
|
2017-05-15 15:54:48 +02:00
|
|
|
ObjectLock olock(self);
|
|
|
|
for (const Dictionary::Pair& kv : self) {
|
2018-01-11 11:17:38 +01:00
|
|
|
values.push_back(kv.second);
|
2017-05-15 15:54:48 +02:00
|
|
|
}
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(values));
|
2017-05-15 15:54:48 +02:00
|
|
|
}
|
|
|
|
|
2018-01-30 12:19:34 +01:00
|
|
|
static void DictionaryFreeze()
|
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Dictionary::Ptr self = static_cast<Dictionary::Ptr>(vframe->Self);
|
|
|
|
self->Freeze();
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Object::Ptr Dictionary::GetPrototype()
|
2014-12-12 15:19:23 +01:00
|
|
|
{
|
2018-01-11 11:17:38 +01:00
|
|
|
static Dictionary::Ptr prototype = new Dictionary({
|
|
|
|
{ "len", new Function("Dictionary#len", DictionaryLen, {}, true) },
|
|
|
|
{ "set", new Function("Dictionary#set", DictionarySet, { "key", "value" }) },
|
|
|
|
{ "get", new Function("Dictionary#get", DictionaryGet, { "key" }) },
|
|
|
|
{ "remove", new Function("Dictionary#remove", DictionaryRemove, { "key" }) },
|
2018-08-02 08:45:19 +02:00
|
|
|
{ "clear", new Function("Dictionary#clear", DictionaryClear, {}) },
|
2018-01-11 11:17:38 +01:00
|
|
|
{ "contains", new Function("Dictionary#contains", DictionaryContains, { "key" }, true) },
|
|
|
|
{ "shallow_clone", new Function("Dictionary#shallow_clone", DictionaryShallowClone, {}, true) },
|
|
|
|
{ "keys", new Function("Dictionary#keys", DictionaryKeys, {}, true) },
|
2018-01-30 12:19:34 +01:00
|
|
|
{ "values", new Function("Dictionary#values", DictionaryValues, {}, true) },
|
|
|
|
{ "freeze", new Function("Dictionary#freeze", DictionaryFreeze, {}) }
|
2018-01-11 11:17:38 +01:00
|
|
|
});
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|