Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
932dff6536be74f096147bae4ff7fb0b6514a202
[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   //deployment attribute
66   const char *function;
67   xbt_dynar_t args_list;
68 } host_attr, *p_host_attr;
69
70
71 typedef struct t_link_attr {
72   //mandatory attributes
73   const char *id;
74   double bandwidth;
75   double latency;
76   // Optional attributes
77   const char *bandwidth_trace;
78   const char *latency_trace;
79   const char *state_trace;
80   int state_initial;
81   int policy;
82 } link_attr, *p_link_attr;
83
84
85 typedef struct t_route_attr {
86   const char *src_id;
87   const char *dest_id;
88   xbt_dynar_t links_id;
89
90 } route_attr, *p_route_attr;
91
92 // Public Functions
93
94 int console_add_host(lua_State*);
95 int console_add_link(lua_State*);
96 int console_add_route(lua_State*);
97 int console_add_AS(lua_State*);
98 int console_set_function(lua_State*);
99
100 int console_parse_platform(void);
101 int console_parse_application(void);
102 int console_parse_platform_wsL07(void);
103
104 #endif