Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
81cb592a919eb5f8456601b2d1bfccc0842926e5
[simgrid.git] / src / bindings / lua / simgrid_lua.c
1 /* SimGrid Lua bindings                                                     */
2
3 /* Copyright (c) 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <lauxlib.h>
11 #include <lualib.h>
12 #include "msg/msg.h"
13 #include "xbt.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(lua,bindings,"Lua Bindings");
16
17 #define TASK_MODULE_NAME "simgrid.Task"
18 #define HOST_MODULE_NAME "simgrid.Host"
19 // Surf ( bypass XML )
20 #define LINK_MODULE_NAME "simgrid.Link"
21 #define ROUTE_MODULE_NAME "simgrid.Route"
22 #undef BYPASS_MODEL
23
24 /* ********************************************************************************* */
25 /*                            helper functions                                       */
26 /* ********************************************************************************* */
27
28 static void stackDump (const char *msg, lua_State *L) {
29   char buff[2048];
30   char *p=buff;
31   int i;
32   int top = lua_gettop(L);
33
34   fflush(stdout);
35   p+=sprintf(p,"STACK(top=%d): ",top);
36
37   for (i = 1; i <= top; i++) {  /* repeat for each level */
38     int t = lua_type(L, i);
39     switch (t) {
40
41     case LUA_TSTRING:  /* strings */
42       p+=sprintf(p,"`%s'", lua_tostring(L, i));
43       break;
44
45     case LUA_TBOOLEAN:  /* booleans */
46       p+=sprintf(p,lua_toboolean(L, i) ? "true" : "false");
47       break;
48
49     case LUA_TNUMBER:  /* numbers */
50       p+=sprintf(p,"%g", lua_tonumber(L, i));
51       break;
52
53     case LUA_TTABLE:
54       p+=sprintf(p, "Table");
55       break;
56
57     default:  /* other values */
58       p+=sprintf(p, "???");
59 /*      if ((ptr = luaL_checkudata(L,i,TASK_MODULE_NAME))) {
60         p+=sprintf(p,"task");
61       } else {
62         p+=printf(p,"%s", lua_typename(L, t));
63       }*/
64       break;
65
66     }
67     p+=sprintf(p,"  ");  /* put a separator */
68   }
69   INFO2("%s%s",msg,buff);
70 }
71
72 /** @brief ensures that a userdata on the stack is a task and returns the pointer inside the userdata */
73 static m_task_t checkTask (lua_State *L,int index) {
74   m_task_t *pi,tk;
75   luaL_checktype(L,index,LUA_TTABLE);
76   lua_getfield(L,index,"__simgrid_task");
77   pi = (m_task_t*)luaL_checkudata(L,-1,TASK_MODULE_NAME);
78   if(pi == NULL)
79          luaL_typerror(L,index,TASK_MODULE_NAME);
80   tk = *pi;
81   if(!tk)
82          luaL_error(L,"null Task");
83   lua_pop(L,1);
84   return  tk;
85 }
86 /* ********************************************************************************* */
87 /*                           wrapper functions                                       */
88 /* ********************************************************************************* */
89
90 /**
91  * A task is either something to compute somewhere, or something to exchange between two hosts (or both).
92  * It is defined by a computing amount and a message size.
93  *
94  */
95
96 /* *              * *
97  * * Constructors * *
98  * *              * */
99 /**
100  * Construct an new task with the specified processing amount and amount
101  * of data needed.
102  *
103  * @param name  Task's name
104  *
105  * @param computeDuration       A value of the processing amount (in flop) needed to process the task.
106  *                              If 0, then it cannot be executed with the execute() method.
107  *                              This value has to be >= 0.
108  *
109  * @param messageSize           A value of amount of data (in bytes) needed to transfert this task.
110  *                              If 0, then it cannot be transfered with the get() and put() methods.
111  *                              This value has to be >= 0.
112  */
113 static int Task_new(lua_State* L) {
114           const char *name=luaL_checkstring(L,1);
115           int comp_size = luaL_checkint(L,2);
116           int msg_size = luaL_checkint(L,3);
117           m_task_t msg_task = MSG_task_create(name,comp_size,msg_size,NULL);
118           lua_newtable (L); /* create a table, put the userdata on top of it */
119           m_task_t *lua_task = (m_task_t*)lua_newuserdata(L,sizeof(m_task_t));
120           *lua_task = msg_task;
121           luaL_getmetatable(L,TASK_MODULE_NAME);
122           lua_setmetatable(L,-2);
123           lua_setfield (L, -2, "__simgrid_task"); /* put the userdata as field of the table */
124           /* remove the args from the stack */
125           lua_remove(L,1);
126           lua_remove(L,1);
127           lua_remove(L,1);
128           return 1;
129 }
130
131 static int Task_get_name(lua_State *L) {
132   m_task_t tk = checkTask(L,-1);
133   lua_pushstring(L,MSG_task_get_name(tk));
134   return 1;
135 }
136
137 static int Task_computation_duration(lua_State *L){
138   m_task_t tk = checkTask(L,-1);
139   lua_pushnumber(L,MSG_task_get_compute_duration (tk));
140   return 1;
141 }
142
143 static int Task_execute(lua_State *L){
144   m_task_t tk = checkTask(L,-1);
145   int res = MSG_task_execute(tk);
146   lua_pushnumber(L,res);
147   return 1;
148 }
149
150 static int Task_destroy(lua_State *L) {
151   m_task_t tk = checkTask(L,-1);
152   int res = MSG_task_destroy(tk);
153   lua_pushnumber(L,res);
154   return 1;
155 }
156
157 static int Task_send(lua_State *L)  {
158   //stackDump("send ",L);
159   m_task_t tk = checkTask(L,-2);
160   const char *mailbox = luaL_checkstring(L,-1);
161   lua_pop(L,1); // remove the string so that the task is on top of it
162   MSG_task_set_data(tk,L); // Copy my stack into the task, so that the receiver can copy the lua task directly
163   MSG_error_t res = MSG_task_send(tk,mailbox);
164   while (MSG_task_get_data(tk)!=NULL) // Don't mess up with my stack: the receiver didn't copy the data yet
165     MSG_process_sleep(0); // yield
166
167   if (res != MSG_OK) switch(res) {
168     case MSG_TIMEOUT :
169       ERROR0("MSG_task_send failed : Timeout");
170       break;
171     case MSG_TRANSFER_FAILURE :
172       ERROR0("MSG_task_send failed : Transfer Failure");
173       break;
174     case MSG_HOST_FAILURE :
175       ERROR0("MSG_task_send failed : Host Failure ");
176       break;
177     default :
178       ERROR0("MSG_task_send failed : Unexpected error , please report this bug");
179       break;
180     }
181   return 0;
182 }
183
184 static int Task_recv(lua_State *L)  {
185   m_task_t tk = NULL;
186   const char *mailbox = luaL_checkstring(L,-1);
187   MSG_error_t res = MSG_task_receive(&tk,mailbox);
188
189   lua_State *sender_stack = MSG_task_get_data(tk);
190   lua_xmove(sender_stack,L,1); // copy the data directly from sender's stack
191   MSG_task_set_data(tk,NULL);
192
193   if(res != MSG_OK) switch(res){
194           case MSG_TIMEOUT :
195                   ERROR0("MSG_task_receive failed : Timeout");
196                   break;
197           case MSG_TRANSFER_FAILURE :
198                   ERROR0("MSG_task_receive failed : Transfer Failure");
199                   break;
200           case MSG_HOST_FAILURE :
201                   ERROR0("MSG_task_receive failed : Host Failure ");
202                   break;
203           default :
204                   ERROR0("MSG_task_receive failed : Unexpected error , please report this bug");
205                   break;
206                   }
207
208   return 1;
209 }
210
211 static const luaL_reg Task_methods[] = {
212     {"new",   Task_new},
213     {"name",  Task_get_name},
214     {"computation_duration",  Task_computation_duration},
215     {"execute", Task_execute},
216     {"destroy", Task_destroy},
217     {"send",    Task_send},
218     {"recv",    Task_recv},
219     {0,0}
220 };
221 static int Task_gc(lua_State *L) {
222   m_task_t tk=checkTask(L,-1);
223   if (tk) MSG_task_destroy(tk);
224   return 0;
225 }
226
227 static int Task_tostring(lua_State *L) {
228   lua_pushfstring(L, "Task :%p",lua_touserdata(L,1));
229   return 1;
230 }
231
232 static const luaL_reg Task_meta[] = {
233     {"__gc",  Task_gc},
234     {"__tostring",  Task_tostring},
235     {0,0}
236 };
237
238 /**
239  * Host
240  */
241 static m_host_t checkHost (lua_State *L,int index) {
242   m_host_t *pi,ht;
243   luaL_checktype(L,index,LUA_TTABLE);
244   lua_getfield(L,index,"__simgrid_host");
245   pi = (m_host_t*)luaL_checkudata(L,-1,HOST_MODULE_NAME);
246   if(pi == NULL)
247          luaL_typerror(L,index,HOST_MODULE_NAME);
248   ht = *pi;
249   if(!ht)
250          luaL_error(L,"null Host");
251   lua_pop(L,1);
252   return  ht;
253 }
254
255 static int Host_get_by_name(lua_State *L)
256 {
257         const char *name=luaL_checkstring(L,1);
258         DEBUG0("Getting Host from name...");
259         m_host_t msg_host = MSG_get_host_by_name(name);
260         if (!msg_host)
261                 {
262                 luaL_error(L,"null Host : MSG_get_host_by_name failled");
263                 }
264     lua_newtable (L); /* create a table, put the userdata on top of it */
265         m_host_t *lua_host = (m_host_t*)lua_newuserdata(L,sizeof(m_host_t));
266         *lua_host = msg_host;
267         luaL_getmetatable(L,HOST_MODULE_NAME);
268         lua_setmetatable(L,-2);
269         lua_setfield (L, -2, "__simgrid_host"); /* put the userdata as field of the table */
270         /* remove the args from the stack */
271         lua_remove(L,1);
272         return 1;
273 }
274
275
276 static int Host_get_name(lua_State *L) {
277   m_host_t ht = checkHost(L,-1);
278   lua_pushstring(L,MSG_host_get_name(ht));
279   return 1;
280 }
281
282 static int Host_number(lua_State *L) {
283   lua_pushnumber(L,MSG_get_host_number());
284   return 1;
285 }
286
287 static int Host_at(lua_State *L)
288 {
289         int index = luaL_checkinteger(L,1);
290         m_host_t host = MSG_get_host_table()[index-1]; // lua indexing start by 1 (lua[1] <=> C[0])
291         lua_newtable (L); /* create a table, put the userdata on top of it */
292         m_host_t *lua_host = (m_host_t*)lua_newuserdata(L,sizeof(m_host_t));
293         *lua_host = host;
294         luaL_getmetatable(L,HOST_MODULE_NAME);
295         lua_setmetatable(L,-2);
296         lua_setfield (L, -2, "__simgrid_host"); /* put the userdata as field of the table */
297         return 1;
298
299 }
300
301 /*****************************************************************************************
302                                                              * BYPASS XML SURF Methods *
303                                                                  ***************************
304                                                                  ***************************
305 ******************************************************************************************/
306 #include "surf/surfxml_parse.h" /* to override surf_parse and bypass the parser */
307 #include "surf/surf_private.h"
308 typedef struct t_host_attr
309 {
310         //platform attribute
311         // Mandatory attributes
312         const char* id;
313         double power_peak;
314         // Optional attributes
315         double power_scale;
316         const char *power_trace;
317         int state_initial;
318         const char *state_trace;
319         //deployment attribute
320         const char* function;
321         xbt_dynar_t args_list;
322 }host_attr,*p_host_attr;
323
324 typedef struct t_link_attr
325 {
326         const char* id;
327         double bandwidth;
328         double latency;
329 }link_attr,*p_link_attr;
330
331 typedef struct t_route_attr
332 {
333         const char *src_id;
334         const char *dest_id;
335         xbt_dynar_t links_id;
336
337 }route_attr,*p_route_attr;
338
339 //using xbt_dynar_t :
340 static xbt_dynar_t host_list_d ;
341 static xbt_dynar_t link_list_d ;
342 static xbt_dynar_t route_list_d ;
343
344
345 //create resource
346
347 /*FIXME : still have to use a dictionary as argument make it possible to
348 consider some arguments as optional and removes the importance of the
349 parameter order */
350
351 static void create_host(const char* id,double power_peak,double power_sc,
352                                                 const char* power_tr,int state_init,
353                                                 const char* state_tr)
354 {
355
356         double power_scale = 1.0;
357         tmgr_trace_t power_trace = NULL;
358         e_surf_resource_state_t state_initial;
359         tmgr_trace_t state_trace;
360         if(power_sc) // !=0
361                 power_scale = power_sc;
362         if (state_init == 1)
363                 state_initial = SURF_RESOURCE_ON;
364         else
365                 state_init = SURF_RESOURCE_OFF;
366         if(power_tr)
367                 power_trace = tmgr_trace_new(power_tr);
368         else
369                 power_trace = tmgr_trace_new("");
370         if(state_tr)
371                 state_trace = tmgr_trace_new(state_tr);
372         else
373                 state_trace = tmgr_trace_new("");
374         current_property_set = xbt_dict_new();
375         surf_host_create_resource(xbt_strdup(id), power_peak, power_scale,
376                                                power_trace, state_initial, state_trace, current_property_set);
377
378 }
379
380 static int Host_new(lua_State *L)
381 {
382
383         if(xbt_dynar_is_empty(host_list_d))
384                 host_list_d = xbt_dynar_new(sizeof(p_host_attr), &xbt_free_ref);
385
386         p_host_attr host;
387         const char * id;
388         const char *power_trace;
389         const char *state_trace;
390         double power,power_scale;
391         int state_initial;
392         //get values from the table passed as argument
393     if (lua_istable(L,-1)) {
394
395             // get Id Value
396             lua_pushstring(L,"id");
397             lua_gettable(L, -2 );
398             id = lua_tostring(L,-1);
399             lua_pop(L,1);
400
401             // get power value
402             lua_pushstring(L,"power");
403             lua_gettable(L, -2 );
404             power = lua_tonumber(L,-1);
405             lua_pop(L,1);
406
407             //get power_scale
408             lua_pushstring(L,"power_scale");
409             lua_gettable(L, -2 );
410             power_scale = lua_tonumber(L,-1);
411             lua_pop(L,1);
412
413             //get power_trace
414             lua_pushstring(L,"power_trace");
415             lua_gettable(L, -2 );
416             power_trace = lua_tostring(L,-1);
417             lua_pop(L,1);
418
419             //get state initial
420             lua_pushstring(L,"state_initial");
421             lua_gettable(L, -2 );
422             state_initial = lua_tonumber(L,-1);
423             lua_pop(L,1);
424
425             //get trace state
426             lua_pushstring(L,"state_trace");
427             lua_gettable(L, -2 );
428             state_trace = lua_tostring(L,-1);
429             lua_pop(L,1);
430
431     } else {
432             ERROR0("Bad Arguments to create host, Should be a table with named arguments");
433             return -1;
434     }
435
436             host = malloc(sizeof(host_attr));
437                 host->id = id;
438                 host->power_peak = power;
439                 host->power_scale = power_scale;
440                 host->power_trace = power_trace;
441                 host->state_initial = state_initial;
442                 host->state_trace = state_trace;
443                 host->function = NULL;
444                 xbt_dynar_push(host_list_d, &host);
445
446     return 0;
447
448 }
449
450
451 static int Link_new(lua_State *L) // (id,bandwidth,latency)
452 {
453         if(xbt_dynar_is_empty(link_list_d))
454                 link_list_d = xbt_dynar_new(sizeof(p_link_attr), &xbt_free_ref);
455
456         const char* id;
457         double bandwidth,latency;
458         //get values from the table passed as argument
459         if (lua_istable(L,-1)) {
460                     // get Id Value
461                     lua_pushstring(L,"id");
462                     lua_gettable(L, -2 );
463                     id = lua_tostring(L,-1);
464                     lua_pop(L,1);
465
466                     // get bandwidth value
467                     lua_pushstring(L,"bandwidth");
468                     lua_gettable(L, -2 );
469                     bandwidth = lua_tonumber(L,-1);
470                     lua_pop(L,1);
471
472                     //get latency value
473                     lua_pushstring(L,"latency");
474                     lua_gettable(L, -2 );
475                     latency = lua_tonumber(L,-1);
476                     lua_pop(L,1);
477
478             } else {
479                     ERROR0("Bad Arguments to create link, Should be a table with named arguments");
480                     return -1;
481             }
482
483         p_link_attr link = malloc(sizeof(link_attr));
484         link->id = id;
485         link->bandwidth = bandwidth;
486         link->latency = latency;
487         xbt_dynar_push(link_list_d,&link);
488         return 0;
489 }
490
491 static int Route_new(lua_State *L) // (src_id,dest_id,links_number,link_table)
492 {
493         if(xbt_dynar_is_empty(route_list_d))
494                 route_list_d = xbt_dynar_new(sizeof(p_route_attr), &xbt_free_ref);
495         const char * link_id;
496         p_route_attr route = malloc(sizeof(route_attr));
497         route->src_id = luaL_checkstring(L,1);
498         route->dest_id = luaL_checkstring(L,2);
499         route->links_id = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
500         lua_pushnil(L);
501         while (lua_next(L,3) != 0) {
502                 link_id = lua_tostring(L, -1);
503                 xbt_dynar_push(route->links_id, &link_id);
504             DEBUG2("index = %f , Link_id = %s \n",lua_tonumber(L, -2),lua_tostring(L, -1));
505             lua_pop(L, 1);
506         }
507         lua_pop(L, 1);
508
509         //add route to platform's route list
510         xbt_dynar_push(route_list_d,&route);
511         return 0;
512 }
513
514 static int Host_set_function(lua_State *L) //(host,function,nb_args,list_args)
515 {
516         // look for the index of host in host_list
517         const char *host_id = luaL_checkstring(L,1);
518         const char* argument;
519         unsigned int i;
520         p_host_attr p_host;
521
522         xbt_dynar_foreach(host_list_d,i,p_host)
523         {
524                 if(p_host->id == host_id)
525                 {
526                         p_host->function = luaL_checkstring(L,2);
527                         p_host->args_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
528                         // fill the args list
529                         lua_pushnil(L);
530                         int j = 0;
531                         while (lua_next(L,3) != 0) {
532                                         argument = lua_tostring(L, -1);
533                                         xbt_dynar_push(p_host->args_list, &argument);
534                                     DEBUG2("index = %f , Arg_id = %s \n",lua_tonumber(L, -2),lua_tostring(L, -1));
535                                     j++;
536                                     lua_pop(L, 1);
537                                 }
538                         lua_pop(L, 1);
539                         return 0;
540                 }
541         }
542         ERROR1("Host : %s Not Fount !!",host_id);
543         return 1;
544 }
545
546 /*
547  * surf parse bypass platform
548  */
549 static int surf_parse_bypass_platform()
550 {
551         char buffer[22];
552         unsigned int i,j;
553         char* link_id;
554
555         p_host_attr p_host;
556         p_link_attr p_link;
557         p_route_attr p_route;
558
559         static int AX_ptr = 0;
560         static int surfxml_bufferstack_size = 2048;
561
562           /* FIXME allocating memory for the buffer, I think 2kB should be enough */
563         surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
564           /* <platform> */
565 #ifndef BYPASS_CPU
566         SURFXML_BUFFER_SET(platform_version, "2");
567         SURFXML_START_TAG(platform);
568 #endif
569
570         // Add Hosts
571         xbt_dynar_foreach(host_list_d,i,p_host)
572         {
573
574 #ifdef BYPASS_MODEL
575                 create_host(p_host->id,p_host->power_peak,p_host->power_scale,p_host->power_trace,
576                                         p_host->state_initial,p_host->state_trace);
577                 //add to routing model host list
578                 surf_route_add_host((char*)p_host->id);
579 #else
580
581                 SURFXML_BUFFER_SET(host_id,p_host->id);
582                 sprintf(buffer,"%f",p_host->power_peak);
583                 SURFXML_BUFFER_SET(host_power,buffer);
584                 SURFXML_BUFFER_SET(host_availability, "1.0");
585                 SURFXML_BUFFER_SET(host_availability_file, "");
586                 A_surfxml_host_state = A_surfxml_host_state_ON;
587                 SURFXML_BUFFER_SET(host_state_file, "");
588                 SURFXML_BUFFER_SET(host_interference_send, "1.0");
589                 SURFXML_BUFFER_SET(host_interference_recv, "1.0");
590                 SURFXML_BUFFER_SET(host_interference_send_recv, "1.0");
591                 SURFXML_BUFFER_SET(host_max_outgoing_rate, "-1.0");
592                 SURFXML_START_TAG(host);
593                 SURFXML_END_TAG(host);
594 #endif
595         }
596
597         //add Links
598         xbt_dynar_foreach(link_list_d,i,p_link)
599         {
600 #ifdef BYPASS_MODEL
601                 surf_link_create_resouce((char*)p_link->id,p_link->bandwidth,p_link->latency);
602 #else
603
604                 SURFXML_BUFFER_SET(link_id,p_link->id);
605                 sprintf(buffer,"%f",p_link->bandwidth);
606                 SURFXML_BUFFER_SET(link_bandwidth,buffer);
607                 SURFXML_BUFFER_SET(link_bandwidth_file, "");
608                 sprintf(buffer,"%f",p_link->latency);
609                 SURFXML_BUFFER_SET(link_latency,buffer);
610                 SURFXML_BUFFER_SET(link_latency_file, "");
611                 A_surfxml_link_state = A_surfxml_link_state_ON;
612                 SURFXML_BUFFER_SET(link_state_file, "");
613                 A_surfxml_link_sharing_policy = A_surfxml_link_sharing_policy_SHARED;
614                 SURFXML_START_TAG(link);
615                 SURFXML_END_TAG(link);
616 #endif
617         }
618
619         // add route
620         xbt_dynar_foreach(route_list_d,i,p_route)
621         {
622 #ifdef BYPASS_MODEL
623                 surf_route_set_resource((char*)p_route->src_id,(char*)p_route->dest_id,p_route->links_id,0);
624 #else
625
626                 SURFXML_BUFFER_SET(route_src,p_route->src_id);
627                 SURFXML_BUFFER_SET(route_dst,p_route->dest_id);
628                 SURFXML_BUFFER_SET(route_impact_on_src, "0.0");
629                 SURFXML_BUFFER_SET(route_impact_on_dst, "0.0");
630                 SURFXML_BUFFER_SET(route_impact_on_src_with_other_recv, "0.0");
631                 SURFXML_BUFFER_SET(route_impact_on_dst_with_other_send, "0.0");
632                 SURFXML_START_TAG(route);
633
634                 xbt_dynar_foreach(p_route->links_id,j,link_id)
635                 {
636                         SURFXML_BUFFER_SET(link_c_ctn_id,link_id);
637                         SURFXML_START_TAG(link_c_ctn);
638                         SURFXML_END_TAG(link_c_ctn);
639
640                 }
641
642                 SURFXML_END_TAG(route);
643 #endif
644         }
645         /* </platform> */
646 #ifndef BYPASS_MODEL
647         SURFXML_END_TAG(platform);
648 #endif
649
650         free(surfxml_bufferstack);
651         return 0; // must return 0 ?!!
652
653 }
654 /*
655  * surf parse bypass application
656  */
657 static int surf_parse_bypass_application()
658 {
659           unsigned int i,j;
660           p_host_attr p_host;
661           char * arg;
662           static int AX_ptr;
663           static int surfxml_bufferstack_size = 2048;
664           /* FIXME ( should be manual )allocating memory to the buffer, I think 2MB should be enough */
665           surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
666
667 #ifdef BYPASS_MODEL
668           xbt_dynar_foreach(host_list_d,i,p_host)
669                   {
670                   if(p_host->function)
671                           MSG_set_function(p_host->id,p_host->function,p_host->args_list);
672                   }
673 #else
674
675           /* <platform> */
676           SURFXML_BUFFER_SET(platform_version, "2");
677           SURFXML_START_TAG(platform);
678           xbt_dynar_foreach(host_list_d,i,p_host)
679           {
680                   if(p_host->function)
681                   {
682                           SURFXML_BUFFER_SET(process_host, p_host->id);
683                           SURFXML_BUFFER_SET(process_function, p_host->function);
684                           SURFXML_BUFFER_SET(process_start_time, "-1.0");
685                           SURFXML_BUFFER_SET(process_kill_time, "-1.0");
686                           SURFXML_START_TAG(process);
687                           //args
688                           xbt_dynar_foreach(p_host->args_list,j,arg)
689                           {
690                                   SURFXML_BUFFER_SET(argument_value,arg);
691                                   SURFXML_START_TAG(argument);
692                                   SURFXML_END_TAG(argument);
693                           }
694                           SURFXML_END_TAG(process);
695                   }
696           }
697           /* </platform> */
698           SURFXML_END_TAG(platform);
699 #endif
700           free(surfxml_bufferstack);
701           return 0;
702 }
703
704 //***********Register Methods *******************************************//
705 /*
706  * Host Methods
707  */
708 static const luaL_reg Host_methods[] = {
709     {"getByName",   Host_get_by_name},
710     {"name",            Host_get_name},
711     {"number",          Host_number},
712     {"at",                      Host_at},
713     // Bypass XML Methods
714     {"new",                     Host_new},
715     {"setFunction",     Host_set_function},
716     {0,0}
717 };
718
719 static int Host_gc(lua_State *L)
720 {
721   m_host_t ht = checkHost(L,-1);
722   if (ht) ht = NULL;
723   return 0;
724 }
725
726 static int Host_tostring(lua_State *L)
727 {
728   lua_pushfstring(L,"Host :%p",lua_touserdata(L,1));
729   return 1;
730 }
731
732 static const luaL_reg Host_meta[] = {
733     {"__gc",  Host_gc},
734     {"__tostring",  Host_tostring},
735     {0,0}
736 };
737
738 /*
739  * Link Methods
740  */
741 static const luaL_reg Link_methods[] = {
742     {"new",Link_new},
743     {0,0}
744 };
745 /*
746  * Route Methods
747  */
748 static const luaL_reg Route_methods[] ={
749    {"new",Route_new},
750    {0,0}
751 };
752
753 /*
754  * Environment related
755  */
756
757 extern lua_State *simgrid_lua_state;
758
759 static int run_lua_code(int argc,char **argv) {
760   DEBUG1("Run lua code %s",argv[0]);
761   lua_State *L = lua_newthread(simgrid_lua_state);
762   int ref = luaL_ref(simgrid_lua_state, LUA_REGISTRYINDEX); // protect the thread from being garbage collected
763   int res = 1;
764
765   /* Start the co-routine */
766   lua_getglobal(L,argv[0]);
767   xbt_assert1(lua_isfunction(L,-1),
768       "The lua function %s does not seem to exist",argv[0]);
769
770   // push arguments onto the stack
771   int i;
772   for(i=1;i<argc;i++)
773     lua_pushstring(L,argv[i]);
774
775   // Call the function (in resume)
776   xbt_assert2(lua_pcall(L, argc-1, 1, 0) == 0,
777     "error running function `%s': %s",argv[0], lua_tostring(L, -1));
778
779   /* retrieve result */
780   if (lua_isnumber(L, -1)) {
781     res = lua_tonumber(L, -1);
782     lua_pop(L, 1);  /* pop returned value */
783   }
784
785   // cleanups
786   luaL_unref(simgrid_lua_state,LUA_REGISTRYINDEX,ref );
787   DEBUG1("Execution of lua code %s is over", (argv ? argv[0] : "(null)"));
788   return res;
789 }
790 static int launch_application(lua_State *L) {
791   const char * file = luaL_checkstring(L,1);
792   MSG_function_register_default(run_lua_code);
793   MSG_launch_application(file);
794   return 0;
795 }
796 #include "simix/simix.h" //FIXME: KILLME when debugging on simix internals become useless
797 static int create_environment(lua_State *L) {
798   const char *file = luaL_checkstring(L,1);
799   DEBUG1("Loading environment file %s",file);
800   MSG_create_environment(file);
801   smx_host_t *hosts = SIMIX_host_get_table();
802   int i;
803   for (i=0;i<SIMIX_host_get_number();i++) {
804     DEBUG1("We have an host %s", SIMIX_host_get_name(hosts[i]));
805   }
806
807   return 0;
808 }
809
810 static int debug(lua_State *L) {
811   const char *str = luaL_checkstring(L,1);
812   DEBUG1("%s",str);
813   return 0;
814 }
815 static int info(lua_State *L) {
816   const char *str = luaL_checkstring(L,1);
817   INFO1("%s",str);
818   return 0;
819 }
820 static int run(lua_State *L) {
821   MSG_main();
822   return 0;
823 }
824 static int clean(lua_State *L) {
825   MSG_clean();
826   return 0;
827 }
828
829 /*
830  * Bypass XML Pareser
831  */
832 static int register_platform(lua_State *L)
833 {
834         /* Tell Simgrid we dont wanna use its parser*/
835         surf_parse = surf_parse_bypass_platform;
836         MSG_create_environment(NULL);
837         return 0;
838 }
839
840 static int register_application(lua_State *L)
841 {
842          MSG_function_register_default(run_lua_code);
843          surf_parse = surf_parse_bypass_application;
844          MSG_launch_application(NULL);
845          return 0;
846 }
847
848 static const luaL_Reg simgrid_funcs[] = {
849     { "create_environment", create_environment},
850     { "launch_application", launch_application},
851     { "debug", debug},
852     { "info", info},
853     { "run", run},
854     { "clean", clean},
855     /* short names */
856     { "platform", create_environment},
857     { "application", launch_application},
858     /* methods to bypass XML parser*/
859     { "register_platform",register_platform},
860     { "register_application",register_application},
861     { NULL, NULL }
862 };
863
864 /* ********************************************************************************* */
865 /*                       module management functions                                 */
866 /* ********************************************************************************* */
867
868 extern const char*xbt_ctx_factory_to_use; /*Hack: let msg load directly the right factory */
869
870 #define LUA_MAX_ARGS_COUNT 10 /* maximum amount of arguments we can get from lua on command line */
871
872 int luaopen_simgrid(lua_State* L); // Fuck gcc: we don't need that prototype
873 int luaopen_simgrid(lua_State* L) {
874   //xbt_ctx_factory_to_use = "lua";
875
876   char **argv=malloc(sizeof(char*)*LUA_MAX_ARGS_COUNT);
877   int argc=1;
878   argv[0] = (char*)"/usr/bin/lua"; /* Lie on the argv[0] so that the stack dumping facilities find the right binary. FIXME: what if lua is not in that location? */
879   /* Get the command line arguments from the lua interpreter */
880   lua_getglobal(L,"arg");
881   xbt_assert1(lua_istable(L,-1),"arg parameter is not a table but a %s",lua_typename(L,-1));
882   int done=0;
883   while (!done) {
884     argc++;
885     lua_pushinteger(L,argc-2);
886     lua_gettable(L,-2);
887     if (lua_isnil(L,-1)) {
888       done = 1;
889     } else {
890       xbt_assert1(lua_isstring(L,-1),"argv[%d] got from lua is no string",argc-1);
891       xbt_assert2(argc<LUA_MAX_ARGS_COUNT,
892            "Too many arguments, please increase LUA_MAX_ARGS_COUNT in %s before recompiling SimGrid if you insist on having more than %d args on command line",
893            __FILE__,LUA_MAX_ARGS_COUNT-1);
894       argv[argc-1] = (char*)luaL_checkstring(L,-1);
895       lua_pop(L,1);
896       DEBUG1("Got command line argument %s from lua",argv[argc-1]);
897     }
898   }
899   argv[argc--]=NULL;
900
901   /* Initialize the MSG core */
902   MSG_global_init(&argc,argv);
903   DEBUG1("Still %d arguments on command line",argc); // FIXME: update the lua's arg table to reflect the changes from SimGrid
904
905   /* register the core C functions to lua */
906   luaL_register(L, "simgrid", simgrid_funcs);
907   /* register the task methods to lua */
908   luaL_openlib(L,TASK_MODULE_NAME,Task_methods,0); //create methods table,add it to the globals
909   luaL_newmetatable(L,TASK_MODULE_NAME); //create metatable for Task,add it to the Lua registry
910   luaL_openlib(L,0,Task_meta,0);// fill metatable
911   lua_pushliteral(L,"__index");
912   lua_pushvalue(L,-3);  //dup methods table
913   lua_rawset(L,-3); //matatable.__index = methods
914   lua_pushliteral(L,"__metatable");
915   lua_pushvalue(L,-3);  //dup methods table
916   lua_rawset(L,-3); //hide metatable:metatable.__metatable = methods
917   lua_pop(L,1);   //drop metatable
918
919   /* register the hosts methods to lua*/
920   luaL_openlib(L,HOST_MODULE_NAME,Host_methods,0);
921   luaL_newmetatable(L,HOST_MODULE_NAME);
922   luaL_openlib(L,0,Host_meta,0);
923   lua_pushliteral(L,"__index");
924   lua_pushvalue(L,-3);
925   lua_rawset(L,-3);
926   lua_pushliteral(L,"__metatable");
927   lua_pushvalue(L,-3);
928   lua_rawset(L,-3);
929   lua_pop(L,1);
930
931   /* register the links methods to lua*/
932   luaL_openlib(L,LINK_MODULE_NAME,Link_methods,0);
933   luaL_newmetatable(L,LINK_MODULE_NAME);
934   lua_pop(L,1);
935
936   /*register the routes methods to lua*/
937   luaL_openlib(L,ROUTE_MODULE_NAME,Route_methods,0);
938   luaL_newmetatable(L,LINK_MODULE_NAME);
939   lua_pop(L,1);
940
941   /* Keep the context mechanism informed of our lua world today */
942   simgrid_lua_state = L;
943   return 1;
944 }