2014-12-12 15:19:23 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2014-12-12 15:19:23 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
self->Remove(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
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);
|
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-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-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-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" }) },
|
|
|
|
{ "contains", new Function("Dictionary#contains", DictionaryContains, { "key" }, true) },
|
|
|
|
{ "shallow_clone", new Function("Dictionary#shallow_clone", DictionaryShallowClone, {}, true) },
|
|
|
|
{ "keys", new Function("Dictionary#keys", DictionaryKeys, {}, true) },
|
|
|
|
{ "values", new Function("Dictionary#values", DictionaryValues, {}, true) }
|
|
|
|
});
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|