// The MIT License (MIT) // Copyright (c) 2013-2015 Danny Y., Rapptz // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including without limitation the rights to // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of // the Software, and to permit persons to whom the Software is furnished to do so, // subject to the following conditions: // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef SOL_FUNCTION_HPP #define SOL_FUNCTION_HPP #include "reference.hpp" #include "tuple.hpp" #include "stack.hpp" #include "function_types.hpp" #include "usertype_traits.hpp" #include "resolve.hpp" #include #include #include namespace sol { class function_result { private: lua_State* L; int index; int returncount; int popcount; call_error error; template stack::get_return get(types, indices) const { return stack::get(L, index); } template stack::get_return get(types, indices) const { auto r = std::make_tuple(stack::get(L, index + I)...); return r; } public: function_result() = default; function_result(lua_State* L, int index = -1, int returncount = 0, int popcount = 0, call_error error = call_error::ok): L(L), index(index), returncount(returncount), popcount(popcount), error(error) { } function_result(const function_result&) = default; function_result& operator=(const function_result&) = default; function_result(function_result&& o) : L(o.L), index(o.index), returncount(o.returncount), error(o.error) { // Must be manual, otherwise destructor will screw us // return count being 0 is enough to keep things clean // but will be thorough o.L = nullptr; o.index = 0; o.returncount = 0; o.popcount = 0; o.error = call_error::runtime; } function_result& operator=(function_result&& o) { L = o.L; index = o.index; returncount = o.returncount; error = o.error; // Must be manual, otherwise destructor will screw us // return count being 0 is enough to keep things clean // but will be thorough o.L = nullptr; o.index = 0; o.returncount = 0; o.popcount = 0; o.error = call_error::runtime; return *this; } bool valid() const { return error == call_error::ok; } template T get() const { tuple_types> tr; return get(tr, tr); } operator std::string() const { return get(); } template, const char*>>, Not, char>>, Not, std::string>>, Not, std::initializer_list>>> = 0> operator T () const { return get(); } ~function_result() { stack::remove(L, index, popcount); } }; class fast_function : public reference { private: void luacall( std::ptrdiff_t argcount, std::ptrdiff_t resultcount ) const { lua_callk( lua_state( ), static_cast( argcount ), static_cast( resultcount ), 0, nullptr ); } template std::tuple invoke( indices, types, std::ptrdiff_t n ) const { luacall( n, sizeof...( Ret ), h ); int nreturns = static_cast( sizeof...( Ret ) ); int stacksize = lua_gettop( lua_state( ) ); int firstreturn = std::max( 0, stacksize - nreturns ) + 1; auto r = std::make_tuple( stack::get( lua_state( ), firstreturn + I )... ); lua_pop( lua_state( ), nreturns ); return r; } template Ret invoke( indices, types, std::ptrdiff_t n ) const { luacall( n, 1 ); return stack::pop( lua_state( ) ); } template void invoke( indices, types, std::ptrdiff_t n ) const { luacall( n, 0 ); } function_result invoke( indices<>, types<>, std::ptrdiff_t n ) const { int stacksize = lua_gettop( lua_state( ) ); int firstreturn = std::max( 0, stacksize - static_cast( n ) - 1 ); int poststacksize = 0; int returncount = 0; try { luacall( n, LUA_MULTRET ); poststacksize = lua_gettop( lua_state( ) ); returncount = poststacksize - firstreturn; } // Handle C++ errors thrown from C++ functions bound inside of lua catch ( const std::exception& error ) { stack::push( lua_state( ), error.what( ) ); return function_result( lua_state( ), firstreturn, 0, 1, call_error::runtime ); } catch ( ... ) { throw; } return function_result( lua_state( ), firstreturn, returncount, returncount, call_error::ok ); } public: fast_function( ) = default; fast_function( lua_State* L, int index = -1 ) : reference( L, index ) { type_assert( L, index, type::function ); } fast_function( const fast_function& ) = default; fast_function& operator=( const fast_function& ) = default; fast_function( fast_function&& ) = default; fast_function& operator=( fast_function&& ) = default; template function_result operator()( Args&&... args ) const { return call<>( std::forward( args )... ); } template auto operator()( types, Args&&... args ) const -> decltype( invoke( types( ), types( ), 0, std::declval( ) ) ) { return call( std::forward( args )... ); } template auto call( Args&&... args ) const -> decltype( invoke( types( ), types( ), 0 ) ) { push( ); int pushcount = stack::push_args( lua_state( ), std::forward( args )... ); auto tr = types( ); return invoke( tr, tr, pushcount ); } }; class safe_function : public reference { private: static reference& handler_storage() { static sol::reference h; return h; } public: static const reference& get_default_handler () { return handler_storage(); } static void set_default_handler( reference& ref ) { handler_storage() = ref; } private: struct handler { const reference& target; int stackindex; handler(const reference& target) : target(target), stackindex(0) { if (target.valid()) { stackindex = lua_gettop(target.lua_state()) + 1; target.push(); } } ~handler() { if (stackindex > 0) { lua_remove(target.lua_state(), stackindex); } } }; int luacall(std::ptrdiff_t argcount, std::ptrdiff_t resultcount, handler& h) const { return lua_pcallk(lua_state(), static_cast(argcount), static_cast(resultcount), h.stackindex, 0, nullptr); } template std::tuple invoke(indices, types, std::ptrdiff_t n, handler& h) const { luacall(n, sizeof...(Ret), h); int nreturns = static_cast(sizeof...(Ret)); int stacksize = lua_gettop(lua_state()); int firstreturn = std::max(0, stacksize - nreturns) + 1; auto r = std::make_tuple(stack::get(lua_state(), firstreturn + I)...); lua_pop(lua_state(), nreturns); return r; } template Ret invoke(indices, types, std::ptrdiff_t n, handler& h) const { luacall(n, 1, h); return stack::pop(lua_state()); } template void invoke(indices, types, std::ptrdiff_t n, handler& h) const { luacall(n, 0, h); } function_result invoke(indices<>, types<>, std::ptrdiff_t n, handler& h) const { bool handlerpushed = error_handler.valid(); int stacksize = lua_gettop(lua_state()); int firstreturn = std::max(0, stacksize - static_cast(n) - 1); int returncount = 0; call_error code = call_error::ok; try { code = static_cast(luacall(n, LUA_MULTRET, h)); int poststacksize = lua_gettop( lua_state( ) ); returncount = poststacksize - firstreturn; } // Handle C++ errors thrown from C++ functions bound inside of lua catch (const std::exception& error) { code = call_error::runtime; h.stackindex = 0; stack::push(lua_state(), error.what()); return function_result( lua_state( ), firstreturn, 0, 1, call_error::runtime ); } catch (...) { throw; } return function_result(lua_state(), firstreturn + ( handlerpushed ? 0 : 1 ), returncount, returncount, code); } public: sol::reference error_handler; safe_function() = default; safe_function(lua_State* L, int index = -1): reference(L, index), error_handler(get_default_handler()) { type_assert(L, index, type::function); } safe_function(const safe_function&) = default; safe_function& operator=(const safe_function&) = default; safe_function( safe_function&& ) = default; safe_function& operator=( safe_function&& ) = default; template function_result operator()(Args&&... args) const { return call<>(std::forward(args)...); } template auto operator()(types, Args&&... args) const -> decltype(invoke(types(), types(), 0, std::declval())) { return call(std::forward(args)...); } template auto call(Args&&... args) const -> decltype(invoke(types(), types(), 0, std::declval())) { handler h(error_handler); push(); int pushcount = stack::push_args(lua_state(), std::forward(args)...); auto tr = types(); return invoke( tr, tr, pushcount, h ); } }; namespace stack { template struct pusher> { template::type> static void set_memfx(types t, lua_State* L, Fx&& fx) { typedef Decay> raw_fx_t; typedef R(* fx_ptr_t)(Args...); typedef std::is_convertible is_convertible; set_isconvertible_fx(is_convertible(), t, L, std::forward(fx)); } template static void set_memfx(types<>, lua_State* L, Fx&& fx) { typedef Unqualified> fx_t; typedef decltype(&fx_t::operator()) Sig; set_memfx(types>(), L, std::forward(fx)); } template static void set(lua_State* L, R fxptr(Args...)){ set_fx(std::false_type(), L, fxptr); } template static void set(lua_State* L, Sig* fxptr){ set_fx(std::false_type(), L, fxptr); } template static void set(lua_State* L, R (C::*memfxptr)(Args...), T&& obj) { typedef Bool::value || std::is_pointer::value> is_reference; set_reference_fx(is_reference(), L, memfxptr, std::forward(obj)); } template static void set(lua_State* L, Sig C::* memfxptr, T&& obj) { typedef Bool::value || std::is_pointer::value> is_reference; set_reference_fx(is_reference(), L, memfxptr, std::forward(obj)); } template static void set(lua_State* L, Fx&& fx) { set_memfx(types(), L, std::forward(fx)); } template static void set_isconvertible_fx(std::true_type, types, lua_State* L, Fx&& fx) { typedef R(* fx_ptr_t)(Args...); fx_ptr_t fxptr = unwrapper(std::forward(fx)); set(L, fxptr); } template static void set_isconvertible_fx(std::false_type, types, lua_State* L, Fx&& fx) { typedef Decay> fx_t; std::unique_ptr sptr(new functor_function(std::forward(fx))); set_fx(L, std::move(sptr)); } template static void set_reference_fx(std::true_type, lua_State* L, Fx&& fx, T&& obj) { set_fx(std::true_type(), L, std::forward(fx), std::forward(obj)); } template static void set_reference_fx(std::false_type, lua_State* L, Fx&& fx, T&& obj) { typedef typename std::remove_pointer>::type clean_fx; std::unique_ptr sptr(new member_function(std::forward(obj), std::forward(fx))); return set_fx(L, std::move(sptr)); } template static void set_fx(std::true_type, lua_State* L, Fx&& fx, T&& obj) { // Layout: // idx 1...n: verbatim data of member function pointer // idx n + 1: is the object's void pointer // We don't need to store the size, because the other side is templated // with the same member function pointer type typedef Decay dFx; typedef Unqualified uFx; dFx memfxptr(std::forward(fx)); auto userptr = sol::detail::get_ptr(obj); void* userobjdata = static_cast(userptr); lua_CFunction freefunc = &static_member_function, uFx>::call; int upvalues = stack::detail::push_as_upvalues(L, memfxptr); upvalues += stack::push(L, userobjdata); stack::push(L, freefunc, upvalues); } template static void set_fx(std::false_type, lua_State* L, Fx&& fx) { Decay target(std::forward(fx)); lua_CFunction freefunc = &static_function::call; int upvalues = stack::detail::push_as_upvalues(L, target); stack::push(L, freefunc, upvalues); } template static void set_fx(lua_State* L, std::unique_ptr luafunc) { auto&& metakey = usertype_traits>::metatable; const char* metatablename = std::addressof(metakey[0]); base_function* target = luafunc.release(); void* userdata = reinterpret_cast(target); lua_CFunction freefunc = &base_function::call; int metapushed = luaL_newmetatable(L, metatablename); if(metapushed == 1) { lua_pushstring(L, "__gc"); stack::push(L, &base_function::gc); lua_settable(L, -3); lua_pop(L, 1); } stack::detail::push_userdata(L, metatablename, userdata); stack::push(L, freefunc, 1); } template static int push(lua_State* L, Args&&... args) { // Set will always place one thing (function) on the stack set(L, std::forward(args)...); return 1; } }; template struct pusher> { static int push(lua_State* L, std::function fx) { return pusher{}.push(L, std::move(fx)); } }; template struct getter> { typedef function_traits fx_t; typedef typename fx_t::args_type args_t; typedef typename tuple_types::type ret_t; template static std::function get_std_func(types, types, lua_State* L, int index = -1) { typedef typename function_traits::return_type return_t; sol::function f(L, index); auto fx = [f, L, index](FxArgs&&... args) -> return_t { return f(types(), std::forward(args)...); }; return std::move(fx); } template static std::function get_std_func(types, types, lua_State* L, int index = -1) { sol::function f(L, index); auto fx = [f, L, index](FxArgs&&... args) -> void { f(std::forward(args)...); }; return std::move(fx); } template static std::function get_std_func(types t, types<>, lua_State* L, int index = -1) { return get_std_func(std::move(t), types(), L, index); } static std::function get(lua_State* L, int index) { return get_std_func(args_t(), ret_t(), L, index); } }; } // stack } // sol #endif // SOL_FUNCTION_HPP