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