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/object.hpp"
|
|
|
|
#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;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static String ObjectToString()
|
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
|
|
|
Object::Ptr self = static_cast<Object::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->ToString();
|
|
|
|
}
|
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
static void ObjectNotifyAttribute(const String& attribute)
|
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Object::Ptr self = static_cast<Object::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2015-08-04 14:47:44 +02:00
|
|
|
self->NotifyField(self->GetReflectionType()->GetFieldId(attribute));
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static Object::Ptr ObjectClone()
|
2015-08-17 13:59:49 +02:00
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
|
|
|
Object::Ptr self = static_cast<Object::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2015-08-17 13:59:49 +02:00
|
|
|
return self->Clone();
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Object::Ptr Object::GetPrototype()
|
2014-12-12 15:19:23 +01:00
|
|
|
{
|
2018-01-11 11:17:38 +01:00
|
|
|
static Dictionary::Ptr prototype = new Dictionary({
|
|
|
|
{ "to_string", new Function("Object#to_string", ObjectToString, {}, true) },
|
|
|
|
{ "notify_attribute", new Function("Object#notify_attribute", ObjectNotifyAttribute, { "attribute" }, false) },
|
|
|
|
{ "clone", new Function("Object#clone", ObjectClone, {}, true) }
|
|
|
|
});
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|