Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
In <cluster>, attributes availability_file and state_file are gone.
[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){
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) : NULL;
466   host.state_trace = A_surfxml_host_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_host_state___file) : NULL;
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_double(A_surfxml_cluster_limiter___link);
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   default:
531     surf_parse_error("Invalid cluster topology for cluster %s",
532                      cluster.id);
533     break;
534   }
535   cluster.topo_parameters = A_surfxml_cluster_topo___parameters;
536   cluster.router_id = A_surfxml_cluster_router___id;
537
538   switch (AX_surfxml_cluster_sharing___policy) {
539   case A_surfxml_cluster_sharing___policy_SHARED:
540     cluster.sharing_policy = SURF_LINK_SHARED;
541     break;
542   case A_surfxml_cluster_sharing___policy_FULLDUPLEX:
543     cluster.sharing_policy = SURF_LINK_FULLDUPLEX;
544     break;
545   case A_surfxml_cluster_sharing___policy_FATPIPE:
546     cluster.sharing_policy = SURF_LINK_FATPIPE;
547     break;
548   default:
549     surf_parse_error("Invalid cluster sharing policy for cluster %s",
550                      cluster.id);
551     break;
552   }
553   switch (AX_surfxml_cluster_bb___sharing___policy) {
554   case A_surfxml_cluster_bb___sharing___policy_FATPIPE:
555     cluster.bb_sharing_policy = SURF_LINK_FATPIPE;
556     break;
557   case A_surfxml_cluster_bb___sharing___policy_SHARED:
558     cluster.bb_sharing_policy = SURF_LINK_SHARED;
559     break;
560   default:
561     surf_parse_error("Invalid bb sharing policy in cluster %s",
562                      cluster.id);
563     break;
564   }
565
566   sg_platf_new_cluster(&cluster);
567
568   current_property_set = nullptr;
569 }
570
571 void STag_surfxml_cluster(void){
572   parse_after_config();
573   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
574 }
575
576 void STag_surfxml_cabinet(void){
577   parse_after_config();
578   s_sg_platf_cabinet_cbarg_t cabinet;
579   memset(&cabinet,0,sizeof(cabinet));
580   cabinet.id      = A_surfxml_cabinet_id;
581   cabinet.prefix  = A_surfxml_cabinet_prefix;
582   cabinet.suffix  = A_surfxml_cabinet_suffix;
583   cabinet.speed   = surf_parse_get_speed(A_surfxml_cabinet_speed, "speed of cabinet", cabinet.id);
584   cabinet.bw      = surf_parse_get_bandwidth(A_surfxml_cabinet_bw, "bw of cabinet", cabinet.id);
585   cabinet.lat     = surf_parse_get_time(A_surfxml_cabinet_lat, "lat of cabinet", cabinet.id);
586   cabinet.radical = A_surfxml_cabinet_radical;
587
588   sg_platf_new_cabinet(&cabinet);
589 }
590
591 void STag_surfxml_peer(void){
592   parse_after_config();
593   s_sg_platf_peer_cbarg_t peer;
594   memset(&peer,0,sizeof(peer));
595   peer.id                 = A_surfxml_peer_id;
596   peer.speed              = surf_parse_get_speed(A_surfxml_peer_speed, "speed of peer", peer.id);
597   peer.bw_in              = surf_parse_get_bandwidth(A_surfxml_peer_bw___in, "bw_in of peer", peer.id);
598   peer.bw_out             = surf_parse_get_bandwidth(A_surfxml_peer_bw___out, "bw_out of peer", peer.id);
599   peer.lat                = surf_parse_get_time(A_surfxml_peer_lat, "lat of peer", peer.id);
600   peer.coord              = A_surfxml_peer_coordinates;
601   peer.availability_trace = A_surfxml_peer_availability___file[0] ? tmgr_trace_new_from_file(A_surfxml_peer_availability___file) : NULL;
602   peer.state_trace        = A_surfxml_peer_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_peer_state___file) : NULL;
603
604   sg_platf_new_peer(&peer);
605 }
606
607 void STag_surfxml_link(void){
608   AS_TAG = 0;
609   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
610 }
611
612 void ETag_surfxml_link(void){
613   s_sg_platf_link_cbarg_t link;
614   memset(&link,0,sizeof(link));
615
616   link.properties          = current_property_set;
617   link.id                  = A_surfxml_link_id;
618   link.bandwidth           = surf_parse_get_bandwidth(A_surfxml_link_bandwidth, "bandwidth of link", link.id);
619   link.bandwidth_trace     = A_surfxml_link_bandwidth___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_bandwidth___file) : NULL;
620   link.latency             = surf_parse_get_time(A_surfxml_link_latency, "latency of link", link.id);
621   link.latency_trace       = A_surfxml_link_latency___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_latency___file) : NULL;
622   link.state_trace         = A_surfxml_link_state___file[0] ? tmgr_trace_new_from_file(A_surfxml_link_state___file):NULL;
623
624   switch (A_surfxml_link_sharing___policy) {
625   case A_surfxml_link_sharing___policy_SHARED:
626     link.policy = SURF_LINK_SHARED;
627     break;
628   case A_surfxml_link_sharing___policy_FATPIPE:
629      link.policy = SURF_LINK_FATPIPE;
630      break;
631   case A_surfxml_link_sharing___policy_FULLDUPLEX:
632      link.policy = SURF_LINK_FULLDUPLEX;
633      break;
634   default:
635     surf_parse_error("Invalid sharing policy in link %s", link.id);
636     break;
637   }
638
639   sg_platf_new_link(&link);
640
641   current_property_set = nullptr;
642 }
643
644 void STag_surfxml_link___ctn(void){
645
646   char *link_id;
647   switch (A_surfxml_link___ctn_direction) {
648   case AU_surfxml_link___ctn_direction:
649   case A_surfxml_link___ctn_direction_NONE:
650     link_id = xbt_strdup(A_surfxml_link___ctn_id);
651     break;
652   case A_surfxml_link___ctn_direction_UP:
653     link_id = bprintf("%s_UP", A_surfxml_link___ctn_id);
654     break;
655   case A_surfxml_link___ctn_direction_DOWN:
656     link_id = bprintf("%s_DOWN", A_surfxml_link___ctn_id);
657     break;
658   }
659
660   // FIXME we should push the surf link object but it don't
661   // work because of model rulebased
662   xbt_dynar_push(parsed_link_list, &link_id);
663 }
664
665 void ETag_surfxml_backbone(void){
666   s_sg_platf_link_cbarg_t link;
667   memset(&link,0,sizeof(link));
668
669   link.properties = nullptr;
670   link.id = A_surfxml_backbone_id;
671   link.bandwidth = surf_parse_get_bandwidth(A_surfxml_backbone_bandwidth, "bandwidth of backbone", link.id);
672   link.latency = surf_parse_get_time(A_surfxml_backbone_latency, "latency of backbone", link.id);
673   link.policy = SURF_LINK_SHARED;
674
675   sg_platf_new_link(&link);
676   routing_cluster_add_backbone(sg_link_by_name(A_surfxml_backbone_id));
677 }
678
679 void STag_surfxml_route(void){
680   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_route_src),
681       "Route src='%s' does name a node.", A_surfxml_route_src);
682   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_route_dst),
683       "Route dst='%s' does name a node.", A_surfxml_route_dst);
684   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
685 }
686
687 void STag_surfxml_ASroute(void){
688   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_src),
689       "ASroute src='%s' does name a node.", A_surfxml_route_src);
690   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_dst),
691       "ASroute dst='%s' does name a node.", A_surfxml_route_dst);
692
693   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___src),
694       "ASroute gw_src='%s' does name a node.", A_surfxml_ASroute_gw___src);
695   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___dst),
696       "ASroute gw_dst='%s' does name a node.", A_surfxml_ASroute_gw___dst);
697
698   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
699 }
700
701 void STag_surfxml_bypassRoute(void){
702   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassRoute_src),
703       "bypassRoute src='%s' does name a node.", A_surfxml_bypassRoute_src);
704   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassRoute_dst),
705       "bypassRoute dst='%s' does name a node.", A_surfxml_bypassRoute_dst);
706
707   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
708 }
709
710 void STag_surfxml_bypassASroute(void){
711   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_src),
712       "bypassASroute src='%s' does name a node.", A_surfxml_bypassASroute_src);
713   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_dst),
714       "bypassASroute dst='%s' does name a node.", A_surfxml_bypassASroute_dst);
715   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___src),
716       "bypassASroute gw_src='%s' does name a node.", A_surfxml_bypassASroute_gw___src);
717   surf_parse_assert(sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___dst),
718       "bypassASroute gw_dst='%s' does name a node.", A_surfxml_bypassASroute_gw___dst);
719
720   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
721 }
722
723 void ETag_surfxml_route(void){
724   s_sg_platf_route_cbarg_t route;
725   memset(&route,0,sizeof(route));
726
727   route.src       = A_surfxml_route_src;
728   route.dst       = A_surfxml_route_dst;
729   route.gw_src    = nullptr;
730   route.gw_dst    = nullptr;
731   route.link_list = new std::vector<Link*>();
732   route.symmetrical = (A_surfxml_route_symmetrical == A_surfxml_route_symmetrical_YES);
733
734   unsigned int cpt;
735   char *link_name;
736   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
737     simgrid::surf::Link *link = Link::byName(link_name);
738     route.link_list->push_back(link);
739   }
740
741   sg_platf_new_route(&route);
742   xbt_dynar_free(&parsed_link_list);
743 }
744
745 void ETag_surfxml_ASroute(void){
746   s_sg_platf_route_cbarg_t ASroute;
747   memset(&ASroute,0,sizeof(ASroute));
748
749   ASroute.src = A_surfxml_ASroute_src;
750   ASroute.dst = A_surfxml_ASroute_dst;
751
752   ASroute.gw_src = sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___src);
753   ASroute.gw_dst = sg_netcard_by_name_or_null(A_surfxml_ASroute_gw___dst);
754
755   if (A_surfxml_ASroute_gw___src && !ASroute.gw_src)
756     surf_parse_error("gw_src=\"%s\" not found for ASroute from \"%s\" to \"%s\"",
757                      A_surfxml_ASroute_gw___src, ASroute.src, ASroute.dst);
758   if (A_surfxml_ASroute_gw___dst && !ASroute.gw_dst)
759     surf_parse_error("gw_dst=\"%s\" not found for ASroute from \"%s\" to \"%s\"",
760                      A_surfxml_ASroute_gw___dst, ASroute.src, ASroute.dst);
761
762   ASroute.link_list =  new std::vector<Link*>();
763
764   unsigned int cpt;
765   char *link_name;
766   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
767     simgrid::surf::Link *link = Link::byName(link_name);
768     ASroute.link_list->push_back(link);
769   }
770   xbt_dynar_free(&parsed_link_list);
771
772   switch (A_surfxml_ASroute_symmetrical) {
773   case AU_surfxml_ASroute_symmetrical:
774   case A_surfxml_ASroute_symmetrical_YES:
775     ASroute.symmetrical = true;
776     break;
777   case A_surfxml_ASroute_symmetrical_NO:
778     ASroute.symmetrical = false;
779     break;
780   }
781
782   sg_platf_new_route(&ASroute);
783 }
784
785 void ETag_surfxml_bypassRoute(void){
786   s_sg_platf_route_cbarg_t route;
787   memset(&route,0,sizeof(route));
788
789   route.src = A_surfxml_bypassRoute_src;
790   route.dst = A_surfxml_bypassRoute_dst;
791   route.gw_src = nullptr;
792   route.gw_dst = nullptr;
793   route.symmetrical = false;
794   route.link_list =  new std::vector<Link*>();
795
796   unsigned int cpt;
797   char *link_name;
798   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
799     simgrid::surf::Link *link = Link::byName(link_name);
800     route.link_list->push_back(link);
801   }
802   xbt_dynar_free(&parsed_link_list);
803
804   sg_platf_new_bypassRoute(&route);
805 }
806
807 void ETag_surfxml_bypassASroute(void){
808   s_sg_platf_route_cbarg_t ASroute;
809   memset(&ASroute,0,sizeof(ASroute));
810
811   ASroute.src         = A_surfxml_bypassASroute_src;
812   ASroute.dst         = A_surfxml_bypassASroute_dst;
813   ASroute.link_list   =  new std::vector<Link*>();
814   unsigned int cpt;
815   char *link_name;
816   xbt_dynar_foreach(parsed_link_list, cpt, link_name) {
817     simgrid::surf::Link *link = Link::byName(link_name);
818     ASroute.link_list->push_back(link);
819   }
820   xbt_dynar_free(&parsed_link_list);
821   ASroute.symmetrical = false;
822
823   ASroute.gw_src = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___src);
824   ASroute.gw_dst = sg_netcard_by_name_or_null(A_surfxml_bypassASroute_gw___dst);
825
826   sg_platf_new_bypassRoute(&ASroute);
827 }
828
829 void ETag_surfxml_trace(void){
830   s_sg_platf_trace_cbarg_t trace;
831   memset(&trace,0,sizeof(trace));
832
833   trace.id = A_surfxml_trace_id;
834   trace.file = A_surfxml_trace_file;
835   trace.periodicity = surf_parse_get_double(A_surfxml_trace_periodicity);
836   trace.pc_data = surfxml_pcdata;
837
838   sg_platf_new_trace(&trace);
839 }
840
841 void STag_surfxml_trace___connect(void){
842   parse_after_config();
843   s_sg_platf_trace_connect_cbarg_t trace_connect;
844   memset(&trace_connect,0,sizeof(trace_connect));
845
846   trace_connect.element = A_surfxml_trace___connect_element;
847   trace_connect.trace = A_surfxml_trace___connect_trace;
848
849   switch (A_surfxml_trace___connect_kind) {
850   case AU_surfxml_trace___connect_kind:
851   case A_surfxml_trace___connect_kind_SPEED:
852     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_SPEED;
853     break;
854   case A_surfxml_trace___connect_kind_BANDWIDTH:
855     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_BANDWIDTH;
856     break;
857   case A_surfxml_trace___connect_kind_HOST___AVAIL:
858     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_HOST_AVAIL;
859     break;
860   case A_surfxml_trace___connect_kind_LATENCY:
861     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_LATENCY;
862     break;
863   case A_surfxml_trace___connect_kind_LINK___AVAIL:
864     trace_connect.kind =  SURF_TRACE_CONNECT_KIND_LINK_AVAIL;
865     break;
866   }
867   sg_platf_trace_connect(&trace_connect);
868 }
869
870 void STag_surfxml_AS(void){
871   parse_after_config();
872   AS_TAG                   = 1;
873   s_sg_platf_AS_cbarg_t AS = { A_surfxml_AS_id, (int)A_surfxml_AS_routing};
874
875   as_current_property_set = nullptr;
876
877   sg_platf_new_AS_begin(&AS);
878 }
879 void ETag_surfxml_AS(void){
880   if(as_prop_nb){
881     char *name      = as_name_tab[as_prop_nb-1];
882     xbt_dict_t dict = (xbt_dict_t) as_dict_tab[as_prop_nb-1];
883     as_prop_nb--;
884     XBT_DEBUG("POP prop %p for AS '%s'",dict,name);
885     xbt_lib_set(as_router_lib,
886         name,
887       ROUTING_PROP_ASR_LEVEL,
888       dict);
889     xbt_free(name);
890   }
891   sg_platf_new_AS_end();
892 }
893
894 void STag_surfxml_config(void){
895   AS_TAG = 0;
896   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
897   XBT_DEBUG("START configuration name = %s",A_surfxml_config_id);
898   if (_sg_cfg_init_status == 2) {
899     surf_parse_error("All <config> tags must be given before any platform elements (such as <AS>, <host>, <cluster>, <link>, etc).");
900   }
901 }
902 void ETag_surfxml_config(void){
903   xbt_dict_cursor_t cursor = nullptr;
904   char *key;
905   char *elem;
906   char *cfg;
907   xbt_dict_foreach(current_property_set, cursor, key, elem) {
908     cfg = bprintf("%s:%s",key,elem);
909     if(xbt_cfg_is_default_value(_sg_cfg_set, key))
910       xbt_cfg_set_parse(_sg_cfg_set, cfg);
911     else
912       XBT_INFO("The custom configuration '%s' is already defined by user!",key);
913     free(cfg);
914   }
915   XBT_DEBUG("End configuration name = %s",A_surfxml_config_id);
916
917   xbt_dict_free(&current_property_set);
918   current_property_set = nullptr;
919 }
920
921 static int argc;
922 static char **argv;
923
924 void STag_surfxml_process(void){
925   AS_TAG  = 0;
926   argc    = 1;
927   argv    = xbt_new(char *, 1);
928   argv[0] = xbt_strdup(A_surfxml_process_function);
929   xbt_assert(current_property_set == nullptr, "Someone forgot to reset the property set to nullptr in its closing tag (or XML malformed)");
930 }
931
932 void ETag_surfxml_process(void){
933   s_sg_platf_process_cbarg_t process;
934   memset(&process,0,sizeof(process));
935
936   process.argc       = argc;
937   process.argv       = (const char **)argv;
938   process.properties = current_property_set;
939   process.host       = A_surfxml_process_host;
940   process.function   = A_surfxml_process_function;
941   process.start_time = surf_parse_get_double(A_surfxml_process_start___time);
942   process.kill_time  = surf_parse_get_double(A_surfxml_process_kill___time);
943
944   switch (A_surfxml_process_on___failure) {
945   case AU_surfxml_process_on___failure:
946   case A_surfxml_process_on___failure_DIE:
947     process.on_failure =  SURF_PROCESS_ON_FAILURE_DIE;
948     break;
949   case A_surfxml_process_on___failure_RESTART:
950     process.on_failure =  SURF_PROCESS_ON_FAILURE_RESTART;
951     break;
952   }
953
954   sg_platf_new_process(&process);
955   current_property_set = nullptr;
956 }
957
958 void STag_surfxml_argument(void){
959   argc++;
960   argv = (char**)xbt_realloc(argv, (argc) * sizeof(char **));
961   argv[(argc) - 1] = xbt_strdup(A_surfxml_argument_value);
962 }
963
964 void STag_surfxml_model___prop(void){
965   if (!current_model_property_set)
966     current_model_property_set = xbt_dict_new_homogeneous(xbt_free_f);
967
968   xbt_dict_set(current_model_property_set, A_surfxml_model___prop_id, xbt_strdup(A_surfxml_model___prop_value), nullptr);
969 }
970
971 /* nothing to do in those functions */
972 void ETag_surfxml_prop(void){}
973 void STag_surfxml_random(void){}
974 void ETag_surfxml_random(void){}
975 void ETag_surfxml_trace___connect(void){}
976 void STag_surfxml_trace(void){parse_after_config();}
977 void ETag_surfxml_router(void){}
978 void ETag_surfxml_host___link(void){}
979 void ETag_surfxml_cabinet(void){}
980 void ETag_surfxml_peer(void){}
981 void STag_surfxml_backbone(void){}
982 void ETag_surfxml_link___ctn(void){}
983 void ETag_surfxml_argument(void){}
984 void ETag_surfxml_model___prop(void){}
985
986 /* Open and Close parse file */
987
988 void surf_parse_open(const char *file)
989 {
990   xbt_assert(file, "Cannot parse the NULL file. Bypassing the parser is strongly deprecated nowadays.");
991
992   if (!surf_input_buffer_stack)
993     surf_input_buffer_stack = xbt_dynar_new(sizeof(YY_BUFFER_STATE), nullptr);
994   if (!surf_file_to_parse_stack)
995     surf_file_to_parse_stack = xbt_dynar_new(sizeof(FILE *), nullptr);
996
997   if (!surf_parsed_filename_stack)
998     surf_parsed_filename_stack = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
999
1000   surf_parsed_filename = xbt_strdup(file);
1001   char *dir = xbt_dirname(file);
1002   xbt_dynar_push(surf_path, &dir);
1003
1004   surf_file_to_parse = surf_fopen(file, "r");
1005   xbt_assert((surf_file_to_parse), "Unable to open \"%s\"\n", file);
1006   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, YY_BUF_SIZE);
1007   surf_parse__switch_to_buffer(surf_input_buffer);
1008   surf_parse_lineno = 1;
1009 }
1010
1011 void surf_parse_close(void)
1012 {
1013   xbt_dynar_free(&surf_input_buffer_stack);
1014   xbt_dynar_free(&surf_file_to_parse_stack);
1015   xbt_dynar_free(&surf_parsed_filename_stack);
1016   if (surf_parsed_filename) {
1017     char *dir = nullptr;
1018     xbt_dynar_pop(surf_path, &dir);
1019     free(dir);
1020   }
1021
1022   free(surf_parsed_filename);
1023   surf_parsed_filename = nullptr;
1024
1025   if (surf_file_to_parse) {
1026     surf_parse__delete_buffer(surf_input_buffer);
1027     fclose(surf_file_to_parse);
1028     surf_file_to_parse = nullptr; //Must be reset for Bypass
1029   }
1030 }
1031
1032 /* Call the lexer to parse the currently opened file. This pointer to function enables bypassing of the parser */
1033
1034 static int _surf_parse(void) {
1035   return surf_parse_lex();
1036 }
1037 int_f_void_t surf_parse = _surf_parse;
1038
1039
1040 /* Prop tag functions */
1041
1042 /**
1043  * With XML parser
1044  */
1045 xbt_dict_t get_as_router_properties(const char* name)
1046 {
1047   return (xbt_dict_t)xbt_lib_get_or_null(as_router_lib, name, ROUTING_PROP_ASR_LEVEL);
1048 }
1049