Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
af669e75d94ea45887dc2e08e96c4b75fdd571bc
[simgrid.git] / src / bindings / lua / lua_host.c
1 /* Copyright (c) 2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* SimGrid Lua bindings                                                     */
8
9 #include "lua_private.h"
10 #include <lauxlib.h>
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(lua_host, bindings, "Lua bindings (host module)");
13
14 #define HOST_MODULE_NAME "simgrid.host"
15
16 /* ********************************************************************************* */
17 /*                                simgrid.host API                                   */
18 /* ********************************************************************************* */
19
20 /**
21  * \brief Ensures that a value in the stack is a host and returns it.
22  * \param L a Lua state
23  * \param index an index in the Lua stack
24  * \return the C host corresponding to this Lua host
25  */
26 msg_host_t sglua_check_host(lua_State * L, int index)
27 {
28   msg_host_t *pi, ht;
29   luaL_checktype(L, index, LUA_TTABLE);
30   lua_getfield(L, index, "__simgrid_host");
31   pi = (msg_host_t *) luaL_checkudata(L, lua_gettop(L), HOST_MODULE_NAME);
32   if (pi == NULL)
33     XBT_ERROR("luaL_checkudata() returned NULL");
34   ht = *pi;
35   if (!ht)
36     luaL_error(L, "null Host");
37   lua_pop(L, 1);
38   return ht;
39 }
40
41 /**
42  * \brief Returns a host given its name.
43  * \param L a Lua state
44  * \return number of values returned to Lua
45  *
46  * - Argument 1 (string): name of a host
47  * - Return value (host): the corresponding host
48  */
49 static int l_host_get_by_name(lua_State * L)
50 {
51   const char *name = luaL_checkstring(L, 1);
52   XBT_DEBUG("Getting Host from name...");
53   msg_host_t msg_host = MSG_host_by_name(name);
54   if (!msg_host) {
55     XBT_ERROR("MSG_get_host_by_name failed, requested hostname: %s", name);
56   }
57   lua_newtable(L);              /* create a table, put the userdata on top of it */
58   msg_host_t *lua_host = (msg_host_t *) lua_newuserdata(L, sizeof(msg_host_t));
59   *lua_host = msg_host;
60   luaL_getmetatable(L, HOST_MODULE_NAME);
61   lua_setmetatable(L, -2);
62   lua_setfield(L, -2, "__simgrid_host");        /* put the userdata as field of the table */
63   /* remove the args from the stack */
64   lua_remove(L, 1);
65   return 1;
66 }
67
68 /**
69  * \brief Returns the name of a host.
70  * \param L a Lua state
71  * \return number of values returned to Lua
72  *
73  * - Argument 1 (host): a host
74  * - Return value (string): name of this host
75  */
76 static int l_host_get_name(lua_State * L)
77 {
78   msg_host_t ht = sglua_check_host(L, 1);
79   lua_pushstring(L, MSG_host_get_name(ht));
80   return 1;
81 }
82
83 /**
84  * \brief Returns the number of existing hosts.
85  * \param L a Lua state
86  * \return number of values returned to Lua
87  *
88  * - Return value (number): number of hosts
89  */
90 static int l_host_number(lua_State * L)
91 {
92   xbt_dynar_t hosts = MSG_hosts_as_dynar();
93   lua_pushinteger(L, xbt_dynar_length(hosts));
94   xbt_dynar_free(&hosts);
95   return 1;
96 }
97
98 /**
99  * \brief Returns the host given its index.
100  * \param L a Lua state
101  * \return number of values returned to Lua
102  *
103  * - Argument 1 (number): an index (1 is the first)
104  * - Return value (host): the host at this index
105  */
106 static int l_host_at(lua_State * L)
107 {
108   int index = luaL_checkinteger(L, 1);
109   xbt_dynar_t hosts = MSG_hosts_as_dynar();
110   msg_host_t host = xbt_dynar_get_as(hosts,index - 1,msg_host_t);// lua indexing start by 1 (lua[1] <=> C[0])
111   lua_newtable(L);              /* create a table, put the userdata on top of it */
112   msg_host_t *lua_host = (msg_host_t *) lua_newuserdata(L, sizeof(msg_host_t));
113   *lua_host = host;
114   luaL_getmetatable(L, HOST_MODULE_NAME);
115   lua_setmetatable(L, -2);
116   lua_setfield(L, -2, "__simgrid_host");        /* put the userdata as field of the table */
117   xbt_dynar_free(&hosts);
118   return 1;
119 }
120
121 /**
122  * \brief Returns the value of a host property.
123  * \param L a Lua state
124  * \return number of values returned to Lua
125  *
126  * - Argument 1 (host): a host
127  * - Argument 2 (string): name of the property to get
128  * - Return value (string): the value of this property
129  */
130 static int l_host_get_property_value(lua_State * L)
131 {
132   msg_host_t ht = sglua_check_host(L, 1);
133   const char *prop = luaL_checkstring(L, 2);
134   lua_pushstring(L,MSG_host_get_property_value(ht,prop));
135   return 1;
136 }
137
138 /**
139  * \brief Destroys a host.
140  * \param L a Lua state
141  * \return number of values returned to Lua
142  *
143  * - Argument 1 (host): the host to destroy
144  */
145 static int l_host_destroy(lua_State *L)
146 {
147   //msg_host_t ht = sglua_check_host(L, 1);
148   //FIXME: not working..__MSG_host_priv_free(MSG_host_priv(ht));
149   return 0;
150 }
151
152 static const luaL_Reg host_functions[] = {
153   {"get_by_name", l_host_get_by_name},
154   {"name", l_host_get_name},
155   {"number", l_host_number},
156   {"at", l_host_at},
157   {"get_prop_value", l_host_get_property_value},
158   {"destroy", l_host_destroy},
159   // Bypass XML Methods
160   {"set_property", console_host_set_property},
161   {NULL, NULL}
162 };
163
164 /**
165  * \brief Returns a string representation of a host.
166  * \param L a Lua state
167  * \return number of values returned to Lua
168  *
169  * - Argument 1 (userdata): a host
170  * - Return value (string): a string describing this host
171  */
172 static int l_host_tostring(lua_State * L)
173 {
174   lua_pushfstring(L, "Host :%p", lua_touserdata(L, 1));
175   return 1;
176 }
177
178 static const luaL_Reg host_meta[] = {
179   {"__tostring", l_host_tostring},
180   {0, 0}
181 };
182
183 /**
184  * \brief Registers the host functions into the table simgrid.host.
185  *
186  * Also initialize the metatable of the host userdata type.
187  *
188  * \param L a lua state
189  */
190 void sglua_register_host_functions(lua_State* L)
191 {
192   /* create a table simgrid.host and fill it with host functions */
193   lua_getglobal(L, "simgrid"); /* simgrid */
194   luaL_newlib(L, host_functions); /* simgrid simgrid.host */
195   lua_setfield(L, -2, "host"); /* simgrid */
196   lua_getfield(L, -1, "host");    /* simgrid simgrid.host */
197
198   /* create the metatable for host, add it to the Lua registry */
199   luaL_newmetatable(L, HOST_MODULE_NAME); /* simgrid simgrid.host mt */
200
201   /* fill the metatable */
202   luaL_setfuncs(L, host_meta, 0);         /* simgrid simgrid.host mt */
203
204   /**
205    * Copy the table and push it onto the stack.
206    * Required for the lua_setfield call below.
207    */
208   lua_getfield(L, -3, "host");                   /* simgrid simgrid.host mt simgrid.host */
209
210   /* metatable.__index = simgrid.host
211    * we put the host functions inside the host userdata itself:
212    * this allows to write my_host:method(args) for
213    * simgrid.host.method(my_host, args) */
214   lua_setfield(L, -2, "__index");         /* simgrid simgrid.host mt */
215
216   lua_setmetatable(L, -2);                /* simgrid simgrid.host */
217   lua_pop(L, 2);                          /* -- */
218 }
219