Logo AND Algorithmique Numérique Distribuée

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