2014-04-26 07:41:03 +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_USERDATA_HPP
|
|
|
|
#define SOL_USERDATA_HPP
|
|
|
|
|
2014-04-26 08:53:36 +08:00
|
|
|
#include "state.hpp"
|
2014-04-26 10:05:58 +08:00
|
|
|
#include "function_types.hpp"
|
2014-06-07 10:54:45 +08:00
|
|
|
#include "userdata_traits.hpp"
|
2014-06-27 16:25:57 +08:00
|
|
|
#include "default_construct.hpp"
|
2014-04-26 07:41:03 +08:00
|
|
|
#include <vector>
|
2014-06-08 04:33:39 +08:00
|
|
|
#include <array>
|
|
|
|
#include <algorithm>
|
2014-04-26 07:41:03 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2014-04-26 08:53:36 +08:00
|
|
|
namespace detail {
|
|
|
|
template<typename T, typename... Args>
|
|
|
|
inline std::unique_ptr<T> make_unique(Args&&... args) {
|
|
|
|
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
|
|
|
}
|
|
|
|
} // detail
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename T>
|
2014-04-26 07:41:03 +08:00
|
|
|
class userdata {
|
|
|
|
private:
|
2014-06-08 04:33:39 +08:00
|
|
|
const static std::array<std::string, 19> metafunctionnames;
|
2014-04-26 07:41:03 +08:00
|
|
|
std::string luaname;
|
|
|
|
std::vector<std::string> functionnames;
|
2014-06-07 10:54:45 +08:00
|
|
|
std::vector<std::unique_ptr<base_function>> funcs;
|
|
|
|
std::vector<std::unique_ptr<base_function>> ptrfuncs;
|
2014-06-08 04:33:39 +08:00
|
|
|
std::vector<std::unique_ptr<base_function>> metafuncs;
|
|
|
|
std::vector<std::unique_ptr<base_function>> ptrmetafuncs;
|
2014-04-26 07:41:03 +08:00
|
|
|
std::vector<luaL_Reg> functiontable;
|
2014-06-07 10:54:45 +08:00
|
|
|
std::vector<luaL_Reg> ptrfunctiontable;
|
2014-06-08 04:33:39 +08:00
|
|
|
std::vector<luaL_Reg> metafunctiontable;
|
|
|
|
std::vector<luaL_Reg> ptrmetafunctiontable;
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename... TTypes>
|
2014-04-26 07:41:03 +08:00
|
|
|
struct constructor {
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename... Args>
|
2014-04-27 12:53:57 +08:00
|
|
|
static void do_constructor(lua_State* L, T* obj, call_syntax syntax, int, types<Args...>) {
|
2014-06-27 16:25:57 +08:00
|
|
|
default_construct fx{};
|
|
|
|
stack::get_call(L, 1 + static_cast<int>(syntax), fx, types<Args...>(), obj);
|
2014-04-27 06:23:56 +08:00
|
|
|
}
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-27 12:53:57 +08:00
|
|
|
static void match_constructor(lua_State*, T*, call_syntax, int) {
|
2014-05-22 10:24:15 +08:00
|
|
|
throw error("No matching constructor for the arguments provided");
|
2014-04-26 12:19:36 +08:00
|
|
|
}
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename ...CArgs, typename... Args>
|
|
|
|
static void match_constructor(lua_State* L, T* obj, call_syntax syntax, int argcount, types<CArgs...> t, Args&&... args) {
|
2014-04-26 12:19:36 +08:00
|
|
|
if (argcount == sizeof...(CArgs)) {
|
2014-04-27 06:23:56 +08:00
|
|
|
do_constructor(L, obj, syntax, argcount, t);
|
2014-04-26 12:19:36 +08:00
|
|
|
return;
|
|
|
|
}
|
2014-04-27 06:23:56 +08:00
|
|
|
match_constructor(L, obj, syntax, argcount, std::forward<Args>(args)...);
|
2014-04-26 12:19:36 +08:00
|
|
|
}
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-26 12:19:36 +08:00
|
|
|
static int construct(lua_State* L) {
|
2014-04-27 17:08:39 +08:00
|
|
|
auto&& meta = userdata_traits<T>::metatable;
|
2014-04-27 06:23:56 +08:00
|
|
|
call_syntax syntax = stack::get_call_syntax(L, meta);
|
2014-04-26 12:19:36 +08:00
|
|
|
int argcount = lua_gettop(L);
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
void* udata = lua_newuserdata(L, sizeof(T));
|
|
|
|
T* obj = static_cast<T*>(udata);
|
2014-06-27 16:25:57 +08:00
|
|
|
match_constructor(L, obj, syntax, argcount - static_cast<int>(syntax), typename identity<TTypes>::type()...);
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-06-09 17:30:00 +08:00
|
|
|
|
|
|
|
if (luaL_newmetatable(L, std::addressof(meta[0])) == 1) {
|
|
|
|
lua_pop(L, 1);
|
|
|
|
std::string err = "Unable to get userdata metatable for ";
|
|
|
|
err += meta;
|
|
|
|
throw error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_setmetatable(L, -2);
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
return 1;
|
2014-04-26 07:41:03 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-04-27 15:25:47 +08:00
|
|
|
template<std::size_t N>
|
2014-04-26 07:41:03 +08:00
|
|
|
struct destructor {
|
|
|
|
static int destruct(lua_State* L) {
|
2014-04-27 06:23:56 +08:00
|
|
|
userdata_t udata = stack::get<userdata_t>(L, 1);
|
2014-04-26 12:19:36 +08:00
|
|
|
T* obj = static_cast<T*>(udata.value);
|
2014-04-26 07:41:03 +08:00
|
|
|
std::allocator<T> alloc{};
|
|
|
|
alloc.destroy(obj);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-09 17:30:00 +08:00
|
|
|
template<std::size_t N, std::size_t M>
|
2014-04-27 12:53:57 +08:00
|
|
|
void build_function_tables() {}
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-06-09 17:30:00 +08:00
|
|
|
template<std::size_t N, std::size_t M, typename... Args, typename TBase, typename Ret>
|
2014-06-08 04:33:39 +08:00
|
|
|
void build_function_tables(std::string funcname, Ret TBase::* func, Args&&... args) {
|
2014-05-26 01:46:23 +08:00
|
|
|
static_assert(std::is_base_of<TBase, T>::value, "Any registered function must be part of the class");
|
2014-04-27 15:25:47 +08:00
|
|
|
typedef typename std::decay<decltype(func)>::type function_type;
|
2014-06-08 04:33:39 +08:00
|
|
|
functionnames.push_back(std::move(funcname));
|
|
|
|
std::string& name = functionnames.back();
|
|
|
|
auto metamethod = std::find(metafunctionnames.begin(), metafunctionnames.end(), name);
|
|
|
|
if (metamethod != metafunctionnames.end()) {
|
|
|
|
metafuncs.emplace_back(detail::make_unique<userdata_function<function_type, T>>(std::move(func)));
|
|
|
|
ptrmetafuncs.emplace_back(detail::make_unique<userdata_function<function_type, typename std::add_pointer<T>::type>>(std::move(func)));
|
|
|
|
metafunctiontable.push_back({ name.c_str(), &base_function::userdata<N>::call });
|
|
|
|
ptrmetafunctiontable.push_back({ name.c_str(), &base_function::userdata<N>::call });
|
2014-06-09 17:30:00 +08:00
|
|
|
build_function_tables<N + 1, M>(std::forward<Args>(args)...);
|
2014-06-08 04:33:39 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
funcs.emplace_back(detail::make_unique<userdata_function<function_type, T>>(std::move(func)));
|
|
|
|
ptrfuncs.emplace_back(detail::make_unique<userdata_function<function_type, typename std::add_pointer<T>::type>>(std::move(func)));
|
2014-06-09 17:30:00 +08:00
|
|
|
functiontable.push_back({ name.c_str(), &base_function::userdata<M>::call });
|
|
|
|
ptrfunctiontable.push_back({ name.c_str(), &base_function::userdata<M>::call });
|
|
|
|
build_function_tables<N, M + 1>(std::forward<Args>(args)...);
|
2014-06-08 04:33:39 +08:00
|
|
|
}
|
2014-04-26 07:41:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename... Args>
|
2014-04-27 17:08:39 +08:00
|
|
|
userdata(Args&&... args): userdata(userdata_traits<T>::name, default_constructor, std::forward<Args>(args)...) {}
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename... Args, typename... CArgs>
|
2014-04-27 17:08:39 +08:00
|
|
|
userdata(constructors<CArgs...> c, Args&&... args): userdata(userdata_traits<T>::name, std::move(c), std::forward<Args>(args)...) {}
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-27 06:23:56 +08:00
|
|
|
template<typename... Args, typename... CArgs>
|
2014-04-27 13:29:37 +08:00
|
|
|
userdata(std::string name, constructors<CArgs...>, Args&&... args): luaname(std::move(name)) {
|
2014-04-27 06:23:56 +08:00
|
|
|
functionnames.reserve(sizeof...(args) + 2);
|
2014-06-07 10:54:45 +08:00
|
|
|
functiontable.reserve(sizeof...(args) + 2);
|
|
|
|
ptrfunctiontable.reserve(sizeof...(args) + 2);
|
2014-06-08 04:33:39 +08:00
|
|
|
metafunctiontable.reserve(sizeof...(args) + 2);
|
|
|
|
ptrmetafunctiontable.reserve(sizeof...(args) + 2);
|
2014-06-07 10:54:45 +08:00
|
|
|
funcs.reserve(sizeof...(args) + 2);
|
|
|
|
ptrfuncs.reserve(sizeof...(args) + 2);
|
2014-06-08 04:33:39 +08:00
|
|
|
metafuncs.reserve(sizeof...(args) + 2);
|
|
|
|
ptrmetafuncs.reserve(sizeof...(args) + 2);
|
2014-06-09 17:30:00 +08:00
|
|
|
build_function_tables<0, 0>(std::forward<Args>(args)...);
|
2014-04-26 07:41:03 +08:00
|
|
|
|
|
|
|
functionnames.push_back("new");
|
2014-04-26 12:19:36 +08:00
|
|
|
functiontable.push_back({ functionnames.back().c_str(), &constructor<CArgs...>::construct });
|
2014-04-27 06:23:56 +08:00
|
|
|
functionnames.push_back("__gc");
|
2014-06-08 04:33:39 +08:00
|
|
|
metafunctiontable.push_back({ functionnames.back().c_str(), &destructor<sizeof...(Args) / 2>::destruct });
|
2014-06-07 10:54:45 +08:00
|
|
|
// ptr_functions does not participate in garbage collection/new,
|
|
|
|
// as all pointered types are considered
|
|
|
|
// to be references. This makes returns of
|
|
|
|
// `std::vector<int>&` and `std::vector<int>*` work
|
2014-04-27 12:53:57 +08:00
|
|
|
|
2014-04-26 07:41:03 +08:00
|
|
|
functiontable.push_back({ nullptr, nullptr });
|
2014-06-08 04:33:39 +08:00
|
|
|
metafunctiontable.push_back({ nullptr, nullptr });
|
2014-06-07 10:54:45 +08:00
|
|
|
ptrfunctiontable.push_back({ nullptr, nullptr });
|
2014-06-08 04:33:39 +08:00
|
|
|
ptrmetafunctiontable.push_back({ nullptr, nullptr });
|
2014-04-26 07:41:03 +08:00
|
|
|
}
|
|
|
|
|
2014-04-27 13:29:37 +08:00
|
|
|
template<typename... Args, typename... CArgs>
|
|
|
|
userdata(const char* name, constructors<CArgs...> c, Args&&... args) :
|
|
|
|
userdata(std::string(name), std::move(c), std::forward<Args>(args)...) {}
|
2014-06-07 10:54:45 +08:00
|
|
|
|
|
|
|
const std::vector<std::string>& function_names () const {
|
|
|
|
return functionnames;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<std::unique_ptr<base_function>>& functions () const {
|
|
|
|
return funcs;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<std::unique_ptr<base_function>>& reference_functions () const {
|
|
|
|
return ptrfuncs;
|
|
|
|
}
|
|
|
|
|
2014-06-08 04:33:39 +08:00
|
|
|
const std::vector<std::unique_ptr<base_function>>& meta_functions () const {
|
|
|
|
return metafuncs;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<std::unique_ptr<base_function>>& meta_reference_functions () const {
|
|
|
|
return ptrmetafuncs;
|
|
|
|
}
|
|
|
|
|
2014-06-07 10:54:45 +08:00
|
|
|
const std::vector<luaL_Reg>& function_table () const {
|
|
|
|
return functiontable;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<luaL_Reg>& reference_function_table () const {
|
|
|
|
return ptrfunctiontable;
|
|
|
|
}
|
|
|
|
|
2014-06-08 04:33:39 +08:00
|
|
|
const std::vector<luaL_Reg>& meta_function_table () const {
|
|
|
|
return metafunctiontable;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<luaL_Reg>& meta_reference_function_table () const {
|
|
|
|
return ptrmetafunctiontable;
|
|
|
|
}
|
|
|
|
|
2014-06-07 10:54:45 +08:00
|
|
|
const std::string& name () const {
|
|
|
|
return luaname;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-08 04:33:39 +08:00
|
|
|
template <typename T>
|
|
|
|
const std::array<std::string, 19> userdata<T>::metafunctionnames = {
|
|
|
|
"__index",
|
|
|
|
"__newindex",
|
|
|
|
"__mode",
|
|
|
|
"__call",
|
|
|
|
"__metatable",
|
|
|
|
"__tostring",
|
|
|
|
"__len",
|
|
|
|
"__gc",
|
|
|
|
"__unm",
|
|
|
|
"__add",
|
|
|
|
"__sub",
|
|
|
|
"__mul",
|
|
|
|
"__div",
|
|
|
|
"__mod",
|
|
|
|
"__pow",
|
|
|
|
"__concat",
|
|
|
|
"__eq",
|
|
|
|
"__lt",
|
|
|
|
"__le",
|
|
|
|
};
|
|
|
|
|
2014-06-07 10:54:45 +08:00
|
|
|
namespace stack {
|
|
|
|
template <typename T>
|
|
|
|
struct pusher<userdata<T>> {
|
2014-06-08 04:33:39 +08:00
|
|
|
template <typename Meta, typename Funcs, typename FuncTable, typename MetaFuncs, typename MetaFuncTable>
|
|
|
|
static void push_metatable(lua_State* L, Meta&& meta, Funcs&& funcs, FuncTable&& functable, MetaFuncs&& metafuncs, MetaFuncTable&& metafunctable) {
|
|
|
|
luaL_newmetatable(L, std::addressof(meta[0]));
|
|
|
|
// regular functions accessed through __index semantics
|
|
|
|
for (std::size_t u = 0; u < funcs.size(); ++u) {
|
2014-06-09 17:30:00 +08:00
|
|
|
stack::push<upvalue_t>(L, funcs[u].get());
|
2014-06-08 04:33:39 +08:00
|
|
|
}
|
|
|
|
luaL_setfuncs(L, functable.data(), static_cast<uint32_t>(funcs.size()));
|
|
|
|
// meta functions
|
|
|
|
for (std::size_t u = 0; u < metafuncs.size(); ++u) {
|
2014-06-09 17:30:00 +08:00
|
|
|
stack::push<upvalue_t>(L, metafuncs[u].get());
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
2014-06-08 04:33:39 +08:00
|
|
|
luaL_setfuncs(L, metafunctable.data(), static_cast<uint32_t>(metafuncs.size()));
|
2014-06-09 17:30:00 +08:00
|
|
|
lua_pushvalue(L, -1);
|
|
|
|
lua_setfield(L, -1, "__index");
|
2014-06-08 04:33:39 +08:00
|
|
|
}
|
2014-06-07 10:54:45 +08:00
|
|
|
|
2014-06-08 04:33:39 +08:00
|
|
|
static void push (lua_State* L, userdata<T>& user) {
|
2014-06-09 17:30:00 +08:00
|
|
|
// push pointer tables first,
|
|
|
|
// but leave the regular T table on last so it can be linked to a type for usage with `.new(...)`
|
2014-06-08 04:33:39 +08:00
|
|
|
push_metatable(L, userdata_traits<T*>::metatable, user.reference_functions(), user.reference_function_table(), user.meta_reference_functions(), user.meta_reference_function_table());
|
2014-06-09 17:30:00 +08:00
|
|
|
push_metatable(L, userdata_traits<T>::metatable, user.functions(), user.function_table(), user.meta_functions(), user.meta_function_table());
|
2014-06-07 10:54:45 +08:00
|
|
|
}
|
2014-04-26 07:41:03 +08:00
|
|
|
};
|
2014-06-07 10:54:45 +08:00
|
|
|
} // stack
|
|
|
|
|
2014-04-27 13:29:37 +08:00
|
|
|
} // sol
|
2014-04-26 07:41:03 +08:00
|
|
|
|
2014-04-26 08:42:38 +08:00
|
|
|
#endif // SOL_USERDATA_HPP
|