2014-04-26 07:41:03 +08:00
// The MIT License (MIT)
2016-02-27 15:43:53 +08:00
// Copyright (c) 2013-2016 Rapptz, ThePhD and contributors
2014-04-26 07:41:03 +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.
2014-09-19 22:45:13 +08:00
# ifndef SOL_USERTYPE_HPP
2014-09-19 20:22:21 +08:00
# define SOL_USERTYPE_HPP
2014-04-26 07:41:03 +08:00
2014-04-26 08:53:36 +08:00
# include "state.hpp"
2014-04-26 10:05:58 +08:00
# include "function_types.hpp"
2014-09-19 20:22:21 +08:00
# include "usertype_traits.hpp"
2016-03-05 14:43:45 +08:00
# include "inheritance.hpp"
2016-02-22 08:26:58 +08:00
# include "raii.hpp"
2014-09-19 23:08:44 +08:00
# include "deprecate.hpp"
2014-04-26 07:41:03 +08:00
# include <vector>
2014-06-08 04:33:39 +08:00
# include <array>
# include <algorithm>
2016-02-17 10:22:07 +08:00
# include <map>
2014-04-26 07:41:03 +08:00
namespace sol {
2016-02-22 08:26:58 +08:00
const std : : array < std : : string , 2 > meta_variable_names = { {
" __index " ,
" __newindex " ,
} } ;
const std : : array < std : : string , 21 > meta_function_names = { {
" new " ,
" __index " ,
" __newindex " ,
" __mode " ,
" __call " ,
" __metatable " ,
" __tostring " ,
" __len " ,
" __unm " ,
" __add " ,
" __sub " ,
" __mul " ,
" __div " ,
" __mod " ,
" __pow " ,
" __concat " ,
" __eq " ,
" __lt " ,
" __le " ,
" __gc " ,
" __call " ,
} } ;
enum class meta_function {
construct ,
index ,
new_index ,
mode ,
call ,
metatable ,
to_string ,
length ,
unary_minus ,
addition ,
subtraction ,
multiplication ,
division ,
modulus ,
power_of ,
involution = power_of ,
concatenation ,
equal_to ,
less_than ,
less_than_or_equal_to ,
garbage_collect ,
call_function ,
} ;
namespace usertype_detail {
struct add_destructor_tag { } ;
struct check_destructor_tag { } ;
struct verified_tag { } const verified { } ;
template < typename T >
struct is_constructor : std : : false_type { } ;
template < typename . . . Args >
struct is_constructor < constructors < Args . . . > > : std : : true_type { } ;
template < typename . . . Args >
struct is_constructor < constructor_wrapper < Args . . . > > : std : : true_type { } ;
template < typename . . . Args >
2016-02-24 12:39:46 +08:00
using has_constructor = meta : : Or < is_constructor < meta : : Unqualified < Args > > . . . > ;
2016-02-22 08:26:58 +08:00
template < typename T >
struct is_destructor : std : : false_type { } ;
template < typename Fx >
struct is_destructor < destructor_wrapper < Fx > > : std : : true_type { } ;
template < typename . . . Args >
2016-02-24 12:39:46 +08:00
using has_destructor = meta : : Or < is_destructor < meta : : Unqualified < Args > > . . . > ;
2016-02-22 08:26:58 +08:00
2016-03-13 20:30:14 +08:00
enum class stage {
normalmeta ,
refmeta ,
uniquemeta ,
} ;
template < typename T , stage metastage >
inline void push_metatable ( lua_State * L , bool needsindexfunction , std : : vector < std : : unique_ptr < function_detail : : base_function > > & funcs , std : : vector < luaL_Reg > & functable , std : : vector < luaL_Reg > & metafunctable , void * baseclasscheck , void * baseclasscast ) {
2016-02-22 08:26:58 +08:00
static const auto & gcname = meta_function_names [ static_cast < int > ( meta_function : : garbage_collect ) ] ;
luaL_newmetatable ( L , & usertype_traits < T > : : metatable [ 0 ] ) ;
int metatableindex = lua_gettop ( L ) ;
2016-03-05 14:43:45 +08:00
if ( baseclasscheck ! = nullptr ) {
2016-03-12 00:34:44 +08:00
stack : : push ( L , light_userdata_value ( baseclasscheck ) ) ;
lua_setfield ( L , metatableindex , & detail : : base_class_check_key [ 0 ] ) ;
2016-03-05 14:43:45 +08:00
}
if ( baseclasscast ! = nullptr ) {
2016-03-12 00:34:44 +08:00
stack : : push ( L , light_userdata_value ( baseclasscast ) ) ;
lua_setfield ( L , metatableindex , & detail : : base_class_cast_key [ 0 ] ) ;
2016-03-05 14:43:45 +08:00
}
2016-02-22 08:26:58 +08:00
if ( funcs . size ( ) < 1 & & metafunctable . size ( ) < 2 ) {
return ;
}
// Metamethods directly on the metatable itself
int metaup = stack : : stack_detail : : push_upvalues ( L , funcs ) ;
2016-03-13 20:30:14 +08:00
switch ( metastage ) {
case stage : : uniquemeta : {
if ( gcname ! = metafunctable . back ( ) . name ) {
metafunctable . push_back ( { " __gc " , nullptr } ) ;
}
luaL_Reg & target = metafunctable . back ( ) ;
luaL_Reg old = target ;
target . func = detail : : unique_destruct < T > ;
metafunctable . push_back ( { nullptr , nullptr } ) ;
luaL_setfuncs ( L , metafunctable . data ( ) , metaup ) ;
metafunctable . pop_back ( ) ;
target = old ;
break ; }
case stage : : refmeta :
if ( gcname = = metafunctable . back ( ) . name ) {
// We can just "clip" out the __gc function,
// which we always put as the last entry in the meta function table.
luaL_Reg & target = metafunctable . back ( ) ;
luaL_Reg old = target ;
target = { nullptr , nullptr } ;
luaL_setfuncs ( L , metafunctable . data ( ) , metaup ) ;
target = old ;
}
break ;
case stage : : normalmeta :
default :
metafunctable . push_back ( { nullptr , nullptr } ) ;
luaL_setfuncs ( L , metafunctable . data ( ) , metaup ) ;
metafunctable . pop_back ( ) ;
break ;
2016-02-22 08:26:58 +08:00
}
if ( needsindexfunction ) {
// We don't need to do anything more
// since we've already bound the __index field using
// setfuncs above...
return ;
}
// Otherwise, we use quick, fast table indexing for methods
// gives us performance boost in calling them
2016-02-26 02:04:04 +08:00
lua_createtable ( L , 0 , static_cast < int > ( functable . size ( ) ) ) ;
2016-02-22 08:26:58 +08:00
int up = stack : : stack_detail : : push_upvalues ( L , funcs ) ;
2016-03-13 20:30:14 +08:00
functable . push_back ( { nullptr , nullptr } ) ;
2016-02-22 08:26:58 +08:00
luaL_setfuncs ( L , functable . data ( ) , up ) ;
2016-03-13 20:30:14 +08:00
functable . pop_back ( ) ;
2016-02-22 08:26:58 +08:00
lua_setfield ( L , metatableindex , " __index " ) ;
return ;
}
template < typename T , typename Functions >
inline void set_global_deleter ( lua_State * L , lua_CFunction cleanup , Functions & & functions ) {
// Automatic deleter table -- stays alive until lua VM dies
// even if the user calls collectgarbage(), weirdly enough
lua_createtable ( L , 0 , 0 ) ; // global table that sits at toplevel
lua_createtable ( L , 0 , 1 ) ; // metatable for the global table
int up = stack : : stack_detail : : push_upvalues < true > ( L , functions ) ;
stack : : set_field ( L , " __gc " , c_closure ( cleanup , up ) ) ;
lua_setmetatable ( L , - 2 ) ;
// gctable name by default has ♻ part of it
lua_setglobal ( L , & usertype_traits < T > : : gc_table [ 0 ] ) ;
}
2016-03-13 20:30:14 +08:00
} // usertype_detail
2016-02-22 08:26:58 +08:00
template < typename T >
class usertype {
private :
2016-02-24 12:39:46 +08:00
typedef std : : map < std : : string , std : : pair < bool , function_detail : : base_function * > > function_map_t ;
2016-02-22 08:26:58 +08:00
std : : vector < std : : string > functionnames ;
2016-02-24 12:39:46 +08:00
std : : vector < std : : unique_ptr < function_detail : : base_function > > functions ;
2016-02-22 08:26:58 +08:00
std : : vector < luaL_Reg > functiontable ;
std : : vector < luaL_Reg > metafunctiontable ;
2016-02-24 12:39:46 +08:00
function_detail : : base_function * indexfunc ;
function_detail : : base_function * newindexfunc ;
2016-02-22 08:26:58 +08:00
function_map_t indexwrapper , newindexwrapper ;
lua_CFunction constructfunc ;
const char * destructfuncname ;
lua_CFunction destructfunc ;
lua_CFunction functiongcfunc ;
bool needsindexfunction ;
2016-03-05 14:43:45 +08:00
void * baseclasscheck ;
void * baseclasscast ;
2016-02-22 08:26:58 +08:00
template < typename . . . Functions >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_function ( const std : : string & , overload_set < Functions . . . > func ) {
2016-03-13 20:30:14 +08:00
return std : : make_unique < function_detail : : usertype_overloaded_function < T , Functions . . . > > ( std : : move ( func . set ) ) ;
2016-02-22 08:26:58 +08:00
}
template < typename . . . Functions >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_function ( const std : : string & , constructor_wrapper < Functions . . . > func ) {
2016-03-13 20:30:14 +08:00
return std : : make_unique < function_detail : : usertype_constructor_function < T , Functions . . . > > ( std : : move ( func . set ) ) ;
2016-02-22 08:26:58 +08:00
}
template < typename Arg , typename . . . Args , typename Ret >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_function ( const std : : string & , Ret ( * func ) ( Arg , Args . . . ) ) {
typedef meta : : Unqualified < std : : remove_pointer_t < Arg > > Argu ;
2016-02-22 08:26:58 +08:00
static_assert ( std : : is_base_of < Argu , T > : : value , " Any non-member-function must have a first argument which is covariant with the desired userdata type. " ) ;
typedef std : : decay_t < decltype ( func ) > function_type ;
2016-02-24 12:39:46 +08:00
return std : : make_unique < function_detail : : usertype_function < function_type , T > > ( func ) ;
2016-02-22 08:26:58 +08:00
}
template < typename Base , typename Ret >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_variable_function ( std : : true_type , const std : : string & , Ret Base : : * func ) {
2016-02-22 08:26:58 +08:00
static_assert ( std : : is_base_of < Base , T > : : value , " Any registered function must be part of the class " ) ;
typedef std : : decay_t < decltype ( func ) > function_type ;
2016-02-24 12:39:46 +08:00
return std : : make_unique < function_detail : : usertype_variable_function < function_type , T > > ( func ) ;
2016-02-22 08:26:58 +08:00
}
template < typename Base , typename Ret >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_variable_function ( std : : false_type , const std : : string & , Ret Base : : * func ) {
2016-02-22 08:26:58 +08:00
static_assert ( std : : is_base_of < Base , T > : : value , " Any registered function must be part of the class " ) ;
typedef std : : decay_t < decltype ( func ) > function_type ;
2016-02-24 12:39:46 +08:00
return std : : make_unique < function_detail : : usertype_function < function_type , T > > ( func ) ;
2016-02-22 08:26:58 +08:00
}
template < typename Base , typename Ret >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_function ( const std : : string & name , Ret Base : : * func ) {
2016-02-22 08:26:58 +08:00
typedef std : : decay_t < decltype ( func ) > function_type ;
return make_variable_function ( std : : is_member_object_pointer < function_type > ( ) , name , func ) ;
}
template < typename Fx >
2016-02-24 12:39:46 +08:00
std : : unique_ptr < function_detail : : base_function > make_function ( const std : : string & , Fx & & func ) {
typedef meta : : Unqualified < Fx > Fxu ;
2016-03-13 20:30:14 +08:00
typedef meta : : tuple_element_t < 0 , typename meta : : function_traits < Fxu > : : args_tuple_type > Arg0 ;
2016-02-24 12:39:46 +08:00
typedef meta : : Unqualified < std : : remove_pointer_t < Arg0 > > Argu ;
2016-02-22 08:26:58 +08:00
static_assert ( std : : is_base_of < Argu , T > : : value , " Any non-member-function must have a first argument which is covariant with the desired usertype. " ) ;
typedef std : : decay_t < Fxu > function_type ;
2016-02-24 12:39:46 +08:00
return std : : make_unique < function_detail : : usertype_function < function_type , T > > ( func ) ;
2016-02-22 08:26:58 +08:00
}
template < std : : size_t N , typename . . . Args >
void build_function ( std : : string funcname , constructors < Args . . . > ) {
functionnames . push_back ( std : : move ( funcname ) ) ;
std : : string & name = functionnames . back ( ) ;
// Insert bubble to keep with compile-time argument count (simpler and cheaper to do)
functions . push_back ( nullptr ) ;
2016-02-24 12:39:46 +08:00
constructfunc = function_detail : : construct < T , Args . . . > ;
2016-03-03 09:45:52 +08:00
metafunctiontable . push_back ( { name . c_str ( ) , constructfunc } ) ;
2016-02-22 08:26:58 +08:00
}
template < std : : size_t N >
void build_function ( std : : string funcname , destructor_wrapper < void > ) {
auto metamethodfind = std : : find ( meta_function_names . begin ( ) , meta_function_names . end ( ) , funcname ) ;
if ( metamethodfind = = meta_function_names . end ( ) )
throw error ( " cannot set destructor to anything but the metamethod \" __gc \" " ) ;
meta_function metafunction = static_cast < meta_function > ( metamethodfind - meta_function_names . begin ( ) ) ;
if ( metafunction ! = meta_function : : garbage_collect )
throw error ( " cannot set destructor to anything but the metamethod \" __gc \" " ) ;
functionnames . push_back ( std : : move ( funcname ) ) ;
std : : string & name = functionnames . back ( ) ;
2016-02-24 12:39:46 +08:00
destructfunc = function_detail : : destruct < T > ;
2016-02-22 08:26:58 +08:00
destructfuncname = name . c_str ( ) ;
// Insert bubble to stay with the compile-time count
functions . push_back ( nullptr ) ;
}
template < std : : size_t N , typename Fx >
void build_function ( std : : string funcname , destructor_wrapper < Fx > dx ) {
auto metamethodfind = std : : find ( meta_function_names . begin ( ) , meta_function_names . end ( ) , funcname ) ;
if ( metamethodfind = = meta_function_names . end ( ) )
throw error ( " cannot set destructor to anything but the metamethod \" __gc \" " ) ;
meta_function metafunction = static_cast < meta_function > ( metamethodfind - meta_function_names . begin ( ) ) ;
if ( metafunction ! = meta_function : : garbage_collect )
throw error ( " cannot set destructor to anything but the metamethod \" __gc \" " ) ;
functionnames . push_back ( std : : move ( funcname ) ) ;
std : : string & name = functionnames . back ( ) ;
auto baseptr = make_function ( name , std : : move ( dx . fx ) ) ;
functions . emplace_back ( std : : move ( baseptr ) ) ;
2016-02-24 12:39:46 +08:00
destructfunc = function_detail : : usertype_call < N > ;
2016-02-22 08:26:58 +08:00
destructfuncname = name . c_str ( ) ;
}
template < std : : size_t N , typename Fx >
void build_function ( std : : string funcname , Fx & & func ) {
2016-02-24 12:39:46 +08:00
typedef std : : is_member_object_pointer < meta : : Unqualified < Fx > > is_variable ;
2016-02-22 08:26:58 +08:00
functionnames . push_back ( std : : move ( funcname ) ) ;
std : : string & name = functionnames . back ( ) ;
auto baseptr = make_function ( name , std : : forward < Fx > ( func ) ) ;
functions . emplace_back ( std : : move ( baseptr ) ) ;
auto metamethodfind = std : : find ( meta_function_names . begin ( ) , meta_function_names . end ( ) , name ) ;
if ( metamethodfind ! = meta_function_names . end ( ) ) {
2016-02-24 12:39:46 +08:00
metafunctiontable . push_back ( { name . c_str ( ) , function_detail : : usertype_call < N > } ) ;
2016-02-22 08:26:58 +08:00
meta_function metafunction = static_cast < meta_function > ( metamethodfind - meta_function_names . begin ( ) ) ;
switch ( metafunction ) {
case meta_function : : garbage_collect :
destructfuncname = name . c_str ( ) ;
2016-02-24 12:39:46 +08:00
destructfunc = function_detail : : usertype_call < N > ;
2016-02-22 08:26:58 +08:00
return ;
case meta_function : : index :
indexfunc = functions . back ( ) . get ( ) ;
needsindexfunction = true ;
break ;
case meta_function : : new_index :
newindexfunc = functions . back ( ) . get ( ) ;
break ;
case meta_function : : construct :
2016-02-24 12:39:46 +08:00
constructfunc = function_detail : : usertype_call < N > ;
2016-02-22 08:26:58 +08:00
break ;
default :
break ;
}
return ;
}
if ( is_variable : : value ) {
needsindexfunction = true ;
indexwrapper . insert ( { name , { false , functions . back ( ) . get ( ) } } ) ;
newindexwrapper . insert ( { name , { false , functions . back ( ) . get ( ) } } ) ;
return ;
}
indexwrapper . insert ( { name , { true , functions . back ( ) . get ( ) } } ) ;
2016-02-24 12:39:46 +08:00
functiontable . push_back ( { name . c_str ( ) , function_detail : : usertype_call < N > } ) ;
2016-02-22 08:26:58 +08:00
}
template < std : : size_t N , typename Fx , typename . . . Args >
void build_function_tables ( std : : string funcname , Fx & & func , Args & & . . . args ) {
build_function < N > ( std : : move ( funcname ) , std : : forward < Fx > ( func ) ) ;
build_function_tables < N + 1 > ( std : : forward < Args > ( args ) . . . ) ;
}
template < std : : size_t N , typename Fx , typename . . . Args >
void build_function_tables ( meta_function metafunc , Fx & & func , Args & & . . . args ) {
std : : size_t idx = static_cast < std : : size_t > ( metafunc ) ;
const std : : string & funcname = meta_function_names [ idx ] ;
build_function_tables < N > ( funcname , std : : forward < Fx > ( func ) , std : : forward < Args > ( args ) . . . ) ;
}
2016-03-05 14:43:45 +08:00
template < std : : size_t N , typename . . . Bases , typename . . . Args >
2016-03-12 00:34:44 +08:00
void build_function_tables ( base_classes_tag , bases < Bases . . . > , Args & & . . . args ) {
build_function_tables < N > ( std : : forward < Args > ( args ) . . . ) ;
if ( sizeof . . . ( Bases ) < 1 )
return ;
2016-03-05 14:43:45 +08:00
# ifndef SOL_NO_EXCEPTIONS
2016-03-12 00:34:44 +08:00
static_assert ( sizeof ( void * ) < = sizeof ( detail : : throw_cast ) , " The size of this data pointer is too small to fit the inheritance checking function: file a bug report. " ) ;
baseclasscast = ( void * ) & detail : : throw_as < T > ;
2016-03-05 14:43:45 +08:00
# elif !defined(SOL_NO_RTTI)
2016-03-12 00:34:44 +08:00
static_assert ( sizeof ( void * ) < = sizeof ( detail : : inheritance_check_function ) , " The size of this data pointer is too small to fit the inheritance checking function: file a bug report. " ) ;
static_assert ( sizeof ( void * ) < = sizeof ( detail : : inheritance_cast_function ) , " The size of this data pointer is too small to fit the inheritance checking function: file a bug report. " ) ;
baseclasscheck = ( void * ) & detail : : inheritance < T , Bases . . . > : : check ;
baseclasscast = ( void * ) & detail : : inheritance < T , Bases . . . > : : cast ;
# else
static_assert ( sizeof ( void * ) < = sizeof ( detail : : inheritance_check_function ) , " The size of this data pointer is too small to fit the inheritance checking function: file a bug report. " ) ;
static_assert ( sizeof ( void * ) < = sizeof ( detail : : inheritance_cast_function ) , " The size of this data pointer is too small to fit the inheritance checking function: file a bug report. " ) ;
baseclasscheck = ( void * ) & detail : : inheritance < T , Bases . . . > : : check ;
baseclasscast = ( void * ) & detail : : inheritance < T , Bases . . . > : : cast ;
2016-03-05 14:43:45 +08:00
# endif // No Runtime Type Information vs. Throw-Style Inheritance
}
2016-02-22 08:26:58 +08:00
template < std : : size_t N >
void build_function_tables ( ) {
int variableend = 0 ;
if ( ! indexwrapper . empty ( ) ) {
2016-02-24 12:39:46 +08:00
functions . push_back ( std : : make_unique < function_detail : : usertype_indexing_function > ( " __index " , indexfunc , std : : move ( indexwrapper ) ) ) ;
metafunctiontable . push_back ( { " __index " , function_detail : : usertype_call < N > } ) ;
2016-02-22 08:26:58 +08:00
+ + variableend ;
}
if ( ! newindexwrapper . empty ( ) ) {
2016-02-24 12:39:46 +08:00
functions . push_back ( std : : make_unique < function_detail : : usertype_indexing_function > ( " __newindex " , newindexfunc , std : : move ( newindexwrapper ) ) ) ;
metafunctiontable . push_back ( { " __newindex " , indexwrapper . empty ( ) ? function_detail : : usertype_call < N > : function_detail : : usertype_call < N + 1 > } ) ;
2016-02-22 08:26:58 +08:00
+ + variableend ;
}
if ( destructfunc ! = nullptr ) {
metafunctiontable . push_back ( { destructfuncname , destructfunc } ) ;
}
switch ( variableend ) {
case 2 :
2016-02-24 12:39:46 +08:00
functiongcfunc = function_detail : : usertype_gc < N + 2 > ;
2016-02-22 08:26:58 +08:00
break ;
case 1 :
2016-02-24 12:39:46 +08:00
functiongcfunc = function_detail : : usertype_gc < N + 1 > ;
2016-02-22 08:26:58 +08:00
break ;
case 0 :
2016-02-24 12:39:46 +08:00
functiongcfunc = function_detail : : usertype_gc < N + 0 > ;
2016-02-22 08:26:58 +08:00
break ;
}
}
template < typename . . . Args >
2016-03-05 14:43:45 +08:00
usertype ( usertype_detail : : verified_tag , Args & & . . . args ) : indexfunc ( nullptr ) , newindexfunc ( nullptr ) , constructfunc ( nullptr ) ,
destructfunc ( nullptr ) , functiongcfunc ( nullptr ) , needsindexfunction ( false ) , baseclasscheck ( nullptr ) , baseclasscast ( nullptr ) {
2016-02-22 08:26:58 +08:00
functionnames . reserve ( sizeof . . . ( args ) + 3 ) ;
functiontable . reserve ( sizeof . . . ( args ) + 3 ) ;
metafunctiontable . reserve ( sizeof . . . ( args ) + 3 ) ;
build_function_tables < 0 > ( std : : forward < Args > ( args ) . . . ) ;
}
template < typename . . . Args >
usertype ( usertype_detail : : add_destructor_tag , Args & & . . . args ) : usertype ( usertype_detail : : verified , " __gc " , default_destructor , std : : forward < Args > ( args ) . . . ) { }
template < typename . . . Args >
2016-02-24 12:39:46 +08:00
usertype ( usertype_detail : : check_destructor_tag , Args & & . . . args ) : usertype ( meta : : If < meta : : And < std : : is_destructible < T > , meta : : Not < usertype_detail : : has_destructor < Args . . . > > > , usertype_detail : : add_destructor_tag , usertype_detail : : verified_tag > ( ) , std : : forward < Args > ( args ) . . . ) { }
2016-02-22 08:26:58 +08:00
public :
template < typename . . . Args >
2016-02-24 12:39:46 +08:00
usertype ( Args & & . . . args ) : usertype ( meta : : If < meta : : And < std : : is_default_constructible < T > , meta : : Not < usertype_detail : : has_constructor < Args . . . > > > , decltype ( default_constructor ) , usertype_detail : : check_destructor_tag > ( ) , std : : forward < Args > ( args ) . . . ) { }
2016-02-22 08:26:58 +08:00
template < typename . . . Args , typename . . . CArgs >
usertype ( constructors < CArgs . . . > constructorlist , Args & & . . . args ) : usertype ( usertype_detail : : verified , " new " , constructorlist , " __gc " , default_destructor , std : : forward < Args > ( args ) . . . ) {
}
int push ( lua_State * L ) {
// push pointer tables first,
2016-03-13 20:30:14 +08:00
usertype_detail : : push_metatable < T * , usertype_detail : : stage : : refmeta > ( L , needsindexfunction , functions , functiontable , metafunctiontable , baseclasscheck , baseclasscast ) ;
lua_pop ( L , 1 ) ;
usertype_detail : : push_metatable < unique_usertype < T > , usertype_detail : : stage : : uniquemeta > ( L , needsindexfunction , functions , functiontable , metafunctiontable , baseclasscheck , baseclasscast ) ;
2016-02-22 08:26:58 +08:00
lua_pop ( L , 1 ) ;
// but leave the regular T table on last
// so it can be linked to a type for usage with `.new(...)` or `:new(...)`
2016-03-13 20:30:14 +08:00
usertype_detail : : push_metatable < T , usertype_detail : : stage : : normalmeta > ( L , needsindexfunction , functions , functiontable , metafunctiontable , baseclasscheck , baseclasscast ) ;
2016-02-22 08:26:58 +08:00
// Make sure to drop a table in the global namespace to properly destroy the pushed functions
// at some later point in life
usertype_detail : : set_global_deleter < T > ( L , functiongcfunc , functions ) ;
return 1 ;
}
} ;
namespace stack {
template < typename T >
struct pusher < usertype < T > > {
static int push ( lua_State * L , usertype < T > & user ) {
return user . push ( L ) ;
}
} ;
} // stack
2014-04-27 13:29:37 +08:00
} // sol
2014-04-26 07:41:03 +08:00
2014-09-19 20:22:21 +08:00
# endif // SOL_USERTYPE_HPP