Logo AND Algorithmique Numérique Distribuée

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