Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
morning cleanups
[simgrid.git] / src / surf / xml / surfxml_sax_cb.cpp
1 /* Copyright (c) 2006-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <errno.h>
8 #include <math.h>
9 #include <stdarg.h> /* va_arg */
10
11 #include "xbt/misc.h"
12 #include "xbt/log.h"
13 #include "xbt/str.h"
14 #include "xbt/file.h"
15 #include "xbt/dict.h"
16 #include "src/surf/surf_private.h"
17 #include "src/surf/network_interface.hpp"
18 #include "simgrid/sg_config.h"
19 #include "simgrid/link.h"
20
21 #include "src/surf/xml/platf_private.hpp"
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_parse, surf, "Logging specific to the SURF parsing module");
24 #undef CLEANUP
25 int ETag_surfxml_include_state(void);
26
27 #include "simgrid_dtd.c"
28
29 char* surf_parsed_filename = nullptr; // to locate parse error messages
30
31 xbt_dynar_t parsed_link_list = nullptr;   /* temporary store of current list link of a route */
32 /*
33  * Helping functions
34  */
35 void surf_parse_assert(bool cond, const char *fmt, ...) {
36   if (!cond ) {
37     va_list va;
38     va_start(va,fmt);
39     int lineno = surf_parse_lineno;
40     char *msg = bvprintf(fmt,va);
41     va_end(va);
42     cleanup();
43     XBT_ERROR("Parse error at %s:%d: %s", surf_parsed_filename, lineno, msg);
44     surf_exit();
45     xbt_die("Exiting now");
46   }
47 }
48 void surf_parse_error(const char *fmt, ...) {
49   va_list va;
50   va_start(va,fmt);
51   int lineno = surf_parse_lineno;
52   char *msg = bvprintf(fmt,va);
53   va_end(va);
54   cleanup();
55   XBT_ERROR("Parse error at %s:%d: %s", surf_parsed_filename, lineno, msg);
56   surf_exit();
57   xbt_die("Exiting now");
58 }
59 void surf_parse_warn(const char *fmt, ...) {
60   va_list va;
61   va_start(va,fmt);
62   char *msg = bvprintf(fmt,va);
63   va_end(va);
64     XBT_WARN("%s:%d: %s", surf_parsed_filename, surf_parse_lineno, msg);
65     free(msg);
66 }
67
68 double surf_parse_get_double(const char *string) {
69   double res;
70   int ret = sscanf(string, "%lg", &res);
71   if (ret != 1)
72     surf_parse_error("%s is not a double", string);
73   return res;
74 }
75
76 int surf_parse_get_int(const char *string) {
77   int res;
78   int ret = sscanf(string, "%d", &res);
79   if (ret != 1)
80     surf_parse_error("%s is not an integer", string);
81   return res;
82 }
83
84 struct unit_scale {
85   const char *unit;
86   double scale;
87 };
88
89 /* Note: field `unit' for the last element of parameter `units' should be nullptr. */
90 static double surf_parse_get_value_with_unit(const char *string, const struct unit_scale *units,
91     const char *entity_kind, const char *name,
92     const char *error_msg, const char *default_unit)
93 {
94   char* ptr;
95   double res;
96   int i;
97   errno = 0;
98   res   = strtod(string, &ptr);
99   if (errno == ERANGE)
100     surf_parse_error("value out of range: %s", string);
101   if (ptr == string)
102     surf_parse_error("cannot parse number: %s", string);
103   if (ptr[0] == '\0') {
104     if (res == 0)
105       return res; // Ok, 0 can be unit-less
106
107     XBT_WARN("Deprecated unit-less value '%s' for %s %s. %s",string, entity_kind, name, error_msg);
108     ptr = (char*)default_unit;
109   }
110   for (i = 0; units[i].unit != nullptr && strcmp(ptr, units[i].unit) != 0; i++) {
111   }
112   if (units[i].unit != nullptr)
113     res *= units[i].scale;
114   else
115     surf_parse_error("unknown unit: %s", ptr);
116   return res;
117 }
118
119 double surf_parse_get_time(const char *string, const char *entity_kind, const char *name)
120 {
121   const struct unit_scale units[] = {
122     { "w",  7 * 24 * 60 * 60 },
123     { "d",  24 * 60 * 60 },
124     { "h",  60 * 60 },
125     { "m",  60 },
126     { "s",  1.0 },
127     { "ms", 1e-3 },
128     { "us", 1e-6 },
129     { "ns", 1e-9 },
130     { "ps", 1e-12 },
131     { nullptr, 0 }
132   };
133   return surf_parse_get_value_with_unit(string, units, entity_kind, name,
134       "Append 's' to your time to get seconds", "s");
135 }
136
137 double surf_parse_get_size(const char *string, const char *entity_kind, const char *name)
138 {
139   const struct unit_scale units[] = {
140     { "TiB", pow(1024, 4) },
141     { "GiB", pow(1024, 3) },
142     { "MiB", pow(1024, 2) },
143     { "KiB", 1024 },
144     { "TB",  1e12 },
145     { "GB",  1e9 },
146     { "MB",  1e6 },
147     { "kB",  1e3 },
148     { "B",   1.0 },
149     { "Tib", 0.125 * pow(1024, 4) },
150     { "Gib", 0.125 * pow(1024, 3) },
151     { "Mib", 0.125 * pow(1024, 2) },
152     { "Kib", 0.125 * 1024 },
153     { "Tb",  0.125 * 1e12 },
154     { "Gb",  0.125 * 1e9 },
155     { "Mb",  0.125 * 1e6 },
156     { "kb",  0.125 * 1e3 },
157     { "b",   0.125 },
158     { nullptr,    0 }
159   };
160   return surf_parse_get_value_with_unit(string, units, entity_kind, name,
161       "Append 'B' to get bytes (or 'b' for bits but 1B = 8b).", "B");
162 }
163
164 double surf_parse_get_bandwidth(const char *string, const char *entity_kind, const char *name)
165 {
166   const struct unit_scale units[] = {
167     { "TiBps", pow(1024, 4) },
168     { "GiBps", pow(1024, 3) },
169     { "MiBps", pow(1024, 2) },
170     { "KiBps", 1024 },
171     { "TBps",  1e12 },
172     { "GBps",  1e9 },
173     { "MBps",  1e6 },
174     { "kBps",  1e3 },
175     { "Bps",   1.0 },
176     { "Tibps", 0.125 * pow(1024, 4) },
177     { "Gibps", 0.125 * pow(1024, 3) },
178     { "Mibps", 0.125 * pow(1024, 2) },
179     { "Kibps", 0.125 * 1024 },
180     { "Tbps",  0.125 * 1e12 },
181     { "Gbps",  0.125 * 1e9 },
182     { "Mbps",  0.125 * 1e6 },
183     { "kbps",  0.125 * 1e3 },
184     { "bps",   0.125 },
185     { nullptr,    0 }
186   };
187   return surf_parse_get_value_with_unit(string, units, entity_kind, name,
188       "Append 'Bps' to get bytes per second (or 'bps' for bits but 1Bps = 8bps)", "Bps");
189 }
190
191 double surf_parse_get_speed(const char *string, const char *entity_kind, const char *name)
192 {
193   const struct unit_scale units[] = {
194     { "yottaflops", 1e24 },
195     { "Yf",         1e24 },
196     { "zettaflops", 1e21 },
197     { "Zf",         1e21 },
198     { "exaflops",   1e18 },
199     { "Ef",         1e18 },
200     { "petaflops",  1e15 },
201     { "Pf",         1e15 },
202     { "teraflops",  1e12 },
203     { "Tf",         1e12 },
204     { "gigaflops",  1e9 },
205     { "Gf",         1e9 },
206     { "megaflops",  1e6 },
207     { "Mf",         1e6 },
208     { "kiloflops",  1e3 },
209     { "kf",         1e3 },
210     { "flops",      1.0 },
211     { "f",          1.0 },
212     { nullptr,         0 }
213   };
214   return surf_parse_get_value_with_unit(string, units, entity_kind, name,
215       "Append 'f' or 'flops' to your speed to get flop per second", "f");
216 }
217
218 /*
219  * All the callback lists that can be overridden anywhere.
220  * (this list should probably be reduced to the bare minimum to allow the models to work)
221  */
222
223 /* make sure these symbols are defined as strong ones in this file so that the linker can resolve them */
224
225 /* The default current property receiver. Setup in the corresponding opening callbacks. */
226 xbt_dict_t current_property_set = nullptr;
227 xbt_dict_t current_model_property_set = nullptr;
228 xbt_dict_t as_current_property_set = nullptr;
229 int AS_TAG = 0;
230 char* as_name_tab[1024];
231 void* as_dict_tab[1024];
232 int as_prop_nb = 0;
233
234
235 /* dictionary of random generator data */
236 xbt_dict_t random_data_list = nullptr;
237
238 YY_BUFFER_STATE surf_input_buffer;
239 FILE *surf_file_to_parse = nullptr;
240
241 /*
242  * Stuff relative to storage
243  */
244 void STag_surfxml_storage(void)
245 {
246   AS_TAG = 0;
247   XBT_DEBUG("STag_surfxml_storage");
248   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
249 }
250 void ETag_surfxml_storage(void)
251 {
252   s_sg_platf_storage_cbarg_t storage;
253   memset(&storage,0,sizeof(storage));
254
255   storage.id           = A_surfxml_storage_id;
256   storage.type_id      = A_surfxml_storage_typeId;
257   storage.content      = A_surfxml_storage_content;
258   storage.content_type = A_surfxml_storage_content___type;
259   storage.properties   = current_property_set;
260   storage.attach       = A_surfxml_storage_attach;
261   sg_platf_new_storage(&storage);
262   current_property_set = nullptr;
263 }
264 void STag_surfxml_storage___type(void)
265 {
266   AS_TAG = 0;
267   XBT_DEBUG("STag_surfxml_storage___type");
268   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
269   xbt_assert(current_model_property_set == nullptr, "Someone forgot to reset the model property set to nullptr in its closing tag (or XML malformed)");
270 }
271 void ETag_surfxml_storage___type(void)
272 {
273   s_sg_platf_storage_type_cbarg_t storage_type;
274   memset(&storage_type,0,sizeof(storage_type));
275
276   storage_type.content          = A_surfxml_storage___type_content;
277   storage_type.content_type     = A_surfxml_storage___type_content___type;
278   storage_type.id               = A_surfxml_storage___type_id;
279   storage_type.model            = A_surfxml_storage___type_model;
280   storage_type.properties       = current_property_set;
281   storage_type.model_properties = current_model_property_set;
282   storage_type.size             = surf_parse_get_size(A_surfxml_storage___type_size,
283         "size of storage type", storage_type.id);
284   sg_platf_new_storage_type(&storage_type);
285   current_property_set       = nullptr;
286   current_model_property_set = nullptr;
287 }
288 void STag_surfxml_mount(void)
289 {
290   XBT_DEBUG("STag_surfxml_mount");
291 }
292 void ETag_surfxml_mount(void)
293 {
294   s_sg_platf_mount_cbarg_t mount;
295   memset(&mount,0,sizeof(mount));
296
297   mount.name      = A_surfxml_mount_name;
298   mount.storageId = A_surfxml_mount_storageId;
299   sg_platf_new_mount(&mount);
300 }
301
302 /*
303  * Stuff relative to the <include> tag
304  */
305 static xbt_dynar_t surf_input_buffer_stack    = nullptr;
306 static xbt_dynar_t surf_file_to_parse_stack   = nullptr;
307 static xbt_dynar_t surf_parsed_filename_stack = nullptr;
308
309 void STag_surfxml_include(void)
310 {
311   parse_after_config();
312   XBT_DEBUG("STag_surfxml_include '%s'",A_surfxml_include_file);
313   xbt_dynar_push(surf_parsed_filename_stack,&surf_parsed_filename); // save old file name
314   surf_parsed_filename = xbt_strdup(A_surfxml_include_file);
315
316   xbt_dynar_push(surf_file_to_parse_stack, &surf_file_to_parse); //save old file descriptor
317
318   surf_file_to_parse = surf_fopen(A_surfxml_include_file, "r"); // read new file descriptor
319   xbt_assert((surf_file_to_parse), "Unable to open \"%s\"\n", A_surfxml_include_file);
320
321   xbt_dynar_push(surf_input_buffer_stack,&surf_input_buffer);
322   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, YY_BUF_SIZE);
323   surf_parse_push_buffer_state(surf_input_buffer);
324
325   fflush(nullptr);
326 }
327
328 void ETag_surfxml_include(void) {
329 /* Nothing to do when done with reading the include tag.
330  * Instead, the handling should be deferred until the EOF of current buffer -- see below */
331 }
332
333 /** @brief When reaching EOF, check whether we are in an include tag, and behave accordingly if yes
334  *
335  * This function is called automatically by sedding the parser in tools/cmake/MaintainerMode.cmake
336  * Every FAIL on "Premature EOF" is preceded by a call to this function, which role is to restore the
337  * previous buffer if we reached the EOF /of an include file/. Its return code is used to avoid the
338  * error message in that case.
339  *
340  * Yeah, that's terribly hackish, but it works. A better solution should be dealed with in flexml
341  * directly: a command line flag could instruct it to do the correct thing when #include is encountered
342  * on a line. One day maybe, if the maya allow it.
343  */
344 int ETag_surfxml_include_state(void)
345 {
346   fflush(nullptr);
347   XBT_DEBUG("ETag_surfxml_include_state '%s'",A_surfxml_include_file);
348
349   if(xbt_dynar_is_empty(surf_input_buffer_stack)) // nope, that's a true premature EOF. Let the parser die verbosely.
350     return 0;
351
352   // Yeah, we were in an <include> Restore state and proceed.
353   fclose(surf_file_to_parse);
354   xbt_dynar_pop(surf_file_to_parse_stack, &surf_file_to_parse);
355   surf_parse_pop_buffer_state();
356   xbt_dynar_pop(surf_input_buffer_stack,&surf_input_buffer);
357
358   // Restore the filename for error messages
359   free(surf_parsed_filename);
360   xbt_dynar_pop(surf_parsed_filename_stack,&surf_parsed_filename);
361
362   return 1;
363 }
364
365 /* Stag and Etag parse functions */
366
367 void STag_surfxml_platform(void) {
368   XBT_ATTRIB_UNUSED double version = surf_parse_get_double(A_surfxml_platform_version);
369
370   xbt_assert((version >= 1.0), "******* BIG FAT WARNING *********\n "
371       "You're using an ancient XML file.\n"
372       "Since SimGrid 3.1, units are Bytes, Flops, and seconds "
373       "instead of MBytes, MFlops and seconds.\n"
374
375       "Use simgrid_update_xml to update your file automatically. "
376       "This program is installed automatically with SimGrid, or "
377       "available in the tools/ directory of the source archive.\n"
378
379       "Please check also out the SURF section of the ChangeLog for "
380       "the 3.1 version for more information. \n"
381
382       "Last, do not forget to also update your values for "
383       "the calls to MSG_task_create (if any).");
384   xbt_assert((version >= 3.0), "******* BIG FAT WARNING *********\n "
385       "You're using an old XML file.\n"
386       "Use simgrid_update_xml to update your file automatically. "
387       "This program is installed automatically with SimGrid, or "
388       "available in the tools/ directory of the source archive.");
389   xbt_assert((version >= 4.0), "******* FILE %s IS TOO OLD (v:%.1f) *********\n "
390       "Changes introduced in SimGrid 3.13:\n"
391       "  - 'power' attribute of hosts (and others) got renamed to 'speed'.\n"
392       "  - In <trace_connect>, attribute kind=\"POWER\" is now kind=\"SPEED\".\n"
393       "  - DOCTYPE now point to the rignt URL: http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\n"
394       "  - speed, bandwidth and latency attributes now MUST have an explicit unit (f, Bps, s by default)"
395       "\n\n"
396       "Use simgrid_update_xml to update your file automatically. "
397       "This program is installed automatically with SimGrid, or "
398       "available in the tools/ directory of the source archive.",surf_parsed_filename, version);
399
400   sg_platf_begin();
401 }
402 void ETag_surfxml_platform(void){
403   sg_platf_end();
404 }
405
406 void STag_surfxml_host(void){
407   AS_TAG = 0;
408   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
409 }
410
411 void STag_surfxml_prop(void)
412 {
413   if(AS_TAG){ // We need a stack here to retrieve the most recently opened AS
414     if (!as_current_property_set){
415       xbt_assert(as_prop_nb < 1024, "Number of AS property reach the limit!!!");
416       as_current_property_set = xbt_dict_new_homogeneous(xbt_free_f); // Maybe, it should raise an error
417       as_name_tab[as_prop_nb] = xbt_strdup(A_surfxml_AS_id);
418       as_dict_tab[as_prop_nb] = as_current_property_set;
419       XBT_DEBUG("PUSH prop set %p for AS '%s'",as_dict_tab[as_prop_nb],as_name_tab[as_prop_nb]);
420       as_prop_nb++;
421     }
422     XBT_DEBUG("add prop %s=%s into current AS property set", A_surfxml_prop_id, A_surfxml_prop_value);
423     xbt_dict_set(as_current_property_set, A_surfxml_prop_id, xbt_strdup(A_surfxml_prop_value), nullptr);
424   }
425   else{
426     if (!current_property_set)
427        current_property_set = xbt_dict_new(); // Maybe, it should raise an error
428     xbt_dict_set(current_property_set, A_surfxml_prop_id, xbt_strdup(A_surfxml_prop_value), xbt_free_f);
429     XBT_DEBUG("add prop %s=%s into current property set", A_surfxml_prop_id, A_surfxml_prop_value);
430   }
431 }
432
433 void ETag_surfxml_host(void)    {
434   s_sg_platf_host_cbarg_t host;
435   memset(&host,0,sizeof(host));
436   char* buf;
437
438
439   host.properties = current_property_set;
440
441   host.id = A_surfxml_host_id;
442
443   buf = A_surfxml_host_speed;
444   XBT_DEBUG("Buffer: %s", buf);
445   host.speed_per_pstate = xbt_dynar_new(sizeof(double), nullptr);
446   if (strchr(buf, ',') == nullptr){
447     double speed = surf_parse_get_speed(A_surfxml_host_speed,"speed of host", host.id);
448     xbt_dynar_push_as(host.speed_per_pstate,double, speed);
449   }
450   else {
451     xbt_dynar_t pstate_list = xbt_str_split(buf, ",");
452     unsigned int i;
453     char* speed_str;
454     xbt_dynar_foreach(pstate_list, i, speed_str) {
455       xbt_str_trim(speed_str, nullptr);
456       double speed = surf_parse_get_speed(speed_str,"speed of host", host.id);
457       xbt_dynar_push_as(host.speed_per_pstate, double, speed);
458       XBT_DEBUG("Speed value: %f", speed);
459     }
460     xbt_dynar_free(&pstate_list);
461   }
462
463   XBT_DEBUG("pstate: %s", A_surfxml_host_pstate);
464   host.core_amount = surf_parse_get_int(A_surfxml_host_core);
465   host.speed_trace = A_surfxml_host_availability___file[0] ? tmgr_trace_new_from_file(A_surfxml_host_availability___file) : nullptr;
466   host.state_trace = A_surfxml_host_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_host_state___file) : nullptr;
467   host.pstate      = surf_parse_get_int(A_surfxml_host_pstate);
468   host.coord       = A_surfxml_host_coordinates;
469
470   sg_platf_new_host(&host);
471   xbt_dynar_free(&host.speed_per_pstate);
472   current_property_set = nullptr;
473 }
474
475 void STag_surfxml_host___link(void){
476   XBT_DEBUG("Create a Host_link for %s",A_surfxml_host___link_id);
477   s_sg_platf_host_link_cbarg_t host_link;
478   memset(&host_link,0,sizeof(host_link));
479
480   host_link.id        = A_surfxml_host___link_id;
481   host_link.link_up   = A_surfxml_host___link_up;
482   host_link.link_down = A_surfxml_host___link_down;
483   sg_platf_new_hostlink(&host_link);
484 }
485
486 void STag_surfxml_router(void){
487   s_sg_platf_router_cbarg_t router;
488   memset(&router, 0, sizeof(router));
489
490   router.id    = A_surfxml_router_id;
491   router.coord = A_surfxml_router_coordinates;
492
493   sg_platf_new_router(&router);
494 }
495
496 void ETag_surfxml_cluster(void){
497   s_sg_platf_cluster_cbarg_t cluster;
498   memset(&cluster,0,sizeof(cluster));
499   cluster.properties = as_current_property_set;
500
501   cluster.id          = A_surfxml_cluster_id;
502   cluster.prefix      = A_surfxml_cluster_prefix;
503   cluster.suffix      = A_surfxml_cluster_suffix;
504   cluster.radical     = A_surfxml_cluster_radical;
505   cluster.speed       = surf_parse_get_speed(A_surfxml_cluster_speed, "speed of cluster", cluster.id);
506   cluster.core_amount = surf_parse_get_int(A_surfxml_cluster_core);
507   cluster.bw          = surf_parse_get_bandwidth(A_surfxml_cluster_bw, "bw of cluster", cluster.id);
508   cluster.lat         = surf_parse_get_time(A_surfxml_cluster_lat, "lat of cluster", cluster.id);
509   if(strcmp(A_surfxml_cluster_bb___bw,""))
510     cluster.bb_bw = surf_parse_get_bandwidth(A_surfxml_cluster_bb___bw, "bb_bw of cluster", cluster.id);
511   if(strcmp(A_surfxml_cluster_bb___lat,""))
512     cluster.bb_lat = surf_parse_get_time(A_surfxml_cluster_bb___lat, "bb_lat of cluster", cluster.id);
513   if(strcmp(A_surfxml_cluster_limiter___link,""))
514     cluster.limiter_link = surf_parse_get_bandwidth(A_surfxml_cluster_limiter___link, "limiter_link of cluster", cluster.id);
515   if(strcmp(A_surfxml_cluster_loopback___bw,""))
516     cluster.loopback_bw = surf_parse_get_bandwidth(A_surfxml_cluster_loopback___bw, "loopback_bw of cluster", cluster.id);
517   if(strcmp(A_surfxml_cluster_loopback___lat,""))
518     cluster.loopback_lat = surf_parse_get_time(A_surfxml_cluster_loopback___lat, "loopback_lat of cluster", cluster.id);
519
520   switch(AX_surfxml_cluster_topology){
521   case A_surfxml_cluster_topology_FLAT:
522     cluster.topology= SURF_CLUSTER_FLAT ;
523     break;
524   case A_surfxml_cluster_topology_TORUS:
525     cluster.topology= SURF_CLUSTER_TORUS ;
526     break;
527   case A_surfxml_cluster_topology_FAT___TREE:
528     cluster.topology = SURF_CLUSTER_FAT_TREE;
529     break;
530   case A_surfxml_cluster_topology_DRAGONFLY:
531     cluster.topology= SURF_CLUSTER_DRAGONFLY ;
532     break;
533   default:
534     surf_parse_error("Invalid cluster topology for cluster %s",
535                      cluster.id);
536     break;
537   }
538   cluster.topo_parameters = A_surfxml_cluster_topo___parameters;
539   cluster.router_id = A_surfxml_cluster_router___id;
540
541   switch (AX_surfxml_cluster_sharing___policy) {
542   case A_surfxml_cluster_sharing___policy_SHARED:
543     cluster.sharing_policy = SURF_LINK_SHARED;
544     break;
545   case A_surfxml_cluster_sharing___policy_FULLDUPLEX:
546     cluster.sharing_policy = SURF_LINK_FULLDUPLEX;
547     break;
548   case A_surfxml_cluster_sharing___policy_FATPIPE:
549     cluster.sharing_policy = SURF_LINK_FATPIPE;
550     break;
551   default:
552     surf_parse_error("Invalid cluster sharing policy for cluster %s",
553                      cluster.id);
554     break;
555   }
556   switch (AX_surfxml_cluster_bb___sharing___policy) {
557   case A_surfxml_cluster_bb___sharing___policy_FATPIPE:
558     cluster.bb_sharing_policy = SURF_LINK_FATPIPE;
559     break;
560   case A_surfxml_cluster_bb___sharing___policy_SHARED:
561     cluster.bb_sharing_policy = SURF_LINK_SHARED;
562     break;
563   default:
564     surf_parse_error("Invalid bb sharing policy in cluster %s",
565                      cluster.id);
566     break;
567   }
568
569   sg_platf_new_cluster(&cluster);
570
571   current_property_set = nullptr;
572 }
573
574 void STag_surfxml_cluster(void){
575   parse_after_config();
576   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
577 }
578
579 void STag_surfxml_cabinet(void){
580   parse_after_config();
581   s_sg_platf_cabinet_cbarg_t cabinet;
582   memset(&cabinet,0,sizeof(cabinet));
583   cabinet.id      = A_surfxml_cabinet_id;
584   cabinet.prefix  = A_surfxml_cabinet_prefix;
585   cabinet.suffix  = A_surfxml_cabinet_suffix;
586   cabinet.speed   = surf_parse_get_speed(A_surfxml_cabinet_speed, "speed of cabinet", cabinet.id);
587   cabinet.bw      = surf_parse_get_bandwidth(A_surfxml_cabinet_bw, "bw of cabinet", cabinet.id);
588   cabinet.lat     = surf_parse_get_time(A_surfxml_cabinet_lat, "lat of cabinet", cabinet.id);
589   cabinet.radical = A_surfxml_cabinet_radical;
590
591   sg_platf_new_cabinet(&cabinet);
592 }
593
594 void STag_surfxml_peer(void){
595   parse_after_config();
596   s_sg_platf_peer_cbarg_t peer;
597   memset(&peer,0,sizeof(peer));
598   peer.id                 = A_surfxml_peer_id;
599   peer.speed              = surf_parse_get_speed(A_surfxml_peer_speed, "speed of peer", peer.id);
600   peer.bw_in              = surf_parse_get_bandwidth(A_surfxml_peer_bw___in, "bw_in of peer", peer.id);
601   peer.bw_out             = surf_parse_get_bandwidth(A_surfxml_peer_bw___out, "bw_out of peer", peer.id);
602   peer.lat                = surf_parse_get_time(A_surfxml_peer_lat, "lat of peer", peer.id);
603   peer.coord              = A_surfxml_peer_coordinates;
604   peer.availability_trace = A_surfxml_peer_availability___file[0] ? tmgr_trace_new_from_file(A_surfxml_peer_availability___file) : nullptr;
605   peer.state_trace        = A_surfxml_peer_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_peer_state___file) : nullptr;
606
607   sg_platf_new_peer(&peer);
608 }
609
610 void STag_surfxml_link(void){
611   AS_TAG = 0;
612   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
613 }
614
615 void ETag_surfxml_link(void){
616   s_sg_platf_link_cbarg_t link;
617   memset(&link,0,sizeof(link));
618
619   link.properties          = current_property_set;
620   link.id                  = A_surfxml_link_id;
621   link.bandwidth           = surf_parse_get_bandwidth(A_surfxml_link_bandwidth, "bandwidth of link", link.id);
622   link.bandwidth_trace     = A_surfxml_link_bandwidth___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_bandwidth___file) : nullptr;
623   link.latency             = surf_parse_get_time(A_surfxml_link_latency, "latency of link", link.id);
624   link.latency_trace       = A_surfxml_link_latency___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_latency___file) : nullptr;
625   link.state_trace         = A_surfxml_link_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_state___file):nullptr;
626
627   switch (A_surfxml_link_sharing___policy) {
628   case A_surfxml_link_sharing___policy_SHARED:
629     link.policy = SURF_LINK_SHARED;
630     break;
631   case A_surfxml_link_sharing___policy_FATPIPE:
632      link.policy = SURF_LINK_FATPIPE;
633      break;
634   case A_surfxml_link_sharing___policy_FULLDUPLEX:
635      link.policy = SURF_LINK_FULLDUPLEX;
636      break;
637   default:
638     surf_parse_error("Invalid sharing policy in link %s", link.id);
639     break;
640   }
641
642   sg_platf_new_link(&link);
643
644   current_property_set = nullptr;
645 }
646
647 void STag_surfxml_link___ctn(void){
648
649   char *link_id;
650   switch (A_surfxml_link___ctn_direction) {
651   case AU_surfxml_link___ctn_direction:
652   case A_surfxml_link___ctn_direction_NONE:
653     link_id = xbt_strdup(A_surfxml_link___ctn_id);
654     break;
655   case A_surfxml_link___ctn_direction_UP:
656     link_id = bprintf("%s_UP", A_surfxml_link___ctn_id);
657     break;
658   case A_surfxml_link___ctn_direction_DOWN:
659     link_id = bprintf("%s_DOWN", A_surfxml_link___ctn_id);
660     break;
661   }
662
663   // FIXME we should push the surf link object but it don't
664   // work because of model rulebased
665   xbt_dynar_push(parsed_link_list, &link_id);
666 }
667
668 void ETag_surfxml_backbone(void){
669   s_sg_platf_link_cbarg_t link;
670   memset(&link,0,sizeof(link));
671
672   link.properties = nullptr;
673   link.id = A_surfxml_backbone_id;
674   link.bandwidth = surf_parse_get_bandwidth(A_surfxml_backbone_bandwidth, "bandwidth of backbone", link.id);
675   link.latency = surf_parse_get_time(A_surfxml_backbone_latency, "latency of backbone", link.id);
676   link.policy = SURF_LINK_SHARED;
677
678   sg_platf_new_link(&link);
679   routing_cluster_add_backbone(sg_link_by_name(A_surfxml_backbone_id));
680 }
681
682 void STag_surfxml_route(void){
683   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_route_src),
684       "Route src='%s' does name a node.", A_surfxml_route_src);
685   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_route_dst),
686       "Route dst='%s' does name a node.", A_surfxml_route_dst);
687   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
688 }
689
690 void STag_surfxml_ASroute(void){
691   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_src),
692       "ASroute src='%s' does name a node.", A_surfxml_route_src);
693   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_dst),
694       "ASroute dst='%s' does name a node.", A_surfxml_route_dst);
695
696   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___src),
697       "ASroute gw_src='%s' does name a node.", A_surfxml_ASroute_gw___src);
698   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___dst),
699       "ASroute gw_dst='%s' does name a node.", A_surfxml_ASroute_gw___dst);
700
701   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
702 }
703
704 void STag_surfxml_bypassRoute(void){
705   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassRoute_src),
706       "bypassRoute src='%s' does name a node.", A_surfxml_bypassRoute_src);
707   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassRoute_dst),
708       "bypassRoute dst='%s' does name a node.", A_surfxml_bypassRoute_dst);
709
710   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
711 }
712
713 void STag_surfxml_bypassASroute(void){
714   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_src),
715       "bypassASroute src='%s' does name a node.", A_surfxml_bypassASroute_src);
716   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_dst),
717       "bypassASroute dst='%s' does name a node.", A_surfxml_bypassASroute_dst);
718   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___src),
719       "bypassASroute gw_src='%s' does name a node.", A_surfxml_bypassASroute_gw___src);
720   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___dst),
721       "bypassASroute gw_dst='%s' does name a node.", A_surfxml_bypassASroute_gw___dst);
722
723   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
724 }
725
726 void ETag_surfxml_route(void){
727   s_sg_platf_route_cbarg_t route;
728   memset(&route,0,sizeof(route));
729
730
731   route.src       = sg_netcard_by_name_or_null(A_surfxml_route_src); // tested to not be nullptr in start tag
732   route.dst       = sg_netcard_by_name_or_null(A_surfxml_route_dst); // tested to not be nullptr in start tag
733   route.gw_src    = nullptr;
734   route.gw_dst    = nullptr;
735   route.link_list = new std::vector<Link*>();
736   route.symmetrical = (A_surfxml_route_symmetrical == A_surfxml_route_symmetrical_YES);
737
738   unsigned int cpt;
739   char *link_name;
740   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
741     simgrid::surf::Link *link = Link::byName(link_name);
742     route.link_list->push_back(link);
743   }
744
745   sg_platf_new_route(&route);
746   delete route.link_list;
747   xbt_dynar_free(&parsed_link_list);
748 }
749
750 void ETag_surfxml_ASroute(void){
751   s_sg_platf_route_cbarg_t ASroute;
752   memset(&ASroute,0,sizeof(ASroute));
753
754   ASroute.src    = sg_netcard_by_name_or_null(A_surfxml_ASroute_src); // tested to not be nullptr in start tag
755   ASroute.dst    = sg_netcard_by_name_or_null(A_surfxml_ASroute_dst); // tested to not be nullptr in start tag
756
757   ASroute.gw_src = sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___src); // tested to not be nullptr in start tag
758   ASroute.gw_dst = sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___dst); // tested to not be nullptr in start tag
759
760   ASroute.link_list =  new std::vector<Link*>();
761
762   unsigned int cpt;
763   char *link_name;
764   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
765     simgrid::surf::Link *link = Link::byName(link_name);
766     ASroute.link_list->push_back(link);
767   }
768   xbt_dynar_free(&parsed_link_list);
769
770   switch (A_surfxml_ASroute_symmetrical) {
771   case AU_surfxml_ASroute_symmetrical:
772   case A_surfxml_ASroute_symmetrical_YES:
773     ASroute.symmetrical = true;
774     break;
775   case A_surfxml_ASroute_symmetrical_NO:
776     ASroute.symmetrical = false;
777     break;
778   }
779
780   sg_platf_new_route(&ASroute);
781   delete ASroute.link_list;
782 }
783
784 void ETag_surfxml_bypassRoute(void){
785   s_sg_platf_route_cbarg_t route;
786   memset(&route,0,sizeof(route));
787
788   route.src = sg_netcard_by_name_or_null(A_surfxml_bypassRoute_src); // tested to not be nullptr in start tag
789   route.dst = sg_netcard_by_name_or_null(A_surfxml_bypassRoute_dst); // tested to not be nullptr in start tag
790   route.gw_src = nullptr;
791   route.gw_dst = nullptr;
792   route.symmetrical = false;
793   route.link_list =  new std::vector<Link*>();
794
795   unsigned int cpt;
796   char *link_name;
797   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
798     simgrid::surf::Link *link = Link::byName(link_name);
799     route.link_list->push_back(link);
800   }
801   xbt_dynar_free(&parsed_link_list);
802
803   sg_platf_new_bypassRoute(&route);
804 }
805
806 void ETag_surfxml_bypassASroute(void){
807   s_sg_platf_route_cbarg_t ASroute;
808   memset(&ASroute,0,sizeof(ASroute));
809
810   ASroute.src         = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_src);
811   ASroute.dst         = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_dst);
812   ASroute.link_list   = new std::vector<Link*>();
813   unsigned int cpt;
814   char *link_name;
815   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
816     simgrid::surf::Link *link = Link::byName(link_name);
817     ASroute.link_list->push_back(link);
818   }
819   xbt_dynar_free(&parsed_link_list);
820   ASroute.symmetrical = false;
821
822   ASroute.gw_src = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___src);
823   ASroute.gw_dst = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___dst);
824
825   sg_platf_new_bypassRoute(&ASroute);
826 }
827
828 void ETag_surfxml_trace(void){
829   s_sg_platf_trace_cbarg_t trace;
830   memset(&trace,0,sizeof(trace));
831
832   trace.id = A_surfxml_trace_id;
833   trace.file = A_surfxml_trace_file;
834   trace.periodicity = surf_parse_get_double(A_surfxml_trace_periodicity);
835   trace.pc_data = surfxml_pcdata;
836
837   sg_platf_new_trace(&trace);
838 }
839
840 void STag_surfxml_trace___connect(void){
841   parse_after_config();
842   s_sg_platf_trace_connect_cbarg_t trace_connect;
843   memset(&trace_connect,0,sizeof(trace_connect));
844
845   trace_connect.element = A_surfxml_trace___connect_element;
846   trace_connect.trace = A_surfxml_trace___connect_trace;
847
848   switch (A_surfxml_trace___connect_kind) {
849   case AU_surfxml_trace___connect_kind:
850   case A_surfxml_trace___connect_kind_SPEED:
851     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_SPEED;
852     break;
853   case A_surfxml_trace___connect_kind_BANDWIDTH:
854     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_BANDWIDTH;
855     break;
856   case A_surfxml_trace___connect_kind_HOST___AVAIL:
857     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_HOST_AVAIL;
858     break;
859   case A_surfxml_trace___connect_kind_LATENCY:
860     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_LATENCY;
861     break;
862   case A_surfxml_trace___connect_kind_LINK___AVAIL:
863     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_LINK_AVAIL;
864     break;
865   }
866   sg_platf_trace_connect(&trace_connect);
867 }
868
869 void STag_surfxml_AS(void){
870   parse_after_config();
871   AS_TAG                   = 1;
872   s_sg_platf_AS_cbarg_t AS = { A_surfxml_AS_id, (int)A_surfxml_AS_routing};
873
874   as_current_property_set = nullptr;
875
876   sg_platf_new_AS_begin(&AS);
877 }
878 void ETag_surfxml_AS(void){
879   if(as_prop_nb){
880     char *name      = as_name_tab[as_prop_nb-1];
881     xbt_dict_t dict = (xbt_dict_t) as_dict_tab[as_prop_nb-1];
882     as_prop_nb--;
883     XBT_DEBUG("POP prop %p for AS '%s'",dict,name);
884     xbt_lib_set(as_router_lib, name, ROUTING_PROP_ASR_LEVEL, dict);
885     xbt_free(name);
886   }
887   sg_platf_new_AS_seal();
888 }
889
890 void STag_surfxml_config(void){
891   AS_TAG = 0;
892   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
893   XBT_DEBUG("START configuration name = %s",A_surfxml_config_id);
894   if (_sg_cfg_init_status == 2) {
895     surf_parse_error("All <config> tags must be given before any platform elements (such as <AS>, <host>, <cluster>, <link>, etc).");
896   }
897 }
898 void ETag_surfxml_config(void){
899   xbt_dict_cursor_t cursor = nullptr;
900   char *key;
901   char *elem;
902   char *cfg;
903   xbt_dict_foreach(current_property_set, cursor, key, elem) {
904     cfg = bprintf("%s:%s",key,elem);
905     if(xbt_cfg_is_default_value(key))
906       xbt_cfg_set_parse(cfg);
907     else
908       XBT_INFO("The custom configuration '%s' is already defined by user!",key);
909     free(cfg);
910   }
911   XBT_DEBUG("End configuration name = %s",A_surfxml_config_id);
912
913   xbt_dict_free(&current_property_set);
914   current_property_set = nullptr;
915 }
916
917 static int argc;
918 static char **argv;
919
920 void STag_surfxml_process(void){
921   AS_TAG  = 0;
922   argc    = 1;
923   argv    = xbt_new(char *, 1);
924   argv[0] = xbt_strdup(A_surfxml_process_function);
925   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
926 }
927
928 void ETag_surfxml_process(void){
929   s_sg_platf_process_cbarg_t process;
930   memset(&process,0,sizeof(process));
931
932   process.argc       = argc;
933   process.argv       = (const char **)argv;
934   process.properties = current_property_set;
935   process.host       = A_surfxml_process_host;
936   process.function   = A_surfxml_process_function;
937   process.start_time = surf_parse_get_double(A_surfxml_process_start___time);
938   process.kill_time  = surf_parse_get_double(A_surfxml_process_kill___time);
939
940   switch (A_surfxml_process_on___failure) {
941   case AU_surfxml_process_on___failure:
942   case A_surfxml_process_on___failure_DIE:
943     process.on_failure =  SURF_PROCESS_ON_FAILURE_DIE;
944     break;
945   case A_surfxml_process_on___failure_RESTART:
946     process.on_failure =  SURF_PROCESS_ON_FAILURE_RESTART;
947     break;
948   }
949
950   sg_platf_new_process(&process);
951
952   for (int i = 0; i != argc; ++i)
953     xbt_free(argv[i]);
954   xbt_free(argv);
955   argv = nullptr;
956
957   current_property_set = nullptr;
958 }
959
960 void STag_surfxml_argument(void){
961   argc++;
962   argv = (char**)xbt_realloc(argv, (argc) * sizeof(char **));
963   argv[(argc) - 1] = xbt_strdup(A_surfxml_argument_value);
964 }
965
966 void STag_surfxml_model___prop(void){
967   if (!current_model_property_set)
968     current_model_property_set = xbt_dict_new_homogeneous(xbt_free_f);
969
970   xbt_dict_set(current_model_property_set, A_surfxml_model___prop_id, xbt_strdup(A_surfxml_model___prop_value), nullptr);
971 }
972
973 /* nothing to do in those functions */
974 void ETag_surfxml_prop(void){}
975 void STag_surfxml_random(void){}
976 void ETag_surfxml_random(void){}
977 void ETag_surfxml_trace___connect(void){}
978 void STag_surfxml_trace(void){parse_after_config();}
979 void ETag_surfxml_router(void){}
980 void ETag_surfxml_host___link(void){}
981 void ETag_surfxml_cabinet(void){}
982 void ETag_surfxml_peer(void){}
983 void STag_surfxml_backbone(void){}
984 void ETag_surfxml_link___ctn(void){}
985 void ETag_surfxml_argument(void){}
986 void ETag_surfxml_model___prop(void){}
987
988 /* Open and Close parse file */
989
990 void surf_parse_open(const char *file)
991 {
992   xbt_assert(file, "Cannot parse the nullptr file. Bypassing the parser is strongly deprecated nowadays.");
993
994   if (!surf_input_buffer_stack)
995     surf_input_buffer_stack = xbt_dynar_new(sizeof(YY_BUFFER_STATE), nullptr);
996   if (!surf_file_to_parse_stack)
997     surf_file_to_parse_stack = xbt_dynar_new(sizeof(FILE *), nullptr);
998
999   if (!surf_parsed_filename_stack)
1000     surf_parsed_filename_stack = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1001
1002   surf_parsed_filename = xbt_strdup(file);
1003   char *dir = xbt_dirname(file);
1004   xbt_dynar_push(surf_path, &dir);
1005
1006   surf_file_to_parse = surf_fopen(file, "r");
1007   xbt_assert((surf_file_to_parse), "Unable to open \"%s\"\n", file);
1008   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, YY_BUF_SIZE);
1009   surf_parse__switch_to_buffer(surf_input_buffer);
1010   surf_parse_lineno = 1;
1011 }
1012
1013 void surf_parse_close(void)
1014 {
1015   xbt_dynar_free(&surf_input_buffer_stack);
1016   xbt_dynar_free(&surf_file_to_parse_stack);
1017   xbt_dynar_free(&surf_parsed_filename_stack);
1018   if (surf_parsed_filename) {
1019     char *dir = nullptr;
1020     xbt_dynar_pop(surf_path, &dir);
1021     free(dir);
1022   }
1023
1024   free(surf_parsed_filename);
1025   surf_parsed_filename = nullptr;
1026
1027   if (surf_file_to_parse) {
1028     surf_parse__delete_buffer(surf_input_buffer);
1029     fclose(surf_file_to_parse);
1030     surf_file_to_parse = nullptr; //Must be reset for Bypass
1031   }
1032 }
1033
1034 /* Call the lexer to parse the currently opened file. This pointer to function enables bypassing of the parser */
1035
1036 static int _surf_parse(void) {
1037   return surf_parse_lex();
1038 }
1039 int_f_void_t surf_parse = _surf_parse;
1040
1041
1042 /* Prop tag functions */
1043
1044 /**
1045  * With XML parser
1046  */
1047 xbt_dict_t get_as_router_properties(const char* name)
1048 {
1049   return (xbt_dict_t)xbt_lib_get_or_null(as_router_lib, name, ROUTING_PROP_ASR_LEVEL);
1050 }
1051