[9] | 1 | // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
|
---|
| 2 | // http://chaosforge.org/
|
---|
| 3 | //
|
---|
| 4 | // This file is part of NV Libraries.
|
---|
| 5 | // For conditions of distribution and use, see copyright notice in nv.hh
|
---|
| 6 |
|
---|
| 7 | #include "nv/lua/lua_state.hh"
|
---|
| 8 |
|
---|
[51] | 9 | #include "nv/lua/lua_raw.hh"
|
---|
[9] | 10 | #include "nv/logging.hh"
|
---|
| 11 | #include "nv/string.hh"
|
---|
[77] | 12 | #include "nv/root.hh"
|
---|
| 13 | #include "nv/types.hh"
|
---|
[9] | 14 |
|
---|
| 15 | using namespace nv;
|
---|
| 16 |
|
---|
[121] | 17 | lua::stack_guard::stack_guard( lua::state* aL )
|
---|
| 18 | : L(aL), m_level( lua_gettop(aL->L) )
|
---|
[9] | 19 | {
|
---|
| 20 |
|
---|
| 21 | }
|
---|
| 22 |
|
---|
[121] | 23 | lua::stack_guard::stack_guard( lua::state& aL )
|
---|
| 24 | : L(&aL), m_level( lua_gettop(aL.L) )
|
---|
[86] | 25 | {
|
---|
| 26 |
|
---|
| 27 | }
|
---|
| 28 |
|
---|
[9] | 29 | lua::stack_guard::~stack_guard()
|
---|
| 30 | {
|
---|
| 31 | lua_settop( L->L, m_level );
|
---|
| 32 | }
|
---|
| 33 |
|
---|
[74] | 34 | lua::state::state( bool load_libs /*= false*/ )
|
---|
[9] | 35 | {
|
---|
[74] | 36 | load_lua_library();
|
---|
[9] | 37 | m_owner = true;
|
---|
| 38 | L = luaL_newstate( );
|
---|
| 39 |
|
---|
| 40 | lua_pushcfunction(L, luaopen_base);
|
---|
| 41 | lua_pushliteral(L, LUA_TABLIBNAME);
|
---|
| 42 | lua_call(L, 1, 0);
|
---|
| 43 |
|
---|
[74] | 44 | if ( load_libs )
|
---|
[9] | 45 | {
|
---|
| 46 | stack_guard guard( this );
|
---|
[74] | 47 | static const luaL_Reg lualibs[] =
|
---|
| 48 | {
|
---|
| 49 | { "string", luaopen_string },
|
---|
| 50 | { "table", luaopen_table },
|
---|
| 51 | { "math", luaopen_math },
|
---|
| 52 | { NULL, NULL}
|
---|
| 53 | };
|
---|
| 54 | const luaL_Reg *lib = lualibs;
|
---|
| 55 | for(; lib->func != NULL; lib++)
|
---|
| 56 | {
|
---|
| 57 | lib->func( L );
|
---|
| 58 | }
|
---|
[9] | 59 | }
|
---|
| 60 |
|
---|
[74] | 61 | NV_LOG( nv::LOG_TRACE, "Lua state created" );
|
---|
[9] | 62 | }
|
---|
| 63 |
|
---|
| 64 | int lua::state::load_string( const std::string& code, const std::string& name )
|
---|
| 65 | {
|
---|
| 66 | NV_LOG( nv::LOG_TRACE, "Loading Lua string '" << name << "'");
|
---|
| 67 | return luaL_loadbuffer( L, code.c_str(), code.length(), name.c_str() );
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | int lua::state::load_stream( std::istream& stream, const std::string& name )
|
---|
| 71 | {
|
---|
| 72 | NV_LOG( nv::LOG_NOTICE, "Loading Lua stream '" << name << "'");
|
---|
| 73 | return load_string( std::string(
|
---|
| 74 | (std::istreambuf_iterator<char>(stream)),
|
---|
| 75 | std::istreambuf_iterator<char>()), name );
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | int lua::state::load_file( const std::string& filename )
|
---|
| 79 | {
|
---|
| 80 | NV_LOG( nv::LOG_NOTICE, "Loading Lua file '" << filename << "'");
|
---|
| 81 | return luaL_loadfile( L, filename.c_str() );
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[79] | 84 | bool lua::state::do_string( const std::string& code, const std::string& name, int rvalues )
|
---|
[9] | 85 | {
|
---|
| 86 | lua::stack_guard( this );
|
---|
| 87 | int result = load_string(code,name);
|
---|
| 88 | if (result)
|
---|
| 89 | {
|
---|
| 90 | NV_LOG( nv::LOG_WARNING, "Failed to load string " << name << ": " << lua_tostring(L, -1));
|
---|
| 91 | return false;
|
---|
| 92 | }
|
---|
[79] | 93 | return do_current( name, rvalues ) == 0;
|
---|
[9] | 94 | }
|
---|
| 95 |
|
---|
| 96 | bool lua::state::do_stream( std::istream& stream, const std::string& name )
|
---|
| 97 | {
|
---|
| 98 | lua::stack_guard( this );
|
---|
| 99 | int result = load_stream(stream,name);
|
---|
| 100 | if (result)
|
---|
| 101 | {
|
---|
| 102 | NV_LOG( nv::LOG_WARNING, "Failed to open stream " << name << ": " << lua_tostring(L, -1));
|
---|
| 103 | return false;
|
---|
| 104 | }
|
---|
| 105 | return do_current( name ) == 0;
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | bool lua::state::do_file( const std::string& filename )
|
---|
| 109 | {
|
---|
| 110 | lua::stack_guard( this );
|
---|
| 111 | int result = load_file(filename);
|
---|
| 112 | if (result)
|
---|
| 113 | {
|
---|
| 114 | NV_LOG( nv::LOG_WARNING, "Failed to open file " << filename << ": " << lua_tostring(L, -1));
|
---|
| 115 | return false;
|
---|
| 116 | }
|
---|
| 117 | return do_current( filename ) == 0;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[79] | 120 | int lua::state::do_current( const std::string& name, int rvalues )
|
---|
[9] | 121 | {
|
---|
[79] | 122 | int result = lua_pcall(L, 0, rvalues, 0);
|
---|
[9] | 123 | if (result)
|
---|
| 124 | {
|
---|
| 125 | NV_LOG( nv::LOG_WARNING, "Failed to run script " << name << ": " << lua_tostring(L, -1));
|
---|
| 126 | lua_pop( L, 1 );
|
---|
| 127 | }
|
---|
| 128 | return result;
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | lua::state::~state()
|
---|
| 132 | {
|
---|
| 133 | if (m_owner)
|
---|
| 134 | {
|
---|
| 135 | lua_close( L );
|
---|
| 136 | }
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | bool lua::state::push( const std::string& path, bool global )
|
---|
| 140 | {
|
---|
| 141 | size_t point = path.find('.');
|
---|
| 142 |
|
---|
| 143 | if (point == std::string::npos)
|
---|
| 144 | {
|
---|
| 145 | if (global)
|
---|
| 146 | {
|
---|
| 147 | lua_getglobal( L, path.c_str() );
|
---|
| 148 | }
|
---|
| 149 | else
|
---|
| 150 | {
|
---|
| 151 | lua_getfield( L, -1, path.c_str() );
|
---|
| 152 | }
|
---|
| 153 | return !lua_isnil( L, -1 );
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 | size_t idx = 0;
|
---|
| 157 | size_t start = 0;
|
---|
| 158 |
|
---|
| 159 | while( point != std::string::npos )
|
---|
| 160 | {
|
---|
| 161 | if (idx == 0)
|
---|
| 162 | {
|
---|
| 163 | if (global)
|
---|
| 164 | {
|
---|
| 165 | lua_getglobal( L, path.substr(start,point-start).c_str() );
|
---|
| 166 | }
|
---|
| 167 | else
|
---|
| 168 | {
|
---|
| 169 | lua_getfield( L, -1, path.substr(start,point-start).c_str() );
|
---|
| 170 | }
|
---|
| 171 | }
|
---|
| 172 | else
|
---|
| 173 | {
|
---|
| 174 | if ( lua_istable( L, -1 ) )
|
---|
| 175 | {
|
---|
| 176 | lua_pushstring( L, path.substr(start,point-start).c_str() );
|
---|
| 177 | lua_gettable( L, -2 );
|
---|
| 178 | lua_insert( L, -2 );
|
---|
| 179 | lua_pop( L, 1 );
|
---|
| 180 | }
|
---|
| 181 | else
|
---|
| 182 | {
|
---|
| 183 | lua_pop(L, 1);
|
---|
| 184 | lua_pushnil(L);
|
---|
| 185 | return false;
|
---|
| 186 | }
|
---|
| 187 | }
|
---|
| 188 | start = point+1;
|
---|
| 189 | point = path.find( '.', start );
|
---|
| 190 | }
|
---|
| 191 | return true;
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 |
|
---|
| 195 | int lua::state::get_stack_size()
|
---|
| 196 | {
|
---|
| 197 | return lua_gettop( L );
|
---|
| 198 | }
|
---|
| 199 |
|
---|
[181] | 200 | lua::table_guard::table_guard( lua::state* lstate, const path& p, bool global )
|
---|
[9] | 201 | : L(lstate), m_guard(lstate)
|
---|
| 202 | {
|
---|
[181] | 203 | if ( !p.resolve( L->get_raw(), global ) )
|
---|
| 204 | {
|
---|
| 205 | // TODO : error handling
|
---|
| 206 | }
|
---|
[9] | 207 | }
|
---|
| 208 |
|
---|
[181] | 209 | lua::table_guard::table_guard( const table_guard& parent, const path& p )
|
---|
[9] | 210 | : L( parent.L ), m_guard( parent.L )
|
---|
| 211 | {
|
---|
[181] | 212 | if ( !p.resolve( L->get_raw(), false ) )
|
---|
| 213 | {
|
---|
| 214 | // TODO : error handling
|
---|
| 215 | }
|
---|
[9] | 216 | }
|
---|
| 217 |
|
---|
| 218 | bool lua::table_guard::has_field( const string& element )
|
---|
| 219 | {
|
---|
| 220 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 221 | bool result = lua_isnil( L->L, -1 );
|
---|
| 222 | lua_pop( L->L, 1 );
|
---|
| 223 | return result;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | string lua::table_guard::get_string( const string& element, const string& defval /*= "" */ )
|
---|
| 227 | {
|
---|
| 228 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 229 | string result( ( lua_type( L->L, -1 ) == LUA_TSTRING ) ? lua_tostring( L->L, -1 ) : defval );
|
---|
| 230 | lua_pop( L->L, 1 );
|
---|
| 231 | return result;
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | char lua::table_guard::get_char( const string& element, char defval /*= "" */ )
|
---|
| 235 | {
|
---|
| 236 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 237 | char result = ( lua_type( L->L, -1 ) == LUA_TSTRING && lua_rawlen( L->L, -1 ) > 0 ) ? lua_tostring( L->L, -1 )[0] : defval;
|
---|
| 238 | lua_pop( L->L, 1 );
|
---|
| 239 | return result;
|
---|
| 240 | }
|
---|
| 241 |
|
---|
| 242 | int lua::table_guard::get_integer( const string& element, int defval /*= "" */ )
|
---|
| 243 | {
|
---|
| 244 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 245 | int result = lua_type( L->L, -1 ) == LUA_TNUMBER ? lua_tointeger( L->L, -1 ) : defval;
|
---|
| 246 | lua_pop( L->L, 1 );
|
---|
| 247 | return result;
|
---|
| 248 | }
|
---|
| 249 |
|
---|
| 250 | double lua::table_guard::get_double( const string& element, double defval /*= "" */ )
|
---|
| 251 | {
|
---|
| 252 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 253 | double result = lua_type( L->L, -1 ) == LUA_TNUMBER ? lua_tonumber( L->L, -1 ) : defval;
|
---|
| 254 | lua_pop( L->L, 1 );
|
---|
| 255 | return result;
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | bool lua::table_guard::get_boolean( const string& element, bool defval /*= "" */ )
|
---|
| 259 | {
|
---|
| 260 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 261 | bool result = lua_type( L->L, -1 ) == LUA_TBOOLEAN ? lua_toboolean( L->L, -1 ) != 0 : defval;
|
---|
| 262 | lua_pop( L->L, 1 );
|
---|
| 263 | return result;
|
---|
| 264 | }
|
---|
| 265 |
|
---|
[185] | 266 | void lua::table_guard::call_get()
|
---|
| 267 | {
|
---|
| 268 | lua_gettable( L->L, -2 );
|
---|
| 269 | }
|
---|
| 270 |
|
---|
| 271 | void lua::table_guard::call_get_raw()
|
---|
| 272 | {
|
---|
| 273 | lua_rawget( L->L, -2 );
|
---|
| 274 | }
|
---|
| 275 |
|
---|
| 276 |
|
---|
[162] | 277 | void lua::table_guard::get_raw_flags( const std::string& element, uint8* data, uint32 count )
|
---|
| 278 | {
|
---|
| 279 | lua_getfield( L->L, -1, element.c_str() );
|
---|
| 280 | if ( lua_type( L->L, -1 ) != LUA_TTABLE )
|
---|
| 281 | {
|
---|
| 282 | lua_pop( L->L, 1 );
|
---|
| 283 | return;
|
---|
| 284 | }
|
---|
| 285 | nlua_toflags( L->L, -1, data, count );
|
---|
| 286 | lua_pop( L->L, 1 );
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 |
|
---|
[9] | 290 | void lua::state::log_stack()
|
---|
| 291 | {
|
---|
| 292 | int top = lua_gettop(L);
|
---|
| 293 | NV_LOG( LOG_DEBUG, "Stack dump (" << top << ")");
|
---|
| 294 | for ( int i = 0; i < top; ++i )
|
---|
| 295 | {
|
---|
[74] | 296 | NV_LOG( LOG_DEBUG, "#" << i+1 << " - " << lua_typename(L, lua_type(L, i+1) ) << " = " << nlua_typecontent(L, i+1) );
|
---|
[9] | 297 | }
|
---|
| 298 | }
|
---|
| 299 |
|
---|
| 300 | lua_State* lua::state::get_raw()
|
---|
| 301 | {
|
---|
| 302 | return L;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
[187] | 305 | lua::reference lua::state::register_object( object * o, const char* lua_name )
|
---|
[77] | 306 | {
|
---|
[187] | 307 | if ( o == nullptr ) return ref_none;
|
---|
[77] | 308 | stack_guard guard( this );
|
---|
[187] | 309 | lua_getglobal( L, lua_name );
|
---|
[77] | 310 | if ( lua_isnil( L, -1 ) )
|
---|
| 311 | {
|
---|
[187] | 312 | NV_THROW( runtime_error, std::string( lua_name ) + " type not registered!" );
|
---|
[77] | 313 | }
|
---|
| 314 | deep_pointer_copy( -1, o );
|
---|
[187] | 315 | return luaL_ref( L, LUA_REGISTRYINDEX );
|
---|
[77] | 316 | }
|
---|
[9] | 317 |
|
---|
[187] | 318 | lua::reference lua::state::register_object( object * o )
|
---|
| 319 | {
|
---|
| 320 | if ( o == nullptr ) return ref_none;
|
---|
| 321 | type_database *db = o->get_root()->get_type_database();
|
---|
| 322 | if ( db == nullptr ) return ref_none;
|
---|
| 323 | type_entry* t = db->get_type(typeid(*o));
|
---|
| 324 | if ( t == nullptr ) return ref_none;
|
---|
| 325 | return register_object( o, t->name.c_str() );
|
---|
| 326 | }
|
---|
| 327 |
|
---|
[77] | 328 | void lua::state::unregister_object( object * o )
|
---|
| 329 | {
|
---|
| 330 | if (!o) return;
|
---|
| 331 | stack_guard guard( this );
|
---|
| 332 | lua_rawgeti( L, LUA_REGISTRYINDEX, o->get_lua_index() );
|
---|
| 333 | lua_pushstring( L, "__ptr" );
|
---|
| 334 | lua_pushboolean( L, false );
|
---|
| 335 | lua_rawset( L, -3 );
|
---|
| 336 | lua_pop( L, 1 );
|
---|
| 337 | luaL_unref( L, LUA_REGISTRYINDEX, o->get_lua_index() );
|
---|
| 338 | }
|
---|
| 339 |
|
---|
| 340 | void lua::state::deep_pointer_copy( int index, void* obj )
|
---|
| 341 | {
|
---|
| 342 | index = lua_absindex( L, index );
|
---|
| 343 | lua_newtable( L );
|
---|
| 344 | lua_pushnil( L );
|
---|
| 345 | bool has_functions = false;
|
---|
| 346 | bool has_metatable = false;
|
---|
| 347 |
|
---|
| 348 | while ( lua_next( L, index ) != 0 )
|
---|
| 349 | {
|
---|
| 350 | if ( lua_isfunction( L, -1 ) )
|
---|
| 351 | has_functions = true;
|
---|
| 352 | else if ( lua_istable( L, -1 ) )
|
---|
| 353 | {
|
---|
| 354 | deep_pointer_copy( -1, obj );
|
---|
| 355 | lua_insert( L, -2 );
|
---|
| 356 | lua_pop( L, 1 );
|
---|
| 357 | }
|
---|
| 358 | lua_pushvalue( L, -2 );
|
---|
| 359 | lua_insert( L, -2 );
|
---|
| 360 | lua_settable( L, -4 );
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | if ( lua_getmetatable( L, -2 ) )
|
---|
| 364 | {
|
---|
| 365 | lua_setmetatable( L, -2 );
|
---|
| 366 | has_metatable = true;
|
---|
| 367 | }
|
---|
| 368 |
|
---|
| 369 | if ( has_functions || has_metatable )
|
---|
| 370 | {
|
---|
| 371 | lua_pushstring( L, "__ptr" );
|
---|
| 372 | lua_pushlightuserdata( L, obj );
|
---|
| 373 | lua_rawset( L, -3 );
|
---|
| 374 | }
|
---|
| 375 | }
|
---|
[163] | 376 |
|
---|
| 377 | void lua::state::register_enum( type_database* db, const std::string& name, const std::string& prefix /*= std::string() */ )
|
---|
| 378 | {
|
---|
| 379 | type_entry* et = db->get_type( name );
|
---|
| 380 |
|
---|
| 381 | for ( const auto& entry : et->enum_list )
|
---|
| 382 | {
|
---|
| 383 | lua_pushinteger( L, entry.value );
|
---|
| 384 | if ( prefix.empty() )
|
---|
| 385 | {
|
---|
| 386 | lua_setglobal( L, entry.name.c_str() );
|
---|
| 387 | }
|
---|
| 388 | else
|
---|
| 389 | {
|
---|
| 390 | lua_setglobal( L, ( prefix + entry.name ).c_str() );
|
---|
| 391 | }
|
---|
| 392 | }
|
---|
| 393 | }
|
---|
[185] | 394 |
|
---|
| 395 | int lua::state::call_function( int nargs, int nresults )
|
---|
| 396 | {
|
---|
| 397 | int status = lua_pcall( L, nargs, nresults, 0 );
|
---|
| 398 | if ( status != 0 )
|
---|
| 399 | {
|
---|
| 400 | std::string error = lua_tostring( L, -1 );
|
---|
| 401 | lua_pop( L, 1 );
|
---|
| 402 | NV_LOG( LOG_ERROR, "Lua error : " << error )
|
---|
| 403 | }
|
---|
| 404 | return status;
|
---|
| 405 | }
|
---|
| 406 |
|
---|
| 407 | bool lua::state::push_function( const path& p, bool global )
|
---|
| 408 | {
|
---|
| 409 | if ( !p.resolve( L, global ) )
|
---|
| 410 | {
|
---|
| 411 | NV_LOG( LOG_ERROR, "Lua error : not a valid path - " + p.to_string() );
|
---|
| 412 | return false;
|
---|
| 413 | }
|
---|
| 414 |
|
---|
| 415 | if ( !lua_isfunction( L, -1 ) )
|
---|
| 416 | {
|
---|
| 417 | lua_pop( L, 1 );
|
---|
| 418 | NV_LOG( LOG_ERROR, "Lua error : not a valid function - " + p.to_string() );
|
---|
| 419 | return false;
|
---|
| 420 | }
|
---|
| 421 | return true;
|
---|
| 422 | }
|
---|
[187] | 423 |
|
---|