2014-12-12 15:19:23 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
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"
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
static double DictionaryLen(void)
|
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-12-12 15:38:06 +01:00
|
|
|
static Dictionary::Ptr DictionaryClone(void)
|
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
|
|
|
}
|
|
|
|
|
|
|
|
Object::Ptr Dictionary::GetPrototype(void)
|
|
|
|
{
|
|
|
|
static Dictionary::Ptr prototype;
|
|
|
|
|
|
|
|
if (!prototype) {
|
|
|
|
prototype = new Dictionary();
|
2015-04-16 08:47:26 +02:00
|
|
|
prototype->Set("len", new Function(WrapFunction(DictionaryLen), true));
|
2015-01-21 08:47:45 +01:00
|
|
|
prototype->Set("set", new Function(WrapFunction(DictionarySet)));
|
|
|
|
prototype->Set("remove", new Function(WrapFunction(DictionaryRemove)));
|
2015-04-16 08:47:26 +02:00
|
|
|
prototype->Set("contains", new Function(WrapFunction(DictionaryContains), true));
|
|
|
|
prototype->Set("clone", new Function(WrapFunction(DictionaryClone), true));
|
2014-12-12 15:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|