Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
The process list of MSG is now a swag instead of a fifo.
[simgrid.git] / src / bindings / lua / simgrid_lua.h
1 /* This program is free software; you can redistribute it and/or modify it
2  * under the terms of the license (GNU LGPL) which comes with this package. */
3
4 #ifndef GRAS_STUB_GENERATOR_H
5 #define GRAS_STUB_GENERATOR_H
6
7 #include <stdio.h>
8 #include <lauxlib.h>
9 #include <lualib.h>
10 #include "msg/msg.h"
11 #include "simdag/simdag.h"
12 #include <gras.h>
13 #include "xbt.h"
14 #include "xbt/dynar.h"
15 #include "xbt/dict.h"
16 #include "xbt/sysdep.h"
17 #include "xbt/function_types.h"
18 #include "xbt/log.h"
19 #include "surf/surfxml_parse.h"
20 #include "surf/surf_private.h"
21 #include "surf/surf.h"
22 #include "portable.h"           /* Needed for the time of the SIMIX convertion */
23 #include <stdarg.h>
24
25
26 xbt_dict_t process_function_set;
27 xbt_dynar_t process_list;
28 xbt_dict_t machine_set;
29
30 typedef struct s_process_t {
31   int argc;
32   char **argv;
33   char *host;
34 } s_process_t;
35
36 char *warning;
37
38 void s_process_free(void *process);
39
40 /* UNIX files */
41 void generate_sim(const char *project);
42 void generate_rl(const char *project);
43 void generate_makefile_am(const char *project);
44 void generate_makefile_local(const char *project);
45
46 /* ********************************************************************************* */
47 /*                           Console functions                                       */
48 /* ********************************************************************************* */
49
50 typedef struct t_AS_attr {
51   const char *id;
52   const char *mode;
53 } AS_attr, *p_AS_attr;
54
55 typedef struct t_host_attr {
56   //platform attribute
57   // Mandatory attributes
58   const char *id;
59   double power_peak;
60   // Optional attributes
61   double power_scale;
62   const char *power_trace;
63   int state_initial;
64   const char *state_trace;
65   int core;
66   //deployment attribute
67   const char *function;
68   xbt_dynar_t args_list;
69 } host_attr, *p_host_attr;
70
71
72 typedef struct t_link_attr {
73   //mandatory attributes
74   const char *id;
75   double bandwidth;
76   double latency;
77   // Optional attributes
78   const char *bandwidth_trace;
79   const char *latency_trace;
80   const char *state_trace;
81   int state_initial;
82   int policy;
83 } link_attr, *p_link_attr;
84
85
86 typedef struct t_route_attr {
87   const char *src_id;
88   const char *dest_id;
89   xbt_dynar_t links_id;
90
91 } route_attr, *p_route_attr;
92
93 // Public Functions
94
95 int console_add_host(lua_State*);
96 int console_add_link(lua_State*);
97 int console_add_route(lua_State*);
98 int console_add_AS(lua_State*);
99 int console_set_function(lua_State*);
100
101 int console_parse_platform(void);
102 int console_parse_application(void);
103 int console_parse_platform_wsL07(void);
104
105 #endif