2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-10-16 10:41:54 +02:00
|
|
|
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "base/function-ti.cpp"
|
2017-03-27 14:26:56 +02:00
|
|
|
#include "base/array.hpp"
|
2016-08-08 13:53:45 +02:00
|
|
|
#include "base/scriptframe.hpp"
|
2012-07-14 15:59:59 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2016-08-10 15:40:02 +02:00
|
|
|
REGISTER_TYPE_WITH_PROTOTYPE(Function, Function::GetPrototype());
|
2014-12-08 08:36:03 +01:00
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
Function::Function(const String& name, Callback function, const std::vector<String>& args,
|
2017-12-19 15:50:05 +01:00
|
|
|
bool side_effect_free, bool deprecated)
|
2018-01-04 08:54:18 +01:00
|
|
|
: m_Callback(std::move(function))
|
2016-08-10 15:40:02 +02:00
|
|
|
{
|
|
|
|
SetName(name, true);
|
|
|
|
SetSideEffectFree(side_effect_free, true);
|
|
|
|
SetDeprecated(deprecated, true);
|
2017-03-27 14:26:56 +02:00
|
|
|
SetArguments(Array::FromVector(args), true);
|
2016-08-10 15:40:02 +02:00
|
|
|
}
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2015-01-21 08:47:45 +01:00
|
|
|
Value Function::Invoke(const std::vector<Value>& arguments)
|
2012-07-14 15:59:59 +02:00
|
|
|
{
|
2017-12-18 10:30:20 +01:00
|
|
|
ScriptFrame frame(false);
|
2016-08-08 13:53:45 +02:00
|
|
|
return m_Callback(arguments);
|
|
|
|
}
|
|
|
|
|
2017-11-30 08:19:58 +01:00
|
|
|
Value Function::InvokeThis(const Value& otherThis, const std::vector<Value>& arguments)
|
2016-08-08 13:53:45 +02:00
|
|
|
{
|
2018-01-03 10:19:24 +01:00
|
|
|
ScriptFrame frame(false, otherThis);
|
2013-03-25 18:36:15 +01:00
|
|
|
return m_Callback(arguments);
|
2012-07-14 15:59:59 +02:00
|
|
|
}
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Object::Ptr Function::Clone() const
|
2015-11-11 14:18:25 +01:00
|
|
|
{
|
|
|
|
return const_cast<Function *>(this);
|
|
|
|
}
|