Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bd8a1b610d4cc9c020928066cd11f3e9c20d7e32
[simgrid.git] / src / surf / xml / platf_private.hpp
1 /* platf_private.h - Interface to the SimGrid platforms which visibility should be limited to this directory */
2
3 /* Copyright (c) 2004-2015. 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 #ifndef SG_PLATF_H
10 #define SG_PLATF_H
11
12 #include "simgrid/host.h"
13 #include "src/surf/xml/platf.hpp"
14 #include <vector>
15 #include <string>
16
17 SG_BEGIN_DECL()
18 #include "src/surf/xml/simgrid_dtd.h"
19
20 #ifndef YY_TYPEDEF_YY_SIZE_T
21 #define YY_TYPEDEF_YY_SIZE_T
22 typedef size_t yy_size_t;
23 #endif
24
25 typedef enum {
26   SURF_CLUSTER_DRAGONFLY=3,
27   SURF_CLUSTER_FAT_TREE=2,
28   SURF_CLUSTER_FLAT = 1,
29   SURF_CLUSTER_TORUS = 0
30 } e_surf_cluster_topology_t;
31
32 /* ***************************************** */
33 /*
34  * Platform creation functions. Instead of passing 123 arguments to the creation functions
35  * (one for each possible XML attribute), we pass structures containing them all. It removes the
36  * chances of switching arguments by error, and reduce the burden when we add a new attribute:
37  * old models can just continue to ignore it without having to update their headers.
38  *
39  * It shouldn't be too costly at runtime, provided that structures living on the stack are
40  * used, instead of malloced structures.
41  */
42
43 typedef struct {
44   const char* id;
45   std::vector<double> speed_per_pstate;
46   int pstate;
47   int core_amount;
48   tmgr_trace_t speed_trace;
49   tmgr_trace_t state_trace;
50   const char* coord;
51   xbt_dict_t properties;
52 } s_sg_platf_host_cbarg_t, *sg_platf_host_cbarg_t;
53
54 typedef struct {
55   const char* id;
56   const char* link_up;
57   const char* link_down;
58 } s_sg_platf_host_link_cbarg_t, *sg_platf_host_link_cbarg_t;
59
60 typedef struct {
61   std::string id;
62   double bandwidth;
63   tmgr_trace_t bandwidth_trace;
64   double latency;
65   tmgr_trace_t latency_trace;
66   tmgr_trace_t state_trace;
67   e_surf_link_sharing_policy_t policy;
68   xbt_dict_t properties;
69 } s_sg_platf_link_cbarg_t, *sg_platf_link_cbarg_t;
70
71 typedef struct s_sg_platf_peer_cbarg *sg_platf_peer_cbarg_t;
72 typedef struct s_sg_platf_peer_cbarg {
73   const char* id;
74   double speed;
75   double bw_in;
76   double bw_out;
77   const char* coord;
78   tmgr_trace_t speed_trace;
79   tmgr_trace_t state_trace;
80 } s_sg_platf_peer_cbarg_t;
81
82 typedef struct s_sg_platf_route_cbarg *sg_platf_route_cbarg_t;
83 typedef struct s_sg_platf_route_cbarg {
84   bool symmetrical;
85   sg_netpoint_t src;
86   sg_netpoint_t dst;
87   sg_netpoint_t gw_src;
88   sg_netpoint_t gw_dst;
89   std::vector<simgrid::surf::LinkImpl*>* link_list;
90 } s_sg_platf_route_cbarg_t;
91
92 typedef struct s_sg_platf_cluster_cbarg *sg_platf_cluster_cbarg_t;
93 typedef struct s_sg_platf_cluster_cbarg {
94   const char* id;
95   const char* prefix;
96   const char* suffix;
97   std::vector<int>* radicals;
98   double speed;
99   int core_amount;
100   double bw;
101   double lat;
102   double bb_bw;
103   double bb_lat;
104   double loopback_bw;
105   double loopback_lat;
106   double limiter_link;
107   e_surf_cluster_topology_t topology;
108   const char* topo_parameters;
109   xbt_dict_t properties;
110   const char* router_id;
111   e_surf_link_sharing_policy_t sharing_policy;
112   e_surf_link_sharing_policy_t bb_sharing_policy;
113 } s_sg_platf_cluster_cbarg_t;
114
115 typedef struct s_sg_platf_cabinet_cbarg *sg_platf_cabinet_cbarg_t;
116 typedef struct s_sg_platf_cabinet_cbarg {
117   const char* id;
118   const char* prefix;
119   const char* suffix;
120   std::vector<int>* radicals;
121   double speed;
122   double bw;
123   double lat;
124 } s_sg_platf_cabinet_cbarg_t;
125
126 typedef struct {
127   const char* id;
128   const char* type_id;
129   const char* content;
130   const char* content_type;
131   xbt_dict_t properties;
132   const char* attach;
133 } s_sg_platf_storage_cbarg_t, *sg_platf_storage_cbarg_t;
134
135 typedef struct {
136   const char* id;
137   const char* model;
138   const char* content;
139   const char* content_type;
140   xbt_dict_t properties;
141   xbt_dict_t model_properties;
142   sg_size_t size;
143 } s_sg_platf_storage_type_cbarg_t, *sg_platf_storage_type_cbarg_t;
144
145 typedef struct {
146   const char* storageId;
147   const char* name;
148 } s_sg_platf_mount_cbarg_t, *sg_platf_mount_cbarg_t;
149
150 typedef struct s_sg_platf_prop_cbarg *sg_platf_prop_cbarg_t;
151 typedef struct s_sg_platf_prop_cbarg {
152   const char *id;
153   const char *value;
154 } s_sg_platf_prop_cbarg_t;
155
156 typedef struct s_sg_platf_trace_cbarg *sg_platf_trace_cbarg_t;
157 typedef struct s_sg_platf_trace_cbarg {
158   const char *id;
159   const char *file;
160   double periodicity;
161   const char *pc_data;
162 } s_sg_platf_trace_cbarg_t;
163
164 typedef struct s_sg_platf_trace_connect_cbarg *sg_platf_trace_connect_cbarg_t;
165 typedef struct s_sg_platf_trace_connect_cbarg {
166   e_surf_trace_connect_kind_t kind;
167   const char *trace;
168   const char *element;
169 } s_sg_platf_trace_connect_cbarg_t;
170
171 typedef struct s_sg_platf_process_cbarg *sg_platf_process_cbarg_t;
172 typedef struct s_sg_platf_process_cbarg {
173   const char **argv;
174   int argc;
175   xbt_dict_t properties;
176   const char *host;
177   const char *function;
178   double start_time;
179   double kill_time;
180   e_surf_process_on_failure_t on_failure;
181 } s_sg_platf_process_cbarg_t;
182
183 typedef struct s_sg_platf_AS_cbarg *sg_platf_AS_cbarg_t;
184 typedef struct s_sg_platf_AS_cbarg {
185   const char *id;
186   int routing;
187 } s_sg_platf_AS_cbarg_t;
188
189 #define SG_PLATF_AS_INITIALIZER {nullptr,0}
190
191 /********** Routing **********/
192 void routing_cluster_add_backbone(simgrid::surf::LinkImpl* bb);
193 /*** END of the parsing cruft ***/
194
195 XBT_PUBLIC(void) sg_platf_begin();  // Start a new platform
196 XBT_PUBLIC(void) sg_platf_end(); // Finish the creation of the platform
197
198 XBT_PUBLIC(simgrid::s4u::NetZone*) sg_platf_new_AS_begin(sg_platf_AS_cbarg_t AS); // Begin description of new AS
199 XBT_PUBLIC(void) sg_platf_new_AS_seal();                     // That AS is fully described
200
201 XBT_PUBLIC(void) sg_platf_new_host   (sg_platf_host_cbarg_t   host);   // Add an host   to the currently described AS
202 XBT_PUBLIC(void) sg_platf_new_hostlink(sg_platf_host_link_cbarg_t h); // Add an host_link to the currently described AS
203 XBT_PUBLIC(simgrid::kernel::routing::NetPoint*)
204 sg_platf_new_router(const char* name, const char* coords);             // Add a router  to the currently described AS
205 XBT_PUBLIC(void) sg_platf_new_link   (sg_platf_link_cbarg_t link);     // Add a link    to the currently described AS
206 XBT_PUBLIC(void) sg_platf_new_peer   (sg_platf_peer_cbarg_t peer);     // Add a peer    to the currently described AS
207 XBT_PUBLIC(void) sg_platf_new_cluster(sg_platf_cluster_cbarg_t clust); // Add a cluster to the currently described AS
208 XBT_PUBLIC(void) sg_platf_new_cabinet(sg_platf_cabinet_cbarg_t cabinet); // Add a cabinet to the currently described AS
209
210 XBT_PUBLIC(void) sg_platf_new_route (sg_platf_route_cbarg_t route); // Add a route
211 XBT_PUBLIC(void) sg_platf_new_bypassRoute (sg_platf_route_cbarg_t bypassroute); // Add a bypassRoute
212
213 XBT_PUBLIC(void) sg_platf_new_trace(sg_platf_trace_cbarg_t trace);
214
215 XBT_PUBLIC(void) sg_platf_new_storage(sg_platf_storage_cbarg_t storage); // Add a storage to the currently described AS
216 XBT_PUBLIC(void) sg_platf_new_storage_type(sg_platf_storage_type_cbarg_t storage_type);
217 XBT_PUBLIC(void) sg_platf_new_mount(sg_platf_mount_cbarg_t mount);
218
219 XBT_PUBLIC(void) sg_platf_new_process(sg_platf_process_cbarg_t process);
220 XBT_PRIVATE void sg_platf_trace_connect(sg_platf_trace_connect_cbarg_t trace_connect);
221
222 /* Prototypes of the functions offered by flex */
223 XBT_PUBLIC(int) surf_parse_lex();
224 XBT_PUBLIC(int) surf_parse_get_lineno();
225 XBT_PUBLIC(FILE *) surf_parse_get_in();
226 XBT_PUBLIC(FILE *) surf_parse_get_out();
227 XBT_PUBLIC(int) surf_parse_get_leng();
228 XBT_PUBLIC(char *) surf_parse_get_text();
229 XBT_PUBLIC(void) surf_parse_set_lineno(int line_number);
230 XBT_PUBLIC(void) surf_parse_set_in(FILE * in_str);
231 XBT_PUBLIC(void) surf_parse_set_out(FILE * out_str);
232 XBT_PUBLIC(int) surf_parse_get_debug();
233 XBT_PUBLIC(void) surf_parse_set_debug(int bdebug);
234 XBT_PUBLIC(int) surf_parse_lex_destroy();
235
236 /* To include files (?) */
237 XBT_PRIVATE void surfxml_bufferstack_push(int _new);
238 XBT_PRIVATE void surfxml_bufferstack_pop(int _new);
239 XBT_PUBLIC_DATA(int) surfxml_bufferstack_size;
240
241 XBT_PUBLIC(void) routing_route_free(sg_platf_route_cbarg_t route);
242 /********** Instr. **********/
243 XBT_PRIVATE void sg_instr_AS_begin(sg_platf_AS_cbarg_t AS);
244 XBT_PRIVATE void sg_instr_new_router(const char* name);
245 XBT_PRIVATE void sg_instr_new_host(simgrid::s4u::Host& host);
246 XBT_PRIVATE void sg_instr_AS_end();
247
248 SG_END_DECL()
249
250 namespace simgrid {
251 namespace surf {
252
253 extern XBT_PRIVATE simgrid::xbt::signal<void(sg_platf_cluster_cbarg_t)> on_cluster;
254
255 }
256 }
257
258 #endif                          /* SG_PLATF_H */