// The MIT License (MIT) // Copyright (c) 2013-2016 Rapptz, ThePhD and contributors // 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_TABLE_CORE_HPP #define SOL_TABLE_CORE_HPP #include "proxy.hpp" #include "stack.hpp" #include "function_types.hpp" #include "usertype.hpp" #include "table_iterator.hpp" namespace sol { template class table_core : public reference { friend class state; friend class state_view; template using is_global = meta::And, meta::is_c_str...>; template void for_each(std::true_type, Fx&& fx) const { auto pp = stack::push_pop( *this ); stack::push( lua_state( ), nil ); while ( lua_next( this->lua_state( ), -2 ) ) { sol::object key( lua_state( ), -2 ); sol::object value( lua_state( ), -1 ); std::pair keyvalue(key, value); fx( keyvalue ); lua_pop( lua_state( ), 1 ); } } template void for_each(std::false_type, Fx&& fx) const { auto pp = stack::push_pop( *this ); stack::push( lua_state( ), nil ); while ( lua_next( this->lua_state( ), -2 ) ) { sol::object key( lua_state( ), -2 ); sol::object value( lua_state( ), -1 ); fx( key, value ); lua_pop( lua_state( ), 1 ); } } template auto tuple_get( types, std::index_sequence, Keys&& keys ) const -> decltype(stack::pop>(nullptr)){ auto pp = stack::push_pop...>::value>(*this); int tableindex = lua_gettop(lua_state()); void(detail::swallow{ ( stack::get_field(lua_state(), detail::forward_get(keys), tableindex), 0)... }); return stack::pop>( lua_state() ); } template decltype(auto) tuple_get( types, std::index_sequence, Keys&& keys ) const { auto pp = stack::push_pop>::value>(*this); stack::get_field( lua_state( ), detail::forward_get(keys)); return stack::pop( lua_state( ) ); } template void tuple_set( std::index_sequence, Pairs&& pairs ) { auto pp = stack::push_pop(pairs))...>::value>(*this); void(detail::swallow{ (stack::set_field(lua_state(), detail::forward_get(pairs), detail::forward_get(pairs) ), 0)... }); } template decltype(auto) traverse_get_deep( Key&& key ) const { stack::get_field( lua_state( ), std::forward( key ) ); return stack::get( lua_state( ) ); } template decltype(auto) traverse_get_deep( Key&& key, Keys&&... keys ) const { stack::get_field( lua_state( ), std::forward( key ) ); return traverse_get_deep(std::forward(keys)...); } template void traverse_set_deep( Key&& key, Value&& value ) const { stack::set_field( lua_state( ), std::forward( key ), std::forward(value) ); } template void traverse_set_deep( Key&& key, Keys&&... keys ) const { stack::get_field( lua_state( ), std::forward( key ) ); traverse_set_deep(std::forward(keys)...); } table_core(lua_State* L, detail::global_tag t) noexcept : reference(L, t) { } public: table_core( ) noexcept : reference( ) { } table_core( const table_core& global ) noexcept : reference( global ) { } table_core( lua_State* L, int index = -1 ) : reference( L, index ) { type_assert( L, index, type::table ); } table_iterator begin () const { return table_iterator(*this); } table_iterator end() const { return table_iterator(); } table_iterator cbegin() const { return begin(); } table_iterator cend() const { return end(); } template decltype(auto) get( Keys&&... keys ) const { return tuple_get( types( ), std::index_sequence_for( ), std::forward_as_tuple(std::forward(keys)...)); } template decltype(auto) traverse_get( Keys&&... keys ) const { auto pp = stack::push_pop::value>(*this); struct clean { lua_State* L; clean(lua_State* L) : L(L) {} ~clean() { lua_pop(L, static_cast(sizeof...(Keys))); } } c(lua_state()); return traverse_get_deep(std::forward(keys)...); } template table_core& traverse_set( Keys&&... keys ) { auto pp = stack::push_pop::value>(*this); traverse_set_deep(std::forward(keys)...); lua_pop(lua_state(), static_cast(sizeof...(Keys)-2)); return *this; } template table_core& set( Args&&... args ) { tuple_set(std::make_index_sequence(), std::forward_as_tuple(std::forward(args)...)); return *this; } template table_core& set_usertype( usertype& user ) { return set_usertype(usertype_traits::name, user); } template table_core& set_usertype( Key&& key, usertype& user ) { return set(std::forward(key), user); } template table_core& new_usertype(const std::string& name, Args&&... args) { usertype utype(std::forward(args)...); set_usertype(name, utype); return *this; } template table_core& new_usertype(const std::string& name, Args&&... args) { constructors> ctor{}; return new_usertype(name, ctor, std::forward(args)...); } template table_core& new_usertype(const std::string& name, constructors ctor, Args&&... args) { usertype utype(ctor, std::forward(args)...); set_usertype(name, utype); return *this; } template void for_each( Fx&& fx ) const { typedef meta::is_callable )> is_paired; for_each(is_paired(), std::forward(fx)); } size_t size( ) const { auto pp = stack::push_pop( *this ); return lua_rawlen(lua_state(), -1); } template proxy operator[]( T&& key ) & { return proxy( *this, std::forward( key ) ); } template proxy operator[]( T&& key ) const & { return proxy( *this, std::forward( key ) ); } template proxy operator[]( T&& key ) && { return proxy( *this, std::forward( key ) ); } template table_core& set_function( Key&& key, R fun_ptr( Args... ) ) { set_resolved_function( std::forward( key ), fun_ptr ); return *this; } template table_core& set_function( Key&& key, Sig* fun_ptr ) { set_resolved_function( std::forward( key ), fun_ptr ); return *this; } template table_core& set_function( Key&& key, R( C::*mem_ptr )( Args... ), T&& obj ) { set_resolved_function( std::forward( key ), mem_ptr, std::forward( obj ) ); return *this; } template table_core& set_function( Key&& key, Sig C::* mem_ptr, T&& obj ) { set_resolved_function( std::forward( key ), mem_ptr, std::forward( obj ) ); return *this; } template table_core& set_function( Key&& key, Fx&& fx ) { set_fx( types( ), std::forward( key ), std::forward( fx ) ); return *this; } private: template> void set_fx( types, Key&& key, Fx&& fx ) { set_resolved_function( std::forward( key ), std::forward( fx ) ); } template, overload_set>> = 0> void set_fx( types<>, Key&& key, Fx&& fx ) { set(std::forward(key), std::forward(fx)); } template, overload_set>> = 0> void set_fx( types<>, Key&& key, Fx&& fx ) { typedef meta::Unwrapped> fx_t; typedef decltype( &fx_t::operator() ) Sig; set_fx( types>( ), std::forward( key ), std::forward( fx ) ); } template void set_resolved_function( Key&& key, Args&&... args ) { set(std::forward(key), function_pack>(std::forward(args)...)); } public: table create(int narr = 0, int nrec = 0) { return create(lua_state(), narr, nrec); } template table create(int narr, int nrec, Key&& key, Value&& value, Args&&... args) { return create(lua_state(), narr, nrec, std::forward(key), std::forward(value), std::forward(args)...); } static inline table create(lua_State* L, int narr = 0, int nrec = 0) { lua_createtable(L, narr, nrec); table result(L); lua_pop(L, 1); return result; } template static inline table create(lua_State* L, int narr, int nrec, Key&& key, Value&& value, Args&&... args) { if (narr == 0) narr = static_cast(meta::count_if_pack::value); if (nrec == 0) nrec = static_cast(( sizeof...(Args) + 2 ) - narr); lua_createtable(L, narr, nrec); table result(L); result.set(std::forward(key), std::forward(value), std::forward(args)...); lua_pop(L, 1); return result; } }; } // sol #endif // SOL_TABLE_CORE_HPP