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/function-script.cpp | 50 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 lib/base/function-script.cpp (limited to 'lib/base/function-script.cpp') diff --git a/lib/base/function-script.cpp b/lib/base/function-script.cpp new file mode 100644 index 0000000..e59e84d --- /dev/null +++ b/lib/base/function-script.cpp @@ -0,0 +1,50 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/function.hpp" +#include "base/functionwrapper.hpp" +#include "base/scriptframe.hpp" +#include "base/objectlock.hpp" +#include "base/exception.hpp" + +using namespace icinga; + +static Value FunctionCall(const std::vector& args) +{ + if (args.size() < 1) + BOOST_THROW_EXCEPTION(std::invalid_argument("Too few arguments for call()")); + + ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); + Function::Ptr self = static_cast(vframe->Self); + REQUIRE_NOT_NULL(self); + + std::vector uargs(args.begin() + 1, args.end()); + return self->InvokeThis(args[0], uargs); +} + +static Value FunctionCallV(const Value& thisArg, const Array::Ptr& args) +{ + ScriptFrame *vframe = ScriptFrame::GetCurrentFrame(); + Function::Ptr self = static_cast(vframe->Self); + REQUIRE_NOT_NULL(self); + + std::vector uargs; + + { + ObjectLock olock(args); + uargs = std::vector(args->Begin(), args->End()); + } + + return self->InvokeThis(thisArg, uargs); +} + + +Object::Ptr Function::GetPrototype() +{ + static Dictionary::Ptr prototype = new Dictionary({ + { "call", new Function("Function#call", FunctionCall) }, + { "callv", new Function("Function#callv", FunctionCallV) } + }); + + return prototype; +} + -- cgit v1.2.3