From 56ae875861ab260b80a030f50c4aff9f9dc8fff0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 13:32:39 +0200 Subject: Adding upstream version 2.14.2. Signed-off-by: Daniel Baumann --- lib/base/typetype-script.cpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 lib/base/typetype-script.cpp (limited to 'lib/base/typetype-script.cpp') diff --git a/lib/base/typetype-script.cpp b/lib/base/typetype-script.cpp new file mode 100644 index 0000000..9077de8 --- /dev/null +++ b/lib/base/typetype-script.cpp @@ -0,0 +1,31 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/type.hpp" +#include "base/dictionary.hpp" +#include "base/function.hpp" +#include "base/functionwrapper.hpp" +#include "base/scriptframe.hpp" + +using namespace icinga; + +static void TypeRegisterAttributeHandler(const String& fieldName, const Function::Ptr& callback) +{ + ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); + Type::Ptr self = static_cast(vframe->Self); + REQUIRE_NOT_NULL(self); + + int fid = self->GetFieldId(fieldName); + self->RegisterAttributeHandler(fid, [callback](const Object::Ptr& object, const Value& cookie) { + callback->Invoke({ object }); + }); +} + +Object::Ptr TypeType::GetPrototype() +{ + static Dictionary::Ptr prototype = new Dictionary({ + { "register_attribute_handler", new Function("Type#register_attribute_handler", TypeRegisterAttributeHandler, { "field", "callback" }, false) } + }); + + return prototype; +} + -- cgit v1.2.3