2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-01-14 07:36:59 +01:00
|
|
|
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
|
|
|
#include "base/functionwrapper.hpp"
|
2015-01-14 07:36:59 +01:00
|
|
|
#include "base/scriptframe.hpp"
|
2015-01-15 12:52:23 +01:00
|
|
|
#include "base/objectlock.hpp"
|
2015-01-14 07:36:59 +01:00
|
|
|
#include "base/exception.hpp"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-01-21 08:47:45 +01:00
|
|
|
static Value FunctionCall(const std::vector<Value>& args)
|
2015-01-14 07:36:59 +01:00
|
|
|
{
|
|
|
|
if (args.size() < 1)
|
2015-01-14 15:55:28 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Too few arguments for call()"));
|
2015-01-14 07:36:59 +01:00
|
|
|
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2015-01-21 08:47:45 +01:00
|
|
|
Function::Ptr self = static_cast<Function::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2015-01-14 07:36:59 +01:00
|
|
|
|
|
|
|
std::vector<Value> uargs(args.begin() + 1, args.end());
|
2017-11-30 08:19:58 +01:00
|
|
|
return self->InvokeThis(args[0], uargs);
|
2015-01-14 07:36:59 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 08:47:45 +01:00
|
|
|
static Value FunctionCallV(const Value& thisArg, const Array::Ptr& args)
|
2015-01-15 12:52:23 +01:00
|
|
|
{
|
|
|
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
2015-01-21 08:47:45 +01:00
|
|
|
Function::Ptr self = static_cast<Function::Ptr>(vframe->Self);
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(self);
|
2015-01-15 12:52:23 +01:00
|
|
|
|
|
|
|
std::vector<Value> uargs;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(args);
|
|
|
|
uargs = std::vector<Value>(args->Begin(), args->End());
|
|
|
|
}
|
|
|
|
|
2017-11-30 08:19:58 +01:00
|
|
|
return self->InvokeThis(thisArg, uargs);
|
2015-01-15 12:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Object::Ptr Function::GetPrototype()
|
2015-01-14 07:36:59 +01:00
|
|
|
{
|
2018-01-11 11:17:38 +01:00
|
|
|
static Dictionary::Ptr prototype = new Dictionary({
|
|
|
|
{ "call", new Function("Function#call", FunctionCall) },
|
|
|
|
{ "callv", new Function("Function#callv", FunctionCallV) }
|
|
|
|
});
|
2015-01-14 07:36:59 +01:00
|
|
|
|
|
|
|
return prototype;
|
|
|
|
}
|
|
|
|
|