2013-12-03 03:22:51 +08:00
|
|
|
// The MIT License (MIT)
|
|
|
|
|
2015-05-25 09:29:21 +08:00
|
|
|
// Copyright (c) 2013-2015 Danny Y., Rapptz
|
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 "tuple.hpp"
|
|
|
|
#include "stack.hpp"
|
2014-06-07 12:24:48 +08:00
|
|
|
#include "function_types.hpp"
|
2014-09-19 20:22:21 +08:00
|
|
|
#include "usertype_traits.hpp"
|
2014-08-06 00:07:29 +08:00
|
|
|
#include "resolve.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 {
|
2015-07-19 22:26:11 +08:00
|
|
|
class function_result {
|
|
|
|
private:
|
|
|
|
lua_State* L;
|
|
|
|
int index;
|
|
|
|
int returncount;
|
2015-10-22 23:20:32 +08:00
|
|
|
call_error error;
|
2015-07-19 22:26:11 +08:00
|
|
|
|
|
|
|
template <typename T, std::size_t I>
|
2015-07-22 14:54:43 +08:00
|
|
|
stack::get_return<T> get(types<T>, indices<I>) const {
|
2015-07-19 22:26:11 +08:00
|
|
|
return stack::get<T>(L, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... Ret, std::size_t... I>
|
2015-07-22 14:54:43 +08:00
|
|
|
stack::get_return<Ret...> get(types<Ret...>, indices<I...>) const {
|
2015-07-19 22:26:11 +08:00
|
|
|
auto r = std::make_tuple(stack::get<Ret>(L, index + I)...);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
function_result() = default;
|
2015-10-22 23:20:32 +08:00
|
|
|
function_result(lua_State* L, int index = -1, int returncount = 0, call_error error = call_error::ok): L(L), index(index), returncount(returncount), error(error) {
|
2015-07-19 22:26:11 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
function_result(const function_result&) = default;
|
|
|
|
function_result& operator=(const function_result&) = default;
|
2015-10-22 23:20:32 +08:00
|
|
|
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
|
2015-10-25 18:48:19 +08:00
|
|
|
// return count being 0 is enough to keep things clean
|
|
|
|
// but will be thorough
|
|
|
|
o.L = nullptr;
|
|
|
|
o.index = 0;
|
|
|
|
o.returncount = 0;
|
|
|
|
o.error = call_error::runtime;
|
2015-10-22 23:20:32 +08:00
|
|
|
}
|
|
|
|
function_result& operator=(function_result&& o) {
|
2015-10-25 18:48:19 +08:00
|
|
|
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.error = call_error::runtime;
|
2015-10-25 19:17:48 +08:00
|
|
|
return *this;
|
2015-10-22 23:20:32 +08:00
|
|
|
}
|
2015-07-19 22:26:11 +08:00
|
|
|
|
2015-10-22 18:10:30 +08:00
|
|
|
bool valid() const {
|
2015-10-22 23:20:32 +08:00
|
|
|
return error == call_error::ok;
|
2015-10-22 18:10:30 +08:00
|
|
|
}
|
|
|
|
|
2015-07-22 14:54:43 +08:00
|
|
|
template<typename T>
|
|
|
|
T get() const {
|
|
|
|
tuple_types<Unqualified<T>> tr;
|
2015-07-19 22:26:11 +08:00
|
|
|
return get(tr, tr);
|
|
|
|
}
|
|
|
|
|
2015-10-25 18:48:19 +08:00
|
|
|
operator std::string() const {
|
|
|
|
return get<std::string>();
|
2015-07-22 14:54:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, EnableIf<Not<std::is_same<Unqualified<T>, const char*>>, Not<std::is_same<Unqualified<T>, char>>, Not<std::is_same<Unqualified<T>, std::string>>, Not<std::is_same<Unqualified<T>, std::initializer_list<char>>>> = 0>
|
|
|
|
operator T () const {
|
|
|
|
return get<T>();
|
|
|
|
}
|
|
|
|
|
2015-07-19 22:26:11 +08:00
|
|
|
~function_result() {
|
2015-10-22 23:20:32 +08:00
|
|
|
stack::remove(L, index, error == call_error::ok ? returncount : 1);
|
2015-07-19 22:26:11 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-14 13:05:14 +08:00
|
|
|
class function : public reference {
|
2015-10-22 23:20:32 +08:00
|
|
|
public:
|
|
|
|
static reference default_handler;
|
|
|
|
|
2013-12-03 03:22:51 +08:00
|
|
|
private:
|
2015-10-22 23:20:32 +08:00
|
|
|
struct handler {
|
|
|
|
const reference& target;
|
|
|
|
int stack;
|
|
|
|
handler(const reference& target) : target(target), stack(0) {
|
|
|
|
if (target.valid()) {
|
|
|
|
stack = lua_gettop(target.state()) + 1;
|
|
|
|
target.push();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
~handler() {
|
2015-10-23 14:54:26 +08:00
|
|
|
if (stack > 0) {
|
2015-10-22 23:20:32 +08:00
|
|
|
lua_remove(target.state(), stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-10-23 14:54:26 +08:00
|
|
|
int luacodecall(std::ptrdiff_t argcount, std::ptrdiff_t resultcount, handler& h) const {
|
2015-10-22 23:20:32 +08:00
|
|
|
return lua_pcallk(state(), static_cast<int>(argcount), static_cast<int>(resultcount), h.stack, 0, nullptr);
|
2015-10-22 18:10:30 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 14:54:26 +08:00
|
|
|
void luacall(std::ptrdiff_t argcount, std::ptrdiff_t resultcount, handler& h) const {
|
2015-10-22 18:10:30 +08:00
|
|
|
lua_callk(state(), static_cast<int>(argcount), static_cast<int>(resultcount), 0, nullptr);
|
2013-12-12 01:42:00 +08:00
|
|
|
}
|
|
|
|
|
2015-03-02 10:14:42 +08:00
|
|
|
template<std::size_t... I, typename... Ret>
|
2015-10-23 14:54:26 +08:00
|
|
|
std::tuple<Ret...> invoke(indices<I...>, types<Ret...>, std::ptrdiff_t n, handler& h) const {
|
2015-10-22 23:20:32 +08:00
|
|
|
luacall(n, sizeof...(Ret), h);
|
2015-03-02 10:14:42 +08:00
|
|
|
const int nreturns = static_cast<int>(sizeof...(Ret));
|
|
|
|
const int stacksize = lua_gettop(state());
|
|
|
|
const int firstreturn = std::max(0, stacksize - nreturns) + 1;
|
|
|
|
auto r = std::make_tuple(stack::get<Ret>(state(), firstreturn + I)...);
|
|
|
|
lua_pop(state(), nreturns);
|
|
|
|
return r;
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2015-03-02 10:14:42 +08:00
|
|
|
template<std::size_t I, typename Ret>
|
2015-10-23 14:54:26 +08:00
|
|
|
Ret invoke(indices<I>, types<Ret>, std::ptrdiff_t n, handler& h) const {
|
2015-10-22 23:20:32 +08:00
|
|
|
luacall(n, 1, h);
|
2013-12-03 12:33:23 +08:00
|
|
|
return stack::pop<Ret>(state());
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2015-03-02 10:14:42 +08:00
|
|
|
template <std::size_t I>
|
2015-10-23 14:54:26 +08:00
|
|
|
void invoke(indices<I>, types<void>, std::ptrdiff_t n, handler& h) const {
|
2015-10-22 23:20:32 +08:00
|
|
|
luacall(n, 0, h);
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 14:54:26 +08:00
|
|
|
function_result invoke(indices<>, types<>, std::ptrdiff_t n, handler& h) const {
|
|
|
|
const bool handlerpushed = error_handler.valid();
|
2015-07-19 22:26:11 +08:00
|
|
|
const int stacksize = lua_gettop(state());
|
2015-10-21 09:38:28 +08:00
|
|
|
const int firstreturn = std::max(0, stacksize - static_cast<int>(n) - 1);
|
2015-10-22 18:49:53 +08:00
|
|
|
int code = LUA_OK;
|
|
|
|
try {
|
2015-10-22 23:20:32 +08:00
|
|
|
code = luacodecall(n, LUA_MULTRET, h);
|
2015-10-22 18:49:53 +08:00
|
|
|
}
|
|
|
|
// Handle C++ errors thrown from C++ functions bound inside of lua
|
2015-10-22 23:20:32 +08:00
|
|
|
catch (const std::exception& error) {
|
2015-10-22 18:49:53 +08:00
|
|
|
code = LUA_ERRRUN;
|
2015-10-23 14:54:26 +08:00
|
|
|
h.stack = 0;
|
2015-10-22 23:20:32 +08:00
|
|
|
stack::push(state(), error.what());
|
2015-10-22 18:49:53 +08:00
|
|
|
}
|
|
|
|
// TODO: handle idiots?
|
2015-10-22 23:20:32 +08:00
|
|
|
/*catch (const char* error) {
|
2015-10-22 18:49:53 +08:00
|
|
|
code = LUA_ERRRUN;
|
2015-10-22 23:20:32 +08:00
|
|
|
stack::push(state(), error);
|
2015-10-22 18:49:53 +08:00
|
|
|
}
|
2015-10-22 23:20:32 +08:00
|
|
|
catch (const std::string& error) {
|
2015-10-22 18:49:53 +08:00
|
|
|
code = LUA_ERRRUN;
|
2015-10-22 23:20:32 +08:00
|
|
|
stack::push(state(), error);
|
2015-10-22 18:49:53 +08:00
|
|
|
}
|
2015-10-22 23:20:32 +08:00
|
|
|
catch (...) {
|
2015-10-22 18:49:53 +08:00
|
|
|
code = LUA_ERRRUN;
|
|
|
|
stack::push( state(), "[sol] an unknownable runtime exception occurred" );
|
|
|
|
}*/
|
2015-10-22 23:20:32 +08:00
|
|
|
catch (...) {
|
2015-10-22 18:49:53 +08:00
|
|
|
throw;
|
|
|
|
}
|
2015-07-19 22:26:11 +08:00
|
|
|
const int poststacksize = lua_gettop(state());
|
|
|
|
const int returncount = poststacksize - firstreturn;
|
2015-10-23 14:54:26 +08:00
|
|
|
return function_result(state(), firstreturn + ( handlerpushed ? 0 : 1 ), returncount, static_cast<call_error>(code));
|
2013-12-03 08:15:23 +08:00
|
|
|
}
|
|
|
|
|
2013-12-03 03:22:51 +08:00
|
|
|
public:
|
2015-10-22 23:20:32 +08:00
|
|
|
sol::reference error_handler;
|
|
|
|
|
2014-08-11 08:49:34 +08:00
|
|
|
function() = default;
|
2015-10-23 09:46:40 +08:00
|
|
|
function(lua_State* L, int index = -1): reference(L, index), error_handler(default_handler) {
|
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;
|
2015-10-22 23:20:32 +08:00
|
|
|
function( function&& ) = default;
|
|
|
|
function& operator=( function&& ) = default;
|
2013-12-03 03:22:51 +08:00
|
|
|
|
2013-12-14 06:50:24 +08:00
|
|
|
template<typename... Args>
|
2015-07-19 22:26:11 +08:00
|
|
|
function_result operator()(Args&&... args) const {
|
|
|
|
return 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>
|
2015-07-22 14:54:43 +08:00
|
|
|
auto operator()(types<Ret...>, Args&&... args) const
|
2015-10-25 18:48:19 +08:00
|
|
|
-> decltype(invoke(types<Ret...>(), types<Ret...>(), 0, std::declval<handler&>())) {
|
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>
|
2015-07-22 14:54:43 +08:00
|
|
|
auto call(Args&&... args) const
|
2015-10-25 18:48:19 +08:00
|
|
|
-> decltype(invoke(types<Ret...>(), types<Ret...>(), 0, std::declval<handler&>())) {
|
2015-10-22 23:20:32 +08:00
|
|
|
handler h(error_handler);
|
2013-12-03 12:33:23 +08:00
|
|
|
push();
|
2015-03-02 10:14:42 +08:00
|
|
|
int pushcount = stack::push_args(state(), std::forward<Args>(args)...);
|
|
|
|
auto tr = types<Ret...>();
|
2015-10-22 23:20:32 +08:00
|
|
|
return invoke(tr, tr, pushcount, h);
|
2013-12-03 03:22:51 +08:00
|
|
|
}
|
|
|
|
};
|
2014-05-31 03:30:14 +08:00
|
|
|
|
2015-10-22 23:20:32 +08:00
|
|
|
sol::reference function::default_handler;
|
|
|
|
|
2014-05-31 03:30:14 +08:00
|
|
|
namespace stack {
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... Sigs>
|
2014-06-29 14:16:48 +08:00
|
|
|
struct pusher<function_sig_t<Sigs...>> {
|
2014-06-07 21:56:48 +08:00
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename R, typename... Args, typename Fx, typename = typename std::result_of<Fx(Args...)>::type>
|
|
|
|
static void set_memfx(types<R(Args...)> t, lua_State* L, Fx&& fx) {
|
|
|
|
typedef Decay<Unwrap<Fx>> raw_fx_t;
|
|
|
|
typedef R(* fx_ptr_t)(Args...);
|
|
|
|
typedef std::is_convertible<raw_fx_t, fx_ptr_t> is_convertible;
|
|
|
|
set_isconvertible_fx(is_convertible(), t, L, std::forward<Fx>(fx));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename Fx>
|
|
|
|
static void set_memfx(types<>, lua_State* L, Fx&& fx) {
|
|
|
|
typedef Unqualified<Unwrap<Fx>> fx_t;
|
|
|
|
typedef decltype(&fx_t::operator()) Sig;
|
|
|
|
set_memfx(types<function_signature_t<Sig>>(), L, std::forward<Fx>(fx));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename... Args, typename R>
|
|
|
|
static void set(lua_State* L, R fxptr(Args...)){
|
|
|
|
set_fx(std::false_type(), L, fxptr);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename Sig>
|
|
|
|
static void set(lua_State* L, Sig* fxptr){
|
2015-10-21 09:38:28 +08:00
|
|
|
set_fx(std::false_type(), L, fxptr);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename... Args, typename R, typename C, typename T>
|
|
|
|
static void set(lua_State* L, R (C::*memfxptr)(Args...), T&& obj) {
|
|
|
|
typedef Bool<is_specialization_of<T, std::reference_wrapper>::value || std::is_pointer<T>::value> is_reference;
|
|
|
|
set_reference_fx(is_reference(), L, memfxptr, std::forward<T>(obj));
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename Sig, typename C, typename T>
|
|
|
|
static void set(lua_State* L, Sig C::* memfxptr, T&& obj) {
|
|
|
|
typedef Bool<is_specialization_of<T, std::reference_wrapper>::value || std::is_pointer<T>::value> is_reference;
|
|
|
|
set_reference_fx(is_reference(), L, memfxptr, std::forward<T>(obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Sig, typename Fx>
|
|
|
|
static void set(lua_State* L, Fx&& fx) {
|
|
|
|
set_memfx(types<Sig...>(), L, std::forward<Fx>(fx));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Fx, typename R, typename... Args>
|
|
|
|
static void set_isconvertible_fx(std::true_type, types<R(Args...)>, lua_State* L, Fx&& fx) {
|
|
|
|
typedef R(* fx_ptr_t)(Args...);
|
|
|
|
fx_ptr_t fxptr = unwrapper(std::forward<Fx>(fx));
|
|
|
|
set(L, fxptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Fx, typename R, typename... Args>
|
|
|
|
static void set_isconvertible_fx(std::false_type, types<R(Args...)>, lua_State* L, Fx&& fx) {
|
|
|
|
typedef Decay<Unwrap<Fx>> fx_t;
|
|
|
|
std::unique_ptr<base_function> sptr(new functor_function<fx_t>(std::forward<Fx>(fx)));
|
|
|
|
set_fx<Fx>(L, std::move(sptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Fx, typename T>
|
|
|
|
static void set_reference_fx(std::true_type, lua_State* L, Fx&& fx, T&& obj) {
|
|
|
|
set_fx(std::true_type(), L, std::forward<Fx>(fx), std::forward<T>(obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Fx, typename T>
|
|
|
|
static void set_reference_fx(std::false_type, lua_State* L, Fx&& fx, T&& obj) {
|
|
|
|
typedef typename std::remove_pointer<Decay<Fx>>::type clean_fx;
|
|
|
|
std::unique_ptr<base_function> sptr(new member_function<clean_fx, T>(std::forward<T>(obj), std::forward<Fx>(fx)));
|
|
|
|
return set_fx<Fx>(L, std::move(sptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Fx, typename T>
|
|
|
|
static void set_fx(std::true_type, lua_State* L, Fx&& fx, T&& 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
|
2015-09-30 06:19:07 +08:00
|
|
|
typedef Decay<Fx> dFx;
|
|
|
|
typedef Unqualified<Fx> uFx;
|
|
|
|
dFx memfxptr(std::forward<Fx>(fx));
|
2014-06-29 14:16:48 +08:00
|
|
|
auto userptr = sol::detail::get_ptr(obj);
|
|
|
|
void* userobjdata = static_cast<void*>(userptr);
|
2015-09-30 06:19:07 +08:00
|
|
|
lua_CFunction freefunc = &static_member_function<Decay<decltype(*userptr)>, uFx>::call;
|
2014-06-07 10:54:45 +08:00
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
int upvalues = stack::detail::push_as_upvalues(L, memfxptr);
|
2015-03-02 10:14:42 +08:00
|
|
|
upvalues += stack::push(L, userobjdata);
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
stack::push(L, freefunc, upvalues);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename Fx>
|
|
|
|
static void set_fx(std::false_type, lua_State* L, Fx&& fx) {
|
|
|
|
Decay<Fx> target(std::forward<Fx>(fx));
|
|
|
|
lua_CFunction freefunc = &static_function<Fx>::call;
|
2014-06-07 10:54:45 +08:00
|
|
|
|
|
|
|
int upvalues = stack::detail::push_as_upvalues(L, target);
|
2014-06-29 14:16:48 +08:00
|
|
|
stack::push(L, freefunc, upvalues);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:16:48 +08:00
|
|
|
template<typename Fx>
|
2014-06-07 21:56:48 +08:00
|
|
|
static void set_fx(lua_State* L, std::unique_ptr<base_function> luafunc) {
|
2014-09-19 20:22:21 +08:00
|
|
|
auto&& metakey = usertype_traits<Unqualified<Fx>>::metatable;
|
2014-06-07 21:56:48 +08:00
|
|
|
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;
|
2015-10-22 18:49:53 +08:00
|
|
|
|
2015-09-30 06:19:07 +08:00
|
|
|
int metapushed = luaL_newmetatable(L, metatablename);
|
|
|
|
if(metapushed == 1) {
|
2014-06-07 10:54:45 +08:00
|
|
|
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);
|
2014-06-29 14:16:48 +08:00
|
|
|
lua_pop(L, 1);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-06-08 04:33:39 +08:00
|
|
|
stack::detail::push_userdata<void*>(L, metatablename, userdata);
|
2014-06-29 14:16:48 +08:00
|
|
|
stack::push(L, freefunc, 1);
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... Args>
|
2015-03-02 10:14:42 +08:00
|
|
|
static int push(lua_State* L, Args&&... args) {
|
|
|
|
// Set will always place one thing (function) on the stack
|
2014-06-29 14:16:48 +08:00
|
|
|
set(L, std::forward<Args>(args)...);
|
2015-03-02 10:14:42 +08:00
|
|
|
return 1;
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
|
|
|
};
|
2014-06-07 21:56:48 +08:00
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename Signature>
|
2014-06-07 10:54:45 +08:00
|
|
|
struct pusher<std::function<Signature>> {
|
2015-03-02 10:14:42 +08:00
|
|
|
static int push(lua_State* L, std::function<Signature> fx) {
|
|
|
|
return 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
|
|
|
|
2014-08-09 19:54:58 +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
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... FxArgs, typename... Ret>
|
2014-06-07 10:54:45 +08:00
|
|
|
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);
|
2014-08-11 08:49:34 +08:00
|
|
|
auto fx = [f, L, index](FxArgs&&... args) -> return_t {
|
2014-06-07 10:54:45 +08:00
|
|
|
return f(types<Ret...>(), std::forward<FxArgs>(args)...);
|
|
|
|
};
|
|
|
|
return std::move(fx);
|
|
|
|
}
|
|
|
|
|
2014-08-09 19:54:58 +08:00
|
|
|
template<typename... FxArgs>
|
2014-06-07 10:54:45 +08:00
|
|
|
static std::function<Signature> get_std_func(types<FxArgs...>, types<void>, lua_State* L, int index = -1) {
|
|
|
|
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>
|
2014-06-07 10:54:45 +08:00
|
|
|
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
|