icinga2/lib/base/function.cpp

38 lines
941 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2012-10-16 10:41:54 +02:00
#include "base/function.hpp"
2018-01-18 13:50:38 +01:00
#include "base/function-ti.cpp"
#include "base/array.hpp"
#include "base/scriptframe.hpp"
2012-07-14 15:59:59 +02:00
using namespace icinga;
REGISTER_TYPE_WITH_PROTOTYPE(Function, Function::GetPrototype());
Function::Function(const String& name, Callback function, const std::vector<String>& args,
bool side_effect_free, bool deprecated)
: m_Callback(std::move(function))
{
SetName(name, true);
SetSideEffectFree(side_effect_free, true);
SetDeprecated(deprecated, true);
SetArguments(Array::FromVector(args), true);
}
2012-07-14 15:59:59 +02:00
Value Function::Invoke(const std::vector<Value>& arguments)
2012-07-14 15:59:59 +02:00
{
ScriptFrame frame(false);
return m_Callback(arguments);
}
Value Function::InvokeThis(const Value& otherThis, const std::vector<Value>& arguments)
{
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
Object::Ptr Function::Clone() const
{
return const_cast<Function *>(this);
}