2016-03-14 21:53:24 +08:00
|
|
|
// The MIT License (MIT)
|
2013-12-03 03:22:51 +08:00
|
|
|
|
2016-02-27 15:43:53 +08:00
|
|
|
// Copyright (c) 2013-2016 Rapptz, ThePhD and contributors
|
2013-12-03 03:22:51 +08:00
|
|
|
|
|
|
|
// 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 "stack.hpp"
|
2016-02-01 16:27:06 +08:00
|
|
|
#include "function_result.hpp"
|
2016-03-03 10:02:12 +08:00
|
|
|
#include "function_types.hpp"
|
2014-04-24 20:15:12 +08:00
|
|
|
#include <cstdint>
|
2014-05-31 03:30:14 +08:00
|
|
|
#include <functional>
|
2014-06-07 12:24:48 +08:00
|
|
|
#include <memory>
|
2013-12-03 03:22:51 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2016-04-07 17:21:49 +08:00
|
|
|
template <typename base_t>
|
|
|
|
class basic_function : public base_t {
|
2016-01-11 09:36:37 +08:00
|
|
|
private:
|
2016-01-29 08:57:02 +08:00
|
|
|
void luacall( std::ptrdiff_t argcount, std::ptrdiff_t resultcount ) const {
|
2016-04-07 17:21:49 +08:00
|
|
|
lua_callk( base_t::lua_state( ), static_cast<int>( argcount ), static_cast<int>( resultcount ), 0, nullptr );
|
2016-01-29 08:57:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template<std::size_t... I, typename... Ret>
|
2016-02-13 01:47:05 +08:00
|
|
|
auto invoke( types<Ret...>, std::index_sequence<I...>, std::ptrdiff_t n ) const {
|
2016-02-01 16:27:06 +08:00
|
|
|
luacall( n, sizeof...( Ret ) );
|
2016-04-07 17:21:49 +08:00
|
|
|
return stack::pop<std::tuple<Ret...>>( base_t::lua_state( ) );
|
2016-01-29 08:57:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template<std::size_t I, typename Ret>
|
2016-02-13 01:47:05 +08:00
|
|
|
Ret invoke(types<Ret>, std::index_sequence<I>, std::ptrdiff_t n ) const {
|
2016-01-29 08:57:02 +08:00
|
|
|
luacall( n, 1 );
|
2016-04-07 17:21:49 +08:00
|
|
|
return stack::pop<Ret>( base_t::lua_state( ) );
|
2016-01-29 08:57:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <std::size_t I>
|
2016-02-13 01:47:05 +08:00
|
|
|
void invoke(types<void>, std::index_sequence<I>, std::ptrdiff_t n) const {
|
2016-01-29 08:57:02 +08:00
|
|
|
luacall( n, 0 );
|
|
|
|
}
|
|
|
|
|
2016-02-13 01:47:05 +08:00
|
|
|
function_result invoke(types<>, std::index_sequence<>, std::ptrdiff_t n ) const {
|
2016-04-07 17:21:49 +08:00
|
|
|
int stacksize = lua_gettop( base_t::lua_state( ) );
|
2016-06-04 09:40:23 +08:00
|
|
|
int firstreturn = (std::max)( 1, stacksize - static_cast<int>( n ) );
|
2016-02-13 01:47:05 +08:00
|
|
|
luacall(n, LUA_MULTRET);
|
2016-04-07 17:21:49 +08:00
|
|
|
int poststacksize = lua_gettop( base_t::lua_state( ) );
|
2016-02-13 01:47:05 +08:00
|
|
|
int returncount = poststacksize - (firstreturn - 1);
|
2016-04-07 17:21:49 +08:00
|
|
|
return function_result( base_t::lua_state( ), firstreturn, returncount );
|
2016-01-29 08:57:02 +08:00
|
|
|
}
|
2016-01-11 09:36:37 +08:00
|
|
|
|
|
|
|
public:
|
2016-04-07 17:21:49 +08:00
|
|
|
basic_function() = default;
|
|
|
|
basic_function(const basic_function&) = default;
|
|
|
|
basic_function& operator=(const basic_function&) = default;
|
2016-05-13 14:48:22 +08:00
|
|
|
basic_function(basic_function&&) = default;
|
|
|
|
basic_function& operator=(basic_function&&) = default;
|
2016-06-04 09:40:23 +08:00
|
|
|
basic_function(const stack_reference& r) : basic_function(r.lua_state(), r.stack_index()) {}
|
2016-05-13 14:48:22 +08:00
|
|
|
basic_function(stack_reference&& r) : basic_function(r.lua_state(), r.stack_index()) {}
|
2016-04-07 17:21:49 +08:00
|
|
|
basic_function(lua_State* L, int index = -1): base_t(L, index) {
|
2016-04-04 14:28:39 +08:00
|
|
|
#ifdef SOL_CHECK_ARGUMENTS
|
2016-04-11 13:02:43 +08:00
|
|
|
stack::check<basic_function>(L, index, type_panic);
|
2016-04-04 14:28:39 +08:00
|
|
|
#endif // Safety
|
|
|
|
}
|
2016-02-27 15:43:53 +08:00
|
|
|
|
2016-01-29 08:57:02 +08:00
|
|
|
template<typename... Args>
|
|
|
|
function_result operator()( Args&&... args ) const {
|
|
|
|
return call<>( std::forward<Args>( args )... );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Ret, typename... Args>
|
2016-02-13 01:47:05 +08:00
|
|
|
decltype(auto) operator()( types<Ret...>, Args&&... args ) const {
|
2016-01-29 08:57:02 +08:00
|
|
|
return call<Ret...>( std::forward<Args>( args )... );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Ret, typename... Args>
|
2016-02-13 01:47:05 +08:00
|
|
|
decltype(auto) call( Args&&... args ) const {
|
2016-04-07 17:21:49 +08:00
|
|
|
base_t::push( );
|
2016-05-02 05:10:41 +08:00
|
|
|
int pushcount = stack::multi_push_reference( base_t::lua_state( ), std::forward<Args>( args )... );
|
2016-04-01 00:12:04 +08:00
|
|
|
return invoke( types<Ret...>( ), std::make_index_sequence<sizeof...(Ret)>(), pushcount );
|
2016-01-29 08:57:02 +08:00
|
|
|
}
|
2016-01-11 09:36:37 +08:00
|
|
|
};
|
|
|
|
|
2014-05-31 03:30:14 +08:00
|
|
|
namespace stack {
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename Signature>
|
2014-06-07 10:54:45 +08:00
|
|
|
struct getter<std::function<Signature>> {
|
2016-03-30 12:31:18 +08:00
|
|
|
typedef meta::bind_traits<Signature> fx_t;
|
2016-06-04 09:40:23 +08:00
|
|
|
typedef typename fx_t::args_list args_lists;
|
2016-02-24 12:39:46 +08:00
|
|
|
typedef meta::tuple_types<typename fx_t::return_type> return_types;
|
2014-06-07 10:54:45 +08:00
|
|
|
|
2016-02-13 01:47:05 +08:00
|
|
|
template<typename... Args, typename... Ret>
|
2016-02-24 12:39:46 +08:00
|
|
|
static std::function<Signature> get_std_func(types<Ret...>, types<Args...>, lua_State* L, int index = -1) {
|
2014-06-07 10:54:45 +08:00
|
|
|
sol::function f(L, index);
|
2016-02-24 12:39:46 +08:00
|
|
|
auto fx = [f, L, index](Args&&... args) -> meta::return_type_t<Ret...> {
|
2016-02-13 01:47:05 +08:00
|
|
|
return f.call<Ret...>(std::forward<Args>(args)...);
|
2014-06-07 10:54:45 +08:00
|
|
|
};
|
|
|
|
return std::move(fx);
|
|
|
|
}
|
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... FxArgs>
|
2016-02-24 12:39:46 +08:00
|
|
|
static std::function<Signature> get_std_func(types<void>, types<FxArgs...>, lua_State* L, int index = -1) {
|
2014-06-07 10:54:45 +08:00
|
|
|
sol::function f(L, index);
|
2014-08-11 08:49:34 +08:00
|
|
|
auto fx = [f, L, index](FxArgs&&... args) -> void {
|
2014-06-07 10:54:45 +08:00
|
|
|
f(std::forward<FxArgs>(args)...);
|
|
|
|
};
|
|
|
|
return std::move(fx);
|
|
|
|
}
|
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... FxArgs>
|
2016-02-24 12:39:46 +08:00
|
|
|
static std::function<Signature> get_std_func(types<>, types<FxArgs...> t, lua_State* L, int index = -1) {
|
|
|
|
return get_std_func(types<void>(), t, L, index);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::function<Signature> get(lua_State* L, int index) {
|
2016-06-04 09:40:23 +08:00
|
|
|
return get_std_func(return_types(), args_lists(), L, index);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
};
|
2014-05-31 03:30:14 +08:00
|
|
|
} // stack
|
2013-12-03 03:22:51 +08:00
|
|
|
} // sol
|
|
|
|
|
|
|
|
#endif // SOL_FUNCTION_HPP
|