X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5089a0a98b27f5eeee62321dff4f025f1648f025..640006c64cc4f0c6a37c8d5ecc7935ec3edfa65b:/src/bindings/lua/lua_host.cpp diff --git a/src/bindings/lua/lua_host.cpp b/src/bindings/lua/lua_host.cpp index a6334223ff..918973120e 100644 --- a/src/bindings/lua/lua_host.cpp +++ b/src/bindings/lua/lua_host.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -6,6 +6,7 @@ /* SimGrid Lua bindings */ #include "lua_private.hpp" +#include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include @@ -72,7 +73,7 @@ static int l_host_get_by_name(lua_State * L) */ static int l_host_get_name(lua_State * L) { - sg_host_t ht = sglua_check_host(L, 1); + auto const* ht = sglua_check_host(L, 1); lua_pushstring(L, ht->get_cname()); return 1; } @@ -86,9 +87,7 @@ static int l_host_get_name(lua_State * L) */ static int l_host_number(lua_State * L) { - xbt_dynar_t hosts = sg_hosts_as_dynar(); - lua_pushinteger(L, xbt_dynar_length(hosts)); - xbt_dynar_free(&hosts); + lua_pushinteger(L, simgrid::s4u::Engine::get_instance()->get_host_count()); return 1; } @@ -103,15 +102,14 @@ static int l_host_number(lua_State * L) static int l_host_at(lua_State * L) { int index = luaL_checkinteger(L, 1); - xbt_dynar_t hosts = sg_hosts_as_dynar(); - sg_host_t host = xbt_dynar_get_as(hosts,index - 1,sg_host_t);// lua indexing start by 1 (lua[1] <=> C[0]) + std::vector hosts = simgrid::s4u::Engine::get_instance()->get_all_hosts(); + sg_host_t host = hosts[index - 1]; // lua indexing start by 1 (lua[1] <=> C[0]) lua_newtable(L); /* create a table, put the userdata on top of it */ sg_host_t *lua_host = (sg_host_t *) lua_newuserdata(L, sizeof(sg_host_t)); *lua_host = host; luaL_getmetatable(L, HOST_MODULE_NAME); lua_setmetatable(L, -2); lua_setfield(L, -2, HOST_FIELDNAME); /* put the userdata as field of the table */ - xbt_dynar_free(&hosts); return 1; } @@ -126,7 +124,7 @@ static int l_host_at(lua_State * L) */ static int l_host_get_property_value(lua_State * L) { - sg_host_t ht = sglua_check_host(L, 1); + const_sg_host_t ht = sglua_check_host(L, 1); const char *prop = luaL_checkstring(L, 2); lua_pushstring(L, sg_host_get_property_value(ht,prop)); return 1;