// This file is distributed under the BSD License. // See "license.txt" for details. // Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com) // Copyright 2009-2016, Jason Turner (jason@emptycrate.com) // http://www.chaiscript.com #ifndef CHAISCRIPT_PROXY_FUNCTIONS_DETAIL_HPP_ #define CHAISCRIPT_PROXY_FUNCTIONS_DETAIL_HPP_ #include #include #include #include #include "../chaiscript_defines.hpp" #include "boxed_cast.hpp" #include "boxed_value.hpp" #include "handle_return.hpp" #include "type_info.hpp" #include "callable_traits.hpp" namespace chaiscript { class Type_Conversions_State; namespace exception { class bad_boxed_cast; } // namespace exception } // namespace chaiscript namespace chaiscript { namespace exception { /** * Exception thrown when there is a mismatch in number of * parameters during Proxy_Function execution */ struct arity_error : std::range_error { arity_error(int t_got, int t_expected) : std::range_error("Function dispatch arity mismatch"), got(t_got), expected(t_expected) { } arity_error(const arity_error &) = default; ~arity_error() noexcept override = default; int got; int expected; }; } namespace dispatch { namespace detail { /** * Used by Proxy_Function_Impl to return a list of all param types * it contains. */ template std::vector build_param_type_list(Ret (*)(Params...)) { /// \note somehow this is responsible for a large part of the code generation return { user_type(), user_type()... }; } /** * Used by Proxy_Function_Impl to determine if it is equivalent to another * Proxy_Function_Impl object. This function is primarily used to prevent * registration of two functions with the exact same signatures */ template bool compare_types_cast(Ret (*)(Params...), const std::vector ¶ms, const Type_Conversions_State &t_conversions) { try { std::vector::size_type i = 0; (void)i; (void)params; (void)t_conversions; // this is ok because the order of evaluation of initializer lists is well defined (void)std::initializer_list{(boxed_cast(params[i++], &t_conversions), 0)...}; return true; } catch (const exception::bad_boxed_cast &) { return false; } } template Ret call_func(const chaiscript::dispatch::detail::Function_Signature &, std::index_sequence, const Callable &f, const std::vector ¶ms, const Type_Conversions_State &t_conversions) { (void)params; (void)t_conversions; return f(boxed_cast(params[I], &t_conversions)...); } /// Used by Proxy_Function_Impl to perform typesafe execution of a function. /// The function attempts to unbox each parameter to the expected type. /// if any unboxing fails the execution of the function fails and /// the bad_boxed_cast is passed up to the caller. template Boxed_Value call_func(const chaiscript::dispatch::detail::Function_Signature &sig, const Callable &f, const std::vector ¶ms, const Type_Conversions_State &t_conversions) { return Handle_Return::handle(call_func(sig, std::index_sequence_for{}, f, params, t_conversions)); } template Boxed_Value call_func(const chaiscript::dispatch::detail::Function_Signature &sig, const Callable &f, const std::vector ¶ms, const Type_Conversions_State &t_conversions) { call_func(sig, std::index_sequence_for{}, f, params, t_conversions); #ifdef CHAISCRIPT_MSVC #pragma warning(push) #pragma warning(disable : 4702) #endif // MSVC is reporting that this is unreachable code - and it's wrong. return Handle_Return::handle(); #ifdef CHAISCRIPT_MSVC #pragma warning(pop) #endif } } } } #endif