Logo AND Algorithmique Numérique Distribuée

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