2013-12-03 03:22:51 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
|
|
|
// Copyright (c) 2013 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"
|
2014-06-07 12:24:48 +08:00
|
|
|
#include "function_types.hpp"
|
2014-06-07 21:56:48 +08:00
|
|
|
#include "userdata_traits.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 {
|
2013-12-14 13:05:14 +08:00
|
|
|
class function : public reference {
|
2013-12-03 03:22:51 +08:00
|
|
|
private:
|
2014-05-31 06:19:12 +08:00
|
|
|
void luacall (std::size_t argcount, std::size_t resultcount) const {
|
2013-12-12 01:42:00 +08:00
|
|
|
lua_call(state(), static_cast<uint32_t>(argcount), static_cast<uint32_t>(resultcount));
|
|
|
|
}
|
|
|
|
|
2013-12-03 12:33:23 +08:00
|
|
|
template<typename... Ret>
|
2014-05-31 06:19:12 +08:00
|
|
|
std::tuple<Ret...> invoke(types<Ret...>, std::size_t n) const {
|
2014-05-29 13:47:27 +08:00
|
|
|
luacall(n, sizeof...(Ret));
|
2013-12-16 05:27:20 +08:00
|
|
|
return stack::pop_reverse_call(state(), std::make_tuple<Ret...>, types<Ret...>());
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2013-12-03 12:33:23 +08:00
|
|
|
template<typename Ret>
|
2014-05-31 06:19:12 +08:00
|
|
|
Ret invoke(types<Ret>, std::size_t n) const {
|
2013-12-12 01:42:00 +08:00
|
|
|
luacall(n, 1);
|
2013-12-03 12:33:23 +08:00
|
|
|
return stack::pop<Ret>(state());
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2014-05-31 06:19:12 +08:00
|
|
|
void invoke(types<void>, std::size_t n) const {
|
2013-12-12 01:42:00 +08:00
|
|
|
luacall(n, 0);
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2014-05-31 06:19:12 +08:00
|
|
|
void invoke(types<>, std::size_t n) const {
|
2013-12-12 01:42:00 +08:00
|
|
|
luacall(n, 0);
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2013-12-03 03:22:51 +08:00
|
|
|
public:
|
|
|
|
function() : reference() {}
|
2013-12-03 12:33:23 +08:00
|
|
|
function(lua_State* L, int index = -1): reference(L, index) {
|
2013-12-03 03:22:51 +08:00
|
|
|
type_assert(L, index, type::function);
|
|
|
|
}
|
2013-12-14 03:16:59 +08:00
|
|
|
function(const function&) = default;
|
|
|
|
function& operator=(const function&) = default;
|
2013-12-03 03:22:51 +08:00
|
|
|
|
2013-12-14 06:50:24 +08:00
|
|
|
template<typename... Args>
|
2014-05-31 06:19:12 +08:00
|
|
|
void operator()(Args&&... args) const {
|
2013-12-14 17:42:53 +08:00
|
|
|
call<>(std::forward<Args>(args)...);
|
2013-12-14 06:50:24 +08:00
|
|
|
}
|
2013-12-14 13:15:14 +08:00
|
|
|
|
|
|
|
template<typename... Ret, typename... Args>
|
2014-05-31 06:19:12 +08:00
|
|
|
typename return_type<Ret...>::type operator()(types<Ret...>, Args&&... args) const {
|
2013-12-15 12:25:44 +08:00
|
|
|
return call<Ret...>(std::forward<Args>(args)...);
|
2013-12-14 13:15:14 +08:00
|
|
|
}
|
2014-05-29 13:47:27 +08:00
|
|
|
|
2013-12-03 03:22:51 +08:00
|
|
|
template<typename... Ret, typename... Args>
|
2014-05-31 06:19:12 +08:00
|
|
|
typename return_type<Ret...>::type call(Args&&... args) const {
|
2013-12-03 12:33:23 +08:00
|
|
|
push();
|
2014-06-07 10:54:45 +08:00
|
|
|
stack::push(state(), std::forward<Args>(args)...);
|
2013-12-12 00:18:13 +08:00
|
|
|
return invoke(types<Ret...>(), sizeof...(Args));
|
2013-12-03 03:22:51 +08:00
|
|
|
}
|
|
|
|
};
|
2014-05-31 03:30:14 +08:00
|
|
|
|
|
|
|
namespace stack {
|
2014-06-07 10:54:45 +08:00
|
|
|
template <>
|
|
|
|
struct pusher<function_t> {
|
2014-06-07 21:56:48 +08:00
|
|
|
|
|
|
|
template<typename TFx>
|
|
|
|
static void set_isfunction_fx(std::true_type, lua_State* L, TFx&& fx) {
|
|
|
|
set_fx(std::false_type(), L, std::forward<TFx>(fx));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_isfunction_fx(std::false_type, lua_State* L, TFx&& fx) {
|
2014-06-07 10:54:45 +08:00
|
|
|
typedef Decay<TFx> clean_lambda;
|
|
|
|
typedef typename function_traits<decltype(&clean_lambda::operator())>::free_function_pointer_type raw_func_t;
|
2014-06-07 21:56:48 +08:00
|
|
|
typedef std::is_convertible<clean_lambda, raw_func_t> is_convertible;
|
|
|
|
set_isconvertible_fx(is_convertible(), L, std::forward<TFx>(fx));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_isconvertible_fx(std::true_type, lua_State* L, TFx&& fx) {
|
2014-06-07 10:54:45 +08:00
|
|
|
typedef Decay<TFx> clean_lambda;
|
|
|
|
typedef typename function_traits<decltype(&clean_lambda::operator())>::free_function_pointer_type raw_func_t;
|
2014-06-07 21:56:48 +08:00
|
|
|
set_isfunction_fx(std::true_type(), L, raw_func_t(std::forward<TFx>(fx)));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_isconvertible_fx(std::false_type, lua_State* L, TFx&& fx) {
|
2014-06-07 10:54:45 +08:00
|
|
|
typedef typename std::remove_pointer<Decay<TFx>>::type clean_fx;
|
|
|
|
std::unique_ptr<base_function> sptr(new functor_function<clean_fx>(std::forward<TFx>(fx)));
|
2014-06-07 21:56:48 +08:00
|
|
|
set_fx<TFx>(L, std::move(sptr));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx, typename TObj>
|
|
|
|
static void set_lvalue_fx(std::true_type, lua_State* L, TFx&& fx, TObj&& obj) {
|
|
|
|
set_fx(std::true_type(), L, std::forward<TFx>(fx), std::forward<TObj>(obj));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx, typename TObj>
|
|
|
|
static void set_lvalue_fx(std::false_type, lua_State* L, TFx&& fx, TObj&& obj) {
|
2014-06-07 10:54:45 +08:00
|
|
|
typedef typename std::remove_pointer<Decay<TFx>>::type clean_fx;
|
|
|
|
std::unique_ptr<base_function> sptr(new member_function<clean_fx, TObj>(std::forward<TObj>(obj), std::forward<TFx>(fx)));
|
2014-06-07 21:56:48 +08:00
|
|
|
return set_fx<TFx>(L, std::move(sptr));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx, typename TObj>
|
|
|
|
static void set_fx(std::true_type, lua_State* L, TFx&& fx, TObj&& obj) {
|
2014-06-07 10:54:45 +08:00
|
|
|
// 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
|
|
|
|
Decay<TFx> fxptr(std::forward<TFx>(fx));
|
2014-06-07 12:24:48 +08:00
|
|
|
void* userobjdata = static_cast<void*>(sol::detail::get_ptr(obj));
|
2014-06-07 10:54:45 +08:00
|
|
|
lua_CFunction freefunc = &static_member_function<Decay<TObj>, TFx>::call;
|
|
|
|
|
|
|
|
int upvalues = stack::detail::push_as_upvalues(L, fxptr);
|
|
|
|
stack::push(L, userobjdata);
|
2014-06-07 21:56:48 +08:00
|
|
|
stack::pusher<lua_CFunction>{}.push(L, freefunc, upvalues);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_fx(lua_State* L, std::false_type, TFx&& fx) {
|
2014-06-07 10:54:45 +08:00
|
|
|
Decay<TFx> target(std::forward<TFx>(fx));
|
|
|
|
lua_CFunction freefunc = &static_function<TFx>::call;
|
|
|
|
|
|
|
|
int upvalues = stack::detail::push_as_upvalues(L, target);
|
2014-06-07 21:56:48 +08:00
|
|
|
stack::pusher<lua_CFunction>{}.push(L, freefunc, upvalues);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_fx(lua_State* L, std::unique_ptr<base_function> luafunc) {
|
|
|
|
auto&& metakey = userdata_traits<Unqualified<TFx>>::metatable;
|
|
|
|
const char* metatablename = std::addressof(metakey[0]);
|
2014-06-07 10:54:45 +08:00
|
|
|
base_function* target = luafunc.release();
|
|
|
|
void* userdata = reinterpret_cast<void*>(target);
|
|
|
|
lua_CFunction freefunc = &base_function::call;
|
|
|
|
|
|
|
|
if (luaL_newmetatable(L, metatablename) == 1) {
|
|
|
|
lua_pushstring(L, "__gc");
|
2014-06-07 21:56:48 +08:00
|
|
|
stack::push(L, &base_function::gc);
|
2014-06-07 10:54:45 +08:00
|
|
|
lua_settable(L, -3);
|
|
|
|
}
|
|
|
|
|
|
|
|
stack::detail::push_userdata(L, userdata, metatablename);
|
2014-06-07 21:56:48 +08:00
|
|
|
stack::pusher<lua_CFunction>{}.push(L, freefunc, 1);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx>
|
|
|
|
static void set_function(lua_State* L, TFx&& fx) {
|
2014-06-07 10:54:45 +08:00
|
|
|
typedef typename std::remove_pointer<Decay<TFx>>::type clean_fx;
|
2014-06-07 21:56:48 +08:00
|
|
|
set_isfunction_fx(std::is_function<clean_fx>(), L, std::forward<TFx>(fx));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template<typename TFx, typename TObj>
|
|
|
|
static void set_function(lua_State* L, TFx&& fx, TObj&& obj) {
|
2014-06-07 10:54:45 +08:00
|
|
|
set_lvalue_fx(Bool<std::is_lvalue_reference<TObj>::value || std::is_pointer<TObj>::value>(),
|
2014-06-07 21:56:48 +08:00
|
|
|
L, std::forward<TFx>(fx), std::forward<TObj>(obj));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-07 21:56:48 +08:00
|
|
|
template <typename... Args>
|
|
|
|
static void push(lua_State* L, Args&&... args) {
|
|
|
|
set_function(L, std::forward<Args>(args)...);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
};
|
2014-06-07 21:56:48 +08:00
|
|
|
|
2014-06-07 10:54:45 +08:00
|
|
|
template <typename Signature>
|
|
|
|
struct pusher<std::function<Signature>> {
|
2014-06-07 12:24:48 +08:00
|
|
|
static void push(lua_State* L, std::function<Signature> fx) {
|
2014-06-07 21:56:48 +08:00
|
|
|
pusher<function_t>{}.push(L, std::move(fx));
|
2014-06-07 12:24:48 +08:00
|
|
|
}
|
2014-06-07 10:54:45 +08:00
|
|
|
};
|
2014-05-31 06:19:12 +08:00
|
|
|
|
|
|
|
template <typename Signature>
|
2014-06-07 10:54:45 +08:00
|
|
|
struct getter<std::function<Signature>> {
|
2014-05-31 11:35:26 +08:00
|
|
|
typedef function_traits<Signature> fx_t;
|
2014-05-31 06:19:12 +08:00
|
|
|
typedef typename fx_t::args_type args_t;
|
2014-05-31 07:10:08 +08:00
|
|
|
typedef typename tuple_types<typename fx_t::return_type>::type ret_t;
|
2014-06-07 10:54:45 +08:00
|
|
|
|
|
|
|
template <typename... FxArgs, typename... Ret>
|
|
|
|
static std::function<Signature> get_std_func(types<FxArgs...>, types<Ret...>, lua_State* L, int index = -1) {
|
|
|
|
typedef typename function_traits<Signature>::return_type return_t;
|
|
|
|
sol::function f(L, index);
|
|
|
|
auto fx = [ f, L, index ] (FxArgs&&... args) -> return_t {
|
|
|
|
return f(types<Ret...>(), std::forward<FxArgs>(args)...);
|
|
|
|
};
|
|
|
|
return std::move(fx);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... FxArgs>
|
|
|
|
static std::function<Signature> get_std_func(types<FxArgs...>, types<void>, lua_State* L, int index = -1) {
|
|
|
|
sol::function f(L, index);
|
|
|
|
auto fx = [ f, L, index ] (FxArgs&&... args) -> void {
|
|
|
|
f(std::forward<FxArgs>(args)...);
|
|
|
|
};
|
|
|
|
return std::move(fx);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... FxArgs>
|
|
|
|
static std::function<Signature> get_std_func(types<FxArgs...> t, types<>, lua_State* L, int index = -1) {
|
|
|
|
return get_std_func(std::move(t), types<void>(), L, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::function<Signature> get(lua_State* L, int index) {
|
|
|
|
return get_std_func(args_t(), ret_t(), L, index);
|
|
|
|
}
|
|
|
|
};
|
2014-05-31 03:30:14 +08:00
|
|
|
} // stack
|
2013-12-03 03:22:51 +08:00
|
|
|
} // sol
|
|
|
|
|
|
|
|
#endif // SOL_FUNCTION_HPP
|