Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1a73c97818447c89f6f3b4babac9df95843d7280
[simgrid.git] / src / bindings / lua / lua_platf.c
1 /* Copyright (c) 2010, 2012-2014. 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 "simgrid/platf_interface.h"
11 #include "surf/surfxml_parse.h"
12 #include "surf/surf_routing.h"
13 #include <string.h>
14 #include <ctype.h>
15 #include <lauxlib.h>
16
17 #include <msg/msg_private.h>
18 #include <simix/smx_host_private.h>
19 #include <surf/surf_private.h>
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(lua_platf, bindings, "Lua bindings (platform module)");
22
23 #define PLATF_MODULE_NAME "simgrid.platf"
24
25 /* ********************************************************************************* */
26 /*                               simgrid.platf API                                   */
27 /* ********************************************************************************* */
28
29 static const luaL_reg platf_functions[] = {
30     {"open", console_open},
31     {"close", console_close},
32     {"AS_open", console_AS_open},
33     {"AS_close", console_AS_close},
34     {"host_new", console_add_host},
35     {"link_new", console_add_link},
36     {"router_new", console_add_router},
37     {"route_new", console_add_route},
38     {NULL, NULL}
39 };
40
41 int console_open(lua_State *L) {
42   sg_platf_init();
43   sg_platf_begin();
44
45   storage_register_callbacks();
46   routing_register_callbacks();
47
48   gpu_register_callbacks();
49   
50   return 0;
51 }
52
53 int console_close(lua_State *L) {
54   sg_platf_end();
55   sg_platf_exit();
56
57   xbt_lib_cursor_t cursor;
58   void **data;
59   char *name;
60
61   /* Initialize MSG and WKS hosts */
62   XBT_DEBUG("Initialize MSG and WKS hosts");
63   xbt_lib_foreach(host_lib, cursor, name, data) {
64     if(data[SURF_HOST_LEVEL]){
65       XBT_DEBUG("\tSee surf host %s",name);
66       SIMIX_host_create(name);
67       // THIS IS BRAINDEAD. There is no sg_host_t in that level, but a smx_host_priv. So commenting out for now.
68       // Lua is broken anyway. Christian will fix it
69       // __MSG_host_create((sg_host_t)data[SIMIX_HOST_LEVEL]);
70     }
71   }
72
73   return 0;
74 }
75
76 int console_add_host(lua_State *L) {
77   s_sg_platf_host_cbarg_t host;
78   memset(&host,0,sizeof(host));
79   int state;
80
81   // we get values from the table passed as argument
82   if (!lua_istable(L, -1)) {
83     XBT_ERROR
84         ("Bad Arguments to create host, Should be a table with named arguments");
85     return -1;
86   }
87
88   // get Id Value
89   lua_pushstring(L, "id");
90   lua_gettable(L, -2);
91   host.id = lua_tostring(L, -1);
92   lua_pop(L, 1);
93
94   // get power value
95   lua_pushstring(L, "power");
96   lua_gettable(L, -2);
97   host.power_peak = xbt_dynar_new(sizeof(double), NULL);
98   xbt_dynar_push_as(host.power_peak, double, lua_tonumber(L, -1));
99   lua_pop(L, 1);
100
101   // get core
102   lua_pushstring(L, "core");
103   lua_gettable(L, -2);
104   if(!lua_isnumber(L,-1)) host.core_amount = 1;// Default value
105   else host.core_amount = lua_tonumber(L, -1);
106   if (host.core_amount == 0)
107     host.core_amount = 1;
108   lua_pop(L, 1);
109
110   //get power_scale
111   lua_pushstring(L, "power_scale");
112   lua_gettable(L, -2);
113   if(!lua_isnumber(L,-1)) host.power_scale = 1;// Default value  
114   else host.power_scale = lua_tonumber(L, -1);
115   lua_pop(L, 1);
116
117   //get power_trace
118   lua_pushstring(L, "power_trace");
119   lua_gettable(L, -2);
120   host.power_trace = tmgr_trace_new_from_file(lua_tostring(L, -1));
121   lua_pop(L, 1);
122
123   //get state initial
124   lua_pushstring(L, "state_initial");
125   lua_gettable(L, -2);
126   if(!lua_isnumber(L,-1)) state = 1;// Default value
127   else state = lua_tonumber(L, -1);
128   lua_pop(L, 1);
129
130   if (state)
131     host.initial_state = SURF_RESOURCE_ON;
132   else
133     host.initial_state = SURF_RESOURCE_OFF;
134
135   //get trace state
136   lua_pushstring(L, "state_trace");
137   lua_gettable(L, -2);
138   host.state_trace = tmgr_trace_new_from_file(lua_tostring(L, -1));
139   lua_pop(L, 1);
140
141   sg_platf_new_host(&host);
142
143   return 0;
144 }
145
146 int  console_add_link(lua_State *L) {
147   s_sg_platf_link_cbarg_t link;
148   memset(&link,0,sizeof(link));
149
150   const char* policy;
151
152   if (! lua_istable(L, -1)) {
153     XBT_ERROR("Bad Arguments to create link, Should be a table with named arguments");
154     return -1;
155   }
156
157   // get Id Value
158   lua_pushstring(L, "id");
159   lua_gettable(L, -2);
160   link.id = lua_tostring(L, -1);
161   lua_pop(L, 1);
162
163   // get bandwidth value
164   lua_pushstring(L, "bandwidth");
165   lua_gettable(L, -2);
166   link.bandwidth = lua_tonumber(L, -1);
167   lua_pop(L, 1);
168
169   //get latency value
170   lua_pushstring(L, "latency");
171   lua_gettable(L, -2);
172   link.latency = lua_tonumber(L, -1);
173   lua_pop(L, 1);
174
175   /*Optional Arguments  */
176
177   //get bandwidth_trace value
178   lua_pushstring(L, "bandwidth_trace");
179   lua_gettable(L, -2);
180   link.bandwidth_trace = tmgr_trace_new_from_file(lua_tostring(L, -1));
181   lua_pop(L, 1);
182
183   //get latency_trace value
184   lua_pushstring(L, "latency_trace");
185   lua_gettable(L, -2);
186   link.latency_trace = tmgr_trace_new_from_file(lua_tostring(L, -1));
187   lua_pop(L, 1);
188
189   //get state_trace value
190   lua_pushstring(L, "state_trace");
191   lua_gettable(L, -2);
192   link.state_trace = tmgr_trace_new_from_file(lua_tostring(L, -1));
193   lua_pop(L, 1);
194
195   //get state_initial value
196   lua_pushstring(L, "state_initial");
197   lua_gettable(L, -2);
198   if (!lua_isnumber(L,-1) || lua_tonumber(L, -1))
199     link.state = SURF_RESOURCE_ON;
200   else
201     link.state = SURF_RESOURCE_OFF;
202   lua_pop(L, 1);
203
204   //get policy value
205   lua_pushstring(L, "policy");
206   lua_gettable(L, -2);
207   policy = lua_tostring(L, -1);
208   lua_pop(L, 1);
209   if (policy && !strcmp(policy,"FULLDUPLEX")) {
210     link.policy = SURF_LINK_FULLDUPLEX;
211   } else if (policy && !strcmp(policy,"FATPIPE")) {
212     link.policy = SURF_LINK_FATPIPE;
213   } else {
214     link.policy = SURF_LINK_SHARED;
215   }
216
217   sg_platf_new_link(&link);
218
219   return 0;
220 }
221 /**
222  * add Router to AS components
223  */
224 int console_add_router(lua_State* L) {
225   s_sg_platf_router_cbarg_t router;
226   memset(&router,0,sizeof(router));
227
228   if (! lua_istable(L, -1)) {
229     XBT_ERROR("Bad Arguments to create router, Should be a table with named arguments");
230     return -1;
231   }
232
233   lua_pushstring(L, "id");
234   lua_gettable(L, -2);
235   router.id = lua_tostring(L, -1);
236   lua_pop(L,1);
237
238   lua_pushstring(L,"coord");
239   lua_gettable(L,-2);
240   router.coord = lua_tostring(L, -1);
241   lua_pop(L,1);
242
243   sg_platf_new_router(&router);
244
245   return 0;
246 }
247
248 #include "surf/surfxml_parse.h" /* to override surf_parse and bypass the parser */
249
250 int console_add_route(lua_State *L) {
251   s_sg_platf_route_cbarg_t route;
252   memset(&route,0,sizeof(route));
253
254   /* allocating memory for the buffer, I think 2kB should be enough */
255   surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
256
257   int is_symmetrical;
258
259   if (! lua_istable(L, -1)) {
260     XBT_ERROR("Bad Arguments to create a route, Should be a table with named arguments");
261     return -1;
262   }
263
264   lua_pushstring(L,"src");
265   lua_gettable(L,-2);
266   route.src = lua_tostring(L, -1);
267   lua_pop(L,1);
268
269   lua_pushstring(L,"dest");
270   lua_gettable(L,-2);
271   route.dst = lua_tostring(L, -1);
272   lua_pop(L,1);
273
274   lua_pushstring(L,"links");
275   lua_gettable(L,-2);
276   route.link_list = xbt_str_split(lua_tostring(L, -1), ", \t\r\n");
277   if (xbt_dynar_is_empty(route.link_list))
278     xbt_dynar_push_as(route.link_list,char*,xbt_strdup(lua_tostring(L, -1)));
279   lua_pop(L,1);
280
281   lua_pushstring(L,"symmetrical");
282   lua_gettable(L,-2);
283   is_symmetrical = lua_tointeger(L, -1);
284   lua_pop(L,1);
285
286   route.gw_src = NULL;
287   route.gw_dst = NULL;
288
289   /* We are relying on the XML bypassing mechanism since the corresponding sg_platf does not exist yet.
290    * Et ouais mon pote. That's the way it goes. F34R.
291    */
292   if (is_symmetrical)
293     route.symmetrical = TRUE;
294   else
295     route.symmetrical = FALSE;
296
297   sg_platf_new_route(&route);
298   
299   return 0;
300 }
301
302 int console_AS_open(lua_State *L) {
303  const char *id;
304  const char *mode;
305
306  if (! lua_istable(L, 1)) {
307    XBT_ERROR("Bad Arguments to AS_open, Should be a table with named arguments");
308    return -1;
309  }
310
311  lua_pushstring(L, "id");
312  lua_gettable(L, -2);
313  id = lua_tostring(L, -1);
314  lua_pop(L, 1);
315
316  lua_pushstring(L, "mode");
317  lua_gettable(L, -2);
318  mode = lua_tostring(L, -1);
319  lua_pop(L, 1);
320
321  int mode_int = A_surfxml_AS_routing_None;
322  if(!strcmp(mode,"Full")) mode_int = A_surfxml_AS_routing_Full;
323  else if(!strcmp(mode,"Floyd")) mode_int = A_surfxml_AS_routing_Floyd;
324  else if(!strcmp(mode,"Dijkstra")) mode_int = A_surfxml_AS_routing_Dijkstra;
325  else if(!strcmp(mode,"DijkstraCache")) mode_int = A_surfxml_AS_routing_DijkstraCache;
326  else if(!strcmp(mode,"Vivaldi")) mode_int = A_surfxml_AS_routing_Vivaldi;
327  else if(!strcmp(mode,"Cluster")) mode_int = A_surfxml_AS_routing_Cluster;
328  else if(!strcmp(mode,"none")) mode_int = A_surfxml_AS_routing_None;
329  else xbt_die("Don't have the model name '%s'",mode);
330
331  s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER;
332  AS.id = id;
333  AS.routing = mode_int;
334  sg_platf_new_AS_begin(&AS);
335
336  return 0;
337 }
338 int console_AS_close(lua_State *L) {
339   sg_platf_new_AS_end();
340   return 0;
341 }
342
343 int console_set_function(lua_State *L) {
344
345   const char *host_id ;
346   const char *function_id;
347   xbt_dynar_t args;
348
349   if (! lua_istable(L, 1)) {
350     XBT_ERROR("Bad Arguments to AS.new, Should be a table with named arguments");
351     return -1;
352   }
353
354   // get Host id
355   lua_pushstring(L, "host");
356   lua_gettable(L, -2);
357   host_id = lua_tostring(L, -1);
358   lua_pop(L, 1);
359
360   // get Function Name
361   lua_pushstring(L, "fct");
362   lua_gettable(L, -2);
363   function_id = lua_tostring(L, -1);
364   lua_pop(L, 1);
365
366   //get args
367   lua_pushstring(L,"args");
368   lua_gettable(L, -2);
369   args = xbt_str_split_str( lua_tostring(L,-1) , ",");
370   lua_pop(L, 1);
371
372   // FIXME: hackish to go under MSG that way
373   msg_host_t host = MSG_host_get_by_name(host_id);
374   if (!host) {
375     XBT_ERROR("no host '%s' found",host_id);
376     return -1;
377   }
378
379   // FIXME: use sg_platf_new_process directly (warning: find a way to check hostname)
380   MSG_set_function(host_id, function_id, args);
381
382   return 0;
383 }
384
385 int console_host_set_property(lua_State *L) {
386   const char* name ="";
387   const char* prop_id = "";
388   const char* prop_value = "";
389   if (!lua_istable(L, -1)) {
390     XBT_ERROR("Bad Arguments to create link, Should be a table with named arguments");
391     return -1;
392   }
393
394
395   // get Host id
396   lua_pushstring(L, "host");
397   lua_gettable(L, -2);
398   name = lua_tostring(L, -1);
399   lua_pop(L, 1);
400
401   // get prop Name
402   lua_pushstring(L, "prop");
403   lua_gettable(L, -2);
404   prop_id = lua_tostring(L, -1);
405   lua_pop(L, 1);
406   //get args
407   lua_pushstring(L,"value");
408   lua_gettable(L, -2);
409   prop_value = lua_tostring(L,-1);
410   lua_pop(L, 1);
411
412   msg_host_t host = MSG_host_get_by_name(name);
413   if (!host) {
414     XBT_ERROR("no host '%s' found",name);
415     return -1;
416   }
417   xbt_dict_t props = MSG_host_get_properties(host);
418   xbt_dict_set(props,prop_id,xbt_strdup(prop_value),NULL);
419
420   return 0;
421 }
422
423 /**
424  * \brief Registers the platform functions into the table simgrid.platf.
425  * \param L a lua state
426  */
427 void sglua_register_platf_functions(lua_State* L)
428 {
429   luaL_openlib(L, PLATF_MODULE_NAME, platf_functions, 0);
430                                   /* simgrid.platf */
431   lua_pop(L, 1);
432 }
433