2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02: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.
|
|
|
|
*/
|
|
|
|
|
2011-07-27 01:13:27 +02:00
|
|
|
#ifndef LUABINDER_H
|
|
|
|
#define LUABINDER_H
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
// this file is and must be included only from luainterface.h
|
|
|
|
#include "luainterface.h"
|
|
|
|
#include "luaexception.h"
|
|
|
|
|
2011-08-28 00:32:16 +02:00
|
|
|
/// This namespace contains some dirty metaprogamming that uses a lot of C++0x features
|
2011-08-14 04:09:11 +02:00
|
|
|
/// The purpose here is to create templates that can bind any function from C++
|
|
|
|
/// and expose in lua environment. This is done combining variadic templates,
|
|
|
|
/// lambdas, tuples and some type traits features from the new C++0x standard to create
|
2011-08-28 00:32:16 +02:00
|
|
|
/// templates that can detect functions's arguments and then generate lambdas. These lambdas
|
2011-08-14 04:09:11 +02:00
|
|
|
/// pops arguments from lua stack, call the bound C++ function and then
|
|
|
|
/// pushes the result to lua.
|
2011-07-27 01:13:27 +02:00
|
|
|
namespace luabinder
|
|
|
|
{
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Removes const references, transforming 'const T&' into 'T'
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename T>
|
|
|
|
struct remove_const_ref {
|
|
|
|
typedef typename std::remove_const<typename std::remove_reference<T>::type>::type type;
|
|
|
|
};
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Pack arguments from lua stack into a tuple recursively
|
2011-07-27 01:13:27 +02:00
|
|
|
template<int N>
|
|
|
|
struct pack_values_into_tuple {
|
|
|
|
template<typename Tuple>
|
2011-08-14 04:09:11 +02:00
|
|
|
static void call(Tuple& tuple, LuaInterface* lua) {
|
2011-07-27 01:13:27 +02:00
|
|
|
typedef typename std::tuple_element<N-1, Tuple>::type ValueType;
|
2011-08-14 04:09:11 +02:00
|
|
|
std::get<N-1>(tuple) = lua->polymorphicPop<ValueType>();
|
2011-07-27 01:13:27 +02:00
|
|
|
pack_values_into_tuple<N-1>::call(tuple, lua);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct pack_values_into_tuple<0> {
|
|
|
|
template<typename Tuple>
|
2011-08-14 04:09:11 +02:00
|
|
|
static void call(Tuple &tuple, LuaInterface* lua) { }
|
2011-07-27 01:13:27 +02:00
|
|
|
};
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// C++ function caller that can push results to lua
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename F, typename... Args>
|
|
|
|
typename std::enable_if<!std::is_void<Ret>::value, int>::type
|
2011-08-19 20:53:23 +02:00
|
|
|
call_fun_and_push_result(const F& f, LuaInterface* lua, const Args&... args) {
|
2011-07-27 01:13:27 +02:00
|
|
|
Ret ret = f(args...);
|
2011-08-14 04:09:11 +02:00
|
|
|
lua->polymorphicPush(ret);
|
2011-07-27 01:13:27 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// C++ void function caller
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename F, typename... Args>
|
|
|
|
typename std::enable_if<std::is_void<Ret>::value, int>::type
|
2011-08-19 20:53:23 +02:00
|
|
|
call_fun_and_push_result(const F& f, LuaInterface* lua, const Args&... args) {
|
2011-07-27 01:13:27 +02:00
|
|
|
f(args...);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Expand arguments from tuple for later calling the C++ function
|
2011-07-27 01:13:27 +02:00
|
|
|
template<int N, typename Ret>
|
|
|
|
struct expand_fun_arguments {
|
|
|
|
template<typename Tuple, typename F, typename... Args>
|
2011-08-19 20:53:23 +02:00
|
|
|
static int call(const Tuple& tuple, const F& f, LuaInterface* lua, const Args&... args) {
|
|
|
|
return expand_fun_arguments<N-1,Ret>::call(tuple, f, lua, std::get<N-1>(tuple), args...);
|
2011-07-27 01:13:27 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename Ret>
|
|
|
|
struct expand_fun_arguments<0,Ret> {
|
|
|
|
template<typename Tuple, typename F, typename... Args>
|
2011-08-19 20:53:23 +02:00
|
|
|
static int call(const Tuple& tuple, const F& f, LuaInterface* lua, const Args&... args) {
|
2011-07-27 01:13:27 +02:00
|
|
|
return call_fun_and_push_result<Ret>(f, lua, args...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Bind different types of functions generating a lambda
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename F, typename Tuple>
|
|
|
|
LuaCppFunction bind_fun_specializer(const F& f) {
|
|
|
|
enum { N = std::tuple_size<Tuple>::value };
|
2011-08-14 04:09:11 +02:00
|
|
|
return [=](LuaInterface* lua) {
|
2011-07-27 01:13:27 +02:00
|
|
|
if(lua->stackSize() != N)
|
|
|
|
throw LuaBadNumberOfArgumentsException(N, lua->stackSize());
|
|
|
|
Tuple tuple;
|
|
|
|
pack_values_into_tuple<N>::call(tuple, lua);
|
|
|
|
return expand_fun_arguments<N,Ret>::call(tuple, f, lua);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-04-04 15:16:33 +02:00
|
|
|
/// Bind a customized function
|
|
|
|
inline
|
|
|
|
LuaCppFunction bind_fun(const std::function<int(LuaInterface*)>& f) {
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Bind a std::function
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename... Args>
|
|
|
|
LuaCppFunction bind_fun(const std::function<Ret(Args...)>& f) {
|
|
|
|
typedef typename std::tuple<typename remove_const_ref<Args>::type...> Tuple;
|
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(f),
|
|
|
|
Tuple>(f);
|
|
|
|
}
|
|
|
|
|
2012-01-06 04:29:26 +01:00
|
|
|
/// Specialization for lambdas
|
|
|
|
template<typename F>
|
|
|
|
struct bind_lambda_fun;
|
|
|
|
|
|
|
|
template<typename Lambda, typename Ret, typename... Args>
|
|
|
|
struct bind_lambda_fun<Ret(Lambda::*)(Args...) const> {
|
|
|
|
static LuaCppFunction call(const Lambda& f) {
|
|
|
|
typedef typename std::tuple<typename remove_const_ref<Args>::type...> Tuple;
|
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(f),
|
|
|
|
Tuple>(f);
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Lambda>
|
|
|
|
typename std::enable_if<std::is_class<Lambda>::value, LuaCppFunction>::type bind_fun(const Lambda& f) {
|
|
|
|
typedef decltype(&Lambda::operator()) F;
|
|
|
|
return bind_lambda_fun<F>::call(f);
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Convert to C++ functions pointers to std::function then bind
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename... Args>
|
|
|
|
LuaCppFunction bind_fun(Ret (*f)(Args...)) {
|
|
|
|
return bind_fun(std::function<Ret(Args...)>(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
// a tuple_element that works with the next algorithm
|
|
|
|
template<std::size_t __i, typename _Tp>
|
|
|
|
struct tuple_element;
|
|
|
|
template<std::size_t __i, typename _Head, typename... _Tail>
|
|
|
|
struct tuple_element<__i, std::tuple<_Head, _Tail...> >
|
|
|
|
: tuple_element<__i - 1, std::tuple<_Tail...> > { };
|
|
|
|
template<typename _Head, typename... _Tail>
|
|
|
|
struct tuple_element<0, std::tuple<_Head, _Tail...> > { typedef _Head type; };
|
|
|
|
template<typename _Head>
|
|
|
|
struct tuple_element<-1,std::tuple<_Head>> { typedef void type; };
|
|
|
|
template<std::size_t __i>
|
|
|
|
struct tuple_element<__i,std::tuple<>> { typedef void type; };
|
|
|
|
|
|
|
|
template<typename Enable, int N, typename ArgsTuple, typename HoldersTuple, typename... Args>
|
|
|
|
struct get_holded_tuple;
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
// some dirty stuff to extract arguments from std::bind holders
|
2011-07-27 01:13:27 +02:00
|
|
|
template<int N, typename ArgsTuple, typename HoldersTuple, typename... Args>
|
2011-08-14 04:09:11 +02:00
|
|
|
struct get_holded_tuple<
|
|
|
|
typename std::enable_if<
|
|
|
|
(N > 0 && std::is_placeholder<
|
|
|
|
typename tuple_element<N-1, HoldersTuple>::type
|
|
|
|
>::value > 0), void
|
|
|
|
>::type, N, ArgsTuple, HoldersTuple, Args...> {
|
2011-07-27 01:13:27 +02:00
|
|
|
typedef typename std::tuple_element<N-1, HoldersTuple>::type holder_type;
|
|
|
|
typedef typename tuple_element<std::is_placeholder<holder_type>::value-1, ArgsTuple>::type _arg_type;
|
|
|
|
typedef typename remove_const_ref<_arg_type>::type arg_type;
|
|
|
|
typedef typename get_holded_tuple<void, N-1, ArgsTuple, HoldersTuple, arg_type, Args...>::type type;
|
|
|
|
};
|
|
|
|
template<int N, typename ArgsTuple, typename HoldersTuple, typename... Args>
|
|
|
|
struct get_holded_tuple<typename std::enable_if<(N > 0 && std::is_placeholder<typename tuple_element<N-1, HoldersTuple>::type>::value == 0), void>::type, N, ArgsTuple, HoldersTuple, Args...> {
|
|
|
|
typedef typename get_holded_tuple<void, N-1, ArgsTuple, HoldersTuple, Args...>::type type;
|
|
|
|
};
|
|
|
|
template<typename ArgsTuple, typename HoldersTuple, typename... Args>
|
|
|
|
struct get_holded_tuple<void, 0, ArgsTuple, HoldersTuple, Args...> {
|
|
|
|
typedef typename std::tuple<Args...> type;
|
|
|
|
};
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Rebind functions already bound by std::bind handling it's placeholders
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Ret, typename... Args, typename... Holders>
|
|
|
|
LuaCppFunction bind_fun(const std::_Bind<Ret (*(Holders...))(Args...)>& f) {
|
|
|
|
typedef typename std::tuple<Args...> ArgsTuple;
|
|
|
|
typedef typename std::tuple<Holders...> HoldersTuple;
|
|
|
|
typedef typename get_holded_tuple<void, sizeof...(Holders), ArgsTuple, HoldersTuple>::type Tuple;
|
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(f),
|
|
|
|
Tuple>(f);
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Rebind member functions already bound by std::bind handling it's placeholders
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Obj, typename Ret, typename... Args, typename... Holders>
|
|
|
|
LuaCppFunction bind_fun(const std::_Bind<std::_Mem_fn<Ret (Obj::*)(Args...)>(Obj*, Holders...)>& f) {
|
2011-11-03 20:07:07 +01:00
|
|
|
typedef typename std::tuple<Args...> ArgsTuple;
|
|
|
|
typedef typename std::tuple<Holders...> HoldersTuple;
|
|
|
|
typedef typename get_holded_tuple<void, sizeof...(Holders), ArgsTuple, HoldersTuple>::type Tuple;
|
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(f),
|
|
|
|
Tuple>(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Obj, typename Ret, typename... Args, typename... Holders>
|
|
|
|
LuaCppFunction bind_fun(const std::_Bind<std::_Mem_fn<Ret (Obj::*)(Args...) const>(Obj*, Holders...)>& f) {
|
2011-07-27 01:13:27 +02:00
|
|
|
typedef typename std::tuple<Args...> ArgsTuple;
|
|
|
|
typedef typename std::tuple<Holders...> HoldersTuple;
|
|
|
|
typedef typename get_holded_tuple<void, sizeof...(Holders), ArgsTuple, HoldersTuple>::type Tuple;
|
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(f),
|
|
|
|
Tuple>(f);
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Bind customized functions already bound by std::bind
|
2011-07-27 01:13:27 +02:00
|
|
|
template<typename Obj>
|
2011-08-14 04:09:11 +02:00
|
|
|
LuaCppFunction bind_fun(const std::_Bind<std::_Mem_fn<int (Obj::*)(LuaInterface*)>(Obj*, std::_Placeholder<1>)>& f) {
|
2011-07-27 01:13:27 +02:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
inline
|
2011-08-14 04:09:11 +02:00
|
|
|
LuaCppFunction bind_fun(const std::_Bind<int (*(std::_Placeholder<1>))(LuaInterface*)>& f) {
|
2011-07-27 01:13:27 +02:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Bind member functions
|
2012-01-06 04:29:26 +01:00
|
|
|
template<typename C, typename Ret, class FC, typename... Args>
|
|
|
|
LuaCppFunction bind_mem_fun(Ret (FC::*f)(Args...)) {
|
2011-07-27 01:13:27 +02:00
|
|
|
auto mf = std::mem_fn(f);
|
2012-01-06 04:29:26 +01:00
|
|
|
typedef typename std::tuple<std::shared_ptr<C>, typename remove_const_ref<Args>::type...> Tuple;
|
2011-07-27 01:13:27 +02:00
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(mf),
|
|
|
|
Tuple>(mf);
|
|
|
|
}
|
2012-01-06 04:29:26 +01:00
|
|
|
template<typename C, typename Ret, class FC, typename... Args>
|
|
|
|
LuaCppFunction bind_mem_fun(Ret (FC::*f)(Args...) const) {
|
2011-07-27 01:13:27 +02:00
|
|
|
auto mf = std::mem_fn(f);
|
2012-01-06 04:29:26 +01:00
|
|
|
typedef typename std::tuple<std::shared_ptr<C>, typename remove_const_ref<Args>::type...> Tuple;
|
2011-07-27 01:13:27 +02:00
|
|
|
return bind_fun_specializer<typename remove_const_ref<Ret>::type,
|
|
|
|
decltype(mf),
|
|
|
|
Tuple>(mf);
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
/// Bind customized member functions
|
2012-01-06 04:29:26 +01:00
|
|
|
template<typename C>
|
|
|
|
LuaCppFunction bind_mem_fun(int (C::*f)(LuaInterface*)) {
|
2011-07-27 01:13:27 +02:00
|
|
|
auto mf = std::mem_fn(f);
|
2011-08-14 04:09:11 +02:00
|
|
|
return [=](LuaInterface* lua) {
|
2012-01-06 04:29:26 +01:00
|
|
|
auto obj = lua->castValue<std::shared_ptr<C>>(1);
|
2011-08-14 04:09:11 +02:00
|
|
|
lua->remove(1);
|
2011-07-27 01:13:27 +02:00
|
|
|
return mf(obj, lua);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#endif
|