// The MIT License (MIT) // Copyright (c) 2013-2016 Rapptz, ThePhD and contributors // 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_PROTECTED_FUNCTION_HPP #define SOL_PROTECTED_FUNCTION_HPP #include "reference.hpp" #include "stack.hpp" #include "protected_function_result.hpp" #include namespace sol { template class basic_protected_function : public base_t { 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(); } } bool valid () const { return stackindex > 0;} ~handler() { if (valid()) { lua_remove(target.lua_state(), stackindex); } } }; int luacall(std::ptrdiff_t argcount, std::ptrdiff_t resultcount, handler& h) const { return lua_pcallk(base_t::lua_state(), static_cast(argcount), static_cast(resultcount), h.stackindex, 0, nullptr); } template auto invoke(types, std::index_sequence, std::ptrdiff_t n, handler& h) const { luacall(n, sizeof...(Ret), h); return stack::pop>(base_t::lua_state()); } template Ret invoke(types, std::index_sequence, std::ptrdiff_t n, handler& h) const { luacall(n, 1, h); return stack::pop(base_t::lua_state()); } template void invoke(types, std::index_sequence, std::ptrdiff_t n, handler& h) const { luacall(n, 0, h); } protected_function_result invoke(types<>, std::index_sequence<>, std::ptrdiff_t n, handler& h) const { int stacksize = lua_gettop(base_t::lua_state()); int firstreturn = std::max(1, stacksize - static_cast(n) - 1); int returncount = 0; call_status code = call_status::ok; #ifndef SOL_NO_EXCEPTIONS auto onexcept = [&](const char* error) { h.stackindex = 0; if (h.target.valid()) { h.target.push(); stack::push(base_t::lua_state(), error); lua_call(base_t::lua_state(), 1, 1); } else { stack::push(base_t::lua_state(), error); } }; try { #endif // No Exceptions code = static_cast(luacall(n, LUA_MULTRET, h)); int poststacksize = lua_gettop(base_t::lua_state()); returncount = poststacksize - (stacksize - 1); #ifndef SOL_NO_EXCEPTIONS } // Handle C++ errors thrown from C++ functions bound inside of lua catch (const char* error) { onexcept(error); firstreturn = lua_gettop(base_t::lua_state()); return protected_function_result(base_t::lua_state(), firstreturn, 0, 1, call_status::runtime); } catch (const std::exception& error) { onexcept(error.what()); firstreturn = lua_gettop(base_t::lua_state()); return protected_function_result(base_t::lua_state(), firstreturn, 0, 1, call_status::runtime); } catch (...) { onexcept("caught (...) unknown error during protected_function call"); firstreturn = lua_gettop(base_t::lua_state()); return protected_function_result(base_t::lua_state(), firstreturn, 0, 1, call_status::runtime); } #endif // No Exceptions return protected_function_result(base_t::lua_state(), firstreturn, returncount, returncount, code); } public: reference error_handler; basic_protected_function() = default; basic_protected_function(const basic_protected_function&) = default; basic_protected_function& operator=(const basic_protected_function&) = default; basic_protected_function(basic_protected_function&&) = default; basic_protected_function& operator=(basic_protected_function&& ) = default; basic_protected_function(const basic_function& b) : base_t(b) {} basic_protected_function(basic_function&& b) : base_t(std::move(b)) {} basic_protected_function(const stack_reference& r) : basic_protected_function(r.lua_state(), r.stack_index()) {} basic_protected_function(stack_reference&& r) : basic_protected_function(r.lua_state(), r.stack_index()) {} basic_protected_function(lua_State* L, int index = -1) : base_t(L, index), error_handler(get_default_handler()) { #ifdef SOL_CHECK_ARGUMENTS stack::check(L, index, type_panic); #endif // Safety } template protected_function_result operator()(Args&&... args) const { return call<>(std::forward(args)...); } template decltype(auto) operator()(types, Args&&... args) const { return call(std::forward(args)...); } template decltype(auto) call(Args&&... args) const { handler h(error_handler); base_t::push(); int pushcount = stack::multi_push_reference(base_t::lua_state(), std::forward(args)...); return invoke(types(), std::make_index_sequence(), pushcount, h); } }; } // sol #endif // SOL_FUNCTION_HPP