Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This structure was not necessary
[simgrid.git] / src / bindings / lua / simgrid_lua.h
index 24af2b3..527e4b8 100644 (file)
@@ -1,8 +1,8 @@
 /* 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. */
 
-#ifndef GRAS_STUB_GENERATOR_H
-#define GRAS_STUB_GENERATOR_H
+#ifndef SIMGRID_LUA_H
+#define SIMGRID_LUA_H
 
 #include <stdio.h>
 #include <lauxlib.h>
 #include "portable.h"           /* Needed for the time of the SIMIX convertion */
 #include <stdarg.h>
 
-
-xbt_dict_t process_function_set;
-xbt_dynar_t process_list;
-xbt_dict_t machine_set;
+extern xbt_dict_t process_function_set;
+extern xbt_dynar_t process_list;
+extern xbt_dict_t machine_set;
 
 typedef struct s_process_t {
   int argc;
@@ -33,8 +32,6 @@ typedef struct s_process_t {
   char *host;
 } s_process_t;
 
-char *warning;
-
 void s_process_free(void *process);
 
 /* UNIX files */
@@ -53,6 +50,8 @@ typedef struct t_AS_attr {
   xbt_dynar_t host_list_d;
   xbt_dynar_t link_list_d;
   xbt_dynar_t route_list_d;
+  xbt_dynar_t router_list_d;
+  xbt_dynar_t sub_as_list_id;
 } AS_attr, *p_AS_attr;
 
 typedef struct t_host_attr {
@@ -69,6 +68,7 @@ typedef struct t_host_attr {
   //deployment attribute
   const char *function;
   xbt_dynar_t args_list;
+  xbt_dict_t properties;
 } host_attr, *p_host_attr;
 
 
@@ -93,6 +93,10 @@ typedef struct t_route_attr {
 
 } route_attr, *p_route_attr;
 
+typedef struct t_router_attr {
+       const char *id;
+} router_attr, *p_router_attr;
+
 // Public Functions
 
 int console_add_host(lua_State*);
@@ -100,9 +104,10 @@ int console_add_link(lua_State*);
 int console_add_route(lua_State*);
 int console_add_AS(lua_State*);
 int console_set_function(lua_State*);
+int console_host_set_property(lua_State*);
 
 int console_parse_platform(void);
 int console_parse_application(void);
 int console_parse_platform_wsL07(void);
 
-#endif
+#endif  /* SIMGRID_LUA_H */