mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-03 21:25:56 +01:00 
			
		
		
		
	git ls-files -z \ |grep -zEe '^lib/' \ |grep -zEe '\.[ch]pp$' \ |xargs -0 perl -p0i -e 's/\n*(?!(?:.|\n))/\n/'
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#include "base/function.hpp"
 | 
						|
#include "base/functionwrapper.hpp"
 | 
						|
#include "base/scriptframe.hpp"
 | 
						|
#include "base/objectlock.hpp"
 | 
						|
#include "base/exception.hpp"
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
static Value FunctionCall(const std::vector<Value>& args)
 | 
						|
{
 | 
						|
	if (args.size() < 1)
 | 
						|
		BOOST_THROW_EXCEPTION(std::invalid_argument("Too few arguments for call()"));
 | 
						|
 | 
						|
	ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
 | 
						|
	Function::Ptr self = static_cast<Function::Ptr>(vframe->Self);
 | 
						|
	REQUIRE_NOT_NULL(self);
 | 
						|
 | 
						|
	std::vector<Value> uargs(args.begin() + 1, args.end());
 | 
						|
	return self->InvokeThis(args[0], uargs);
 | 
						|
}
 | 
						|
 | 
						|
static Value FunctionCallV(const Value& thisArg, const Array::Ptr& args)
 | 
						|
{
 | 
						|
	ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
 | 
						|
	Function::Ptr self = static_cast<Function::Ptr>(vframe->Self);
 | 
						|
	REQUIRE_NOT_NULL(self);
 | 
						|
 | 
						|
	std::vector<Value> uargs;
 | 
						|
 | 
						|
	{
 | 
						|
		ObjectLock olock(args);
 | 
						|
		uargs = std::vector<Value>(args->Begin(), args->End());
 | 
						|
	}
 | 
						|
 | 
						|
	return self->InvokeThis(thisArg, uargs);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
Object::Ptr Function::GetPrototype()
 | 
						|
{
 | 
						|
	static Dictionary::Ptr prototype = new Dictionary({
 | 
						|
		{ "call", new Function("Function#call", FunctionCall) },
 | 
						|
		{ "callv", new Function("Function#callv", FunctionCallV) }
 | 
						|
	});
 | 
						|
 | 
						|
	return prototype;
 | 
						|
}
 |