Logo AND Algorithmique Numérique Distribuée

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