2012-10-16 04:41:54 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2018-01-02 06:06:00 -05:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2012-10-16 04:41:54 -04:00
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2015-01-21 02:47:45 -05:00
|
|
|
#include "base/function.hpp"
|
2016-08-10 09:40:02 -04:00
|
|
|
#include "base/function.tcpp"
|
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
|
|
|
|
2017-03-27 08:26:56 -04:00
|
|
|
Function::Function(const String& name, const Callback& function, const std::vector<String>& args,
|
2017-12-19 09:50:05 -05:00
|
|
|
bool side_effect_free, bool deprecated)
|
2016-08-10 09:40:02 -04:00
|
|
|
: m_Callback(function)
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|