Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the init_host_bypass from here
[simgrid.git] / src / surf / surfxml_parse.c
1 /* Copyright (c) 2006, 2007, 2008, 2009, 2010. 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 "xbt/misc.h"
8 #include "xbt/log.h"
9 #include "xbt/str.h"
10 #include "xbt/dict.h"
11 #include "surf/surfxml_parse_private.h"
12 #include "surf/surf_private.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_parse, surf,
15                                 "Logging specific to the SURF parsing module");
16 #undef CLEANUP
17 #include "simgrid_dtd.c"
18
19 /* Initialize the parsing globals */
20 int route_action = 0;
21 xbt_dict_t traces_set_list = NULL;
22 //xbt_dynar_t traces_connect_list = NULL;
23 xbt_dict_t trace_connect_list_host_avail = NULL;
24 xbt_dict_t trace_connect_list_power = NULL;
25 xbt_dict_t trace_connect_list_link_avail = NULL;
26 xbt_dict_t trace_connect_list_bandwidth = NULL;
27 xbt_dict_t trace_connect_list_latency = NULL;
28
29 /* This buffer is used to store the original buffer before substituing it by out own buffer. Usefull for the foreach tag */
30 static xbt_dynar_t surfxml_bufferstack_stack = NULL;
31 int surfxml_bufferstack_size = 2048;
32 static char *old_buff = NULL;
33 static void surf_parse_error(char *msg);
34
35 void surfxml_bufferstack_push(int new)
36 {
37   if (!new)
38     old_buff = surfxml_bufferstack;
39   else {
40     xbt_dynar_push(surfxml_bufferstack_stack, &surfxml_bufferstack);
41     surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
42   }
43 }
44
45 void surfxml_bufferstack_pop(int new)
46 {
47   if (!new)
48     surfxml_bufferstack = old_buff;
49   else {
50     free(surfxml_bufferstack);
51     xbt_dynar_pop(surfxml_bufferstack_stack, &surfxml_bufferstack);
52   }
53 }
54
55 /* Stores the set name reffered to by the foreach tag */
56 static char *foreach_set_name;
57 static xbt_dynar_t main_STag_surfxml_host_cb_list = NULL;
58 static xbt_dynar_t main_STag_surfxml_link_cb_list = NULL;
59
60 /* make sure these symbols are defined as strong ones in this file so that the linked can resolve them */
61 xbt_dynar_t STag_surfxml_platform_cb_list = NULL;
62 xbt_dynar_t ETag_surfxml_platform_cb_list = NULL;
63 xbt_dynar_t STag_surfxml_host_cb_list = NULL;
64 xbt_dynar_t ETag_surfxml_host_cb_list = NULL;
65 xbt_dynar_t STag_surfxml_router_cb_list = NULL;
66 xbt_dynar_t ETag_surfxml_router_cb_list = NULL;
67 xbt_dynar_t STag_surfxml_link_cb_list = NULL;
68 xbt_dynar_t ETag_surfxml_link_cb_list = NULL;
69 xbt_dynar_t STag_surfxml_route_cb_list = NULL;
70 xbt_dynar_t ETag_surfxml_route_cb_list = NULL;
71 xbt_dynar_t STag_surfxml_link_c_ctn_cb_list = NULL;
72 xbt_dynar_t ETag_surfxml_link_c_ctn_cb_list = NULL;
73 xbt_dynar_t STag_surfxml_process_cb_list = NULL;
74 xbt_dynar_t ETag_surfxml_process_cb_list = NULL;
75 xbt_dynar_t STag_surfxml_argument_cb_list = NULL;
76 xbt_dynar_t ETag_surfxml_argument_cb_list = NULL;
77 xbt_dynar_t STag_surfxml_prop_cb_list = NULL;
78 xbt_dynar_t ETag_surfxml_prop_cb_list = NULL;
79 xbt_dynar_t STag_surfxml_set_cb_list = NULL;
80 xbt_dynar_t ETag_surfxml_set_cb_list = NULL;
81 xbt_dynar_t STag_surfxml_foreach_cb_list = NULL;
82 xbt_dynar_t ETag_surfxml_foreach_cb_list = NULL;
83 xbt_dynar_t STag_surfxml_route_c_multi_cb_list = NULL;
84 xbt_dynar_t ETag_surfxml_route_c_multi_cb_list = NULL;
85 xbt_dynar_t STag_surfxml_cluster_cb_list = NULL;
86 xbt_dynar_t ETag_surfxml_cluster_cb_list = NULL;
87 xbt_dynar_t STag_surfxml_trace_cb_list = NULL;
88 xbt_dynar_t ETag_surfxml_trace_cb_list = NULL;
89 xbt_dynar_t STag_surfxml_trace_c_connect_cb_list = NULL;
90 xbt_dynar_t ETag_surfxml_trace_c_connect_cb_list = NULL;
91 xbt_dynar_t STag_surfxml_random_cb_list = NULL;
92 xbt_dynar_t ETag_surfxml_random_cb_list = NULL;
93
94 /* Stores the sets defined in the XML */
95 xbt_dict_t set_list = NULL;
96
97 xbt_dict_t current_property_set = NULL;
98
99 /* For the route:multi tag */
100 xbt_dict_t route_table = NULL;
101 xbt_dict_t route_multi_table = NULL;
102 xbt_dynar_t route_multi_elements = NULL;
103 static xbt_dynar_t route_link_list = NULL;
104 xbt_dynar_t links = NULL;
105 xbt_dynar_t keys = NULL;
106
107 xbt_dict_t random_data_list = NULL;
108
109 static xbt_dynar_t surf_input_buffer_stack = NULL;
110 static xbt_dynar_t surf_file_to_parse_stack = NULL;
111
112 static XBT_INLINE void surfxml_call_cb_functions(xbt_dynar_t);
113
114 YY_BUFFER_STATE surf_input_buffer;
115 FILE *surf_file_to_parse = NULL;
116
117 static void convert_route_multi_to_routes(void);
118 static void parse_route_elem(void);
119 static void parse_Stag_foreach(void);
120 static void parse_sets(void);
121 static void parse_Stag_route_multi(void);
122 static void parse_Etag_route_multi(void);
123 static void parse_Stag_trace(void);
124 static void parse_Etag_trace(void);
125 static void parse_Stag_trace_c_connect(void);
126 static void init_randomness(void);
127 static void add_randomness(void);
128
129 void surf_parse_free_callbacks(void)
130 {
131   xbt_dynar_free(&STag_surfxml_platform_cb_list);
132   xbt_dynar_free(&ETag_surfxml_platform_cb_list);
133   xbt_dynar_free(&STag_surfxml_host_cb_list);
134   xbt_dynar_free(&ETag_surfxml_host_cb_list);
135   xbt_dynar_free(&STag_surfxml_router_cb_list);
136   xbt_dynar_free(&ETag_surfxml_router_cb_list);
137   xbt_dynar_free(&STag_surfxml_link_cb_list);
138   xbt_dynar_free(&ETag_surfxml_link_cb_list);
139   xbt_dynar_free(&STag_surfxml_route_cb_list);
140   xbt_dynar_free(&ETag_surfxml_route_cb_list);
141   xbt_dynar_free(&STag_surfxml_link_c_ctn_cb_list);
142   xbt_dynar_free(&ETag_surfxml_link_c_ctn_cb_list);
143   xbt_dynar_free(&STag_surfxml_process_cb_list);
144   xbt_dynar_free(&ETag_surfxml_process_cb_list);
145   xbt_dynar_free(&STag_surfxml_argument_cb_list);
146   xbt_dynar_free(&ETag_surfxml_argument_cb_list);
147   xbt_dynar_free(&STag_surfxml_prop_cb_list);
148   xbt_dynar_free(&ETag_surfxml_prop_cb_list);
149   xbt_dynar_free(&STag_surfxml_set_cb_list);
150   xbt_dynar_free(&ETag_surfxml_set_cb_list);
151   xbt_dynar_free(&STag_surfxml_foreach_cb_list);
152   xbt_dynar_free(&ETag_surfxml_foreach_cb_list);
153   xbt_dynar_free(&STag_surfxml_route_c_multi_cb_list);
154   xbt_dynar_free(&ETag_surfxml_route_c_multi_cb_list);
155   xbt_dynar_free(&STag_surfxml_cluster_cb_list);
156   xbt_dynar_free(&ETag_surfxml_cluster_cb_list);
157   xbt_dynar_free(&STag_surfxml_trace_cb_list);
158   xbt_dynar_free(&ETag_surfxml_trace_cb_list);
159   xbt_dynar_free(&STag_surfxml_trace_c_connect_cb_list);
160   xbt_dynar_free(&ETag_surfxml_trace_c_connect_cb_list);
161   xbt_dynar_free(&STag_surfxml_random_cb_list);
162   xbt_dynar_free(&ETag_surfxml_random_cb_list);
163 }
164
165 void surf_parse_reset_parser(void)
166 {
167   surf_parse_free_callbacks();
168   STag_surfxml_platform_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
169   ETag_surfxml_platform_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
170   STag_surfxml_host_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
171   ETag_surfxml_host_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
172   STag_surfxml_router_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
173   ETag_surfxml_router_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
174   STag_surfxml_link_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
175   ETag_surfxml_link_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
176   STag_surfxml_route_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
177   ETag_surfxml_route_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
178   STag_surfxml_link_c_ctn_cb_list =
179     xbt_dynar_new(sizeof(void_f_void_t), NULL);
180   ETag_surfxml_link_c_ctn_cb_list =
181     xbt_dynar_new(sizeof(void_f_void_t), NULL);
182   STag_surfxml_process_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
183   ETag_surfxml_process_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
184   STag_surfxml_argument_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
185   ETag_surfxml_argument_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
186   STag_surfxml_prop_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
187   ETag_surfxml_prop_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
188   STag_surfxml_set_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
189   ETag_surfxml_set_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
190   STag_surfxml_foreach_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
191   ETag_surfxml_foreach_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
192   STag_surfxml_route_c_multi_cb_list =
193     xbt_dynar_new(sizeof(void_f_void_t), NULL);
194   ETag_surfxml_route_c_multi_cb_list =
195     xbt_dynar_new(sizeof(void_f_void_t), NULL);
196   STag_surfxml_cluster_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
197   ETag_surfxml_cluster_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
198   STag_surfxml_trace_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
199   ETag_surfxml_trace_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
200   STag_surfxml_trace_c_connect_cb_list =
201     xbt_dynar_new(sizeof(void_f_void_t), NULL);
202   ETag_surfxml_trace_c_connect_cb_list =
203     xbt_dynar_new(sizeof(void_f_void_t), NULL);
204   STag_surfxml_random_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
205   ETag_surfxml_random_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
206 }
207
208 void STag_surfxml_include(void)
209 {
210   xbt_dynar_push(surf_input_buffer_stack, &surf_input_buffer);
211   xbt_dynar_push(surf_file_to_parse_stack, &surf_file_to_parse);
212
213   surf_file_to_parse = surf_fopen(A_surfxml_include_file, "r");
214   xbt_assert1((surf_file_to_parse), "Unable to open \"%s\"\n",
215               A_surfxml_include_file);
216   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, 10);
217   surf_parse__switch_to_buffer(surf_input_buffer);
218   printf("STAG\n");
219   fflush(NULL);
220 }
221
222 void ETag_surfxml_include(void)
223 {
224   printf("ETAG\n");
225   fflush(NULL);
226   surf_parse__delete_buffer(surf_input_buffer);
227   fclose(surf_file_to_parse);
228   xbt_dynar_pop(surf_file_to_parse_stack, &surf_file_to_parse);
229   xbt_dynar_pop(surf_input_buffer_stack, &surf_input_buffer);
230 }
231
232 void STag_surfxml_platform(void)
233 {
234   double version = 0.0;
235
236   sscanf(A_surfxml_platform_version, "%lg", &version);
237
238   xbt_assert0((version >= 1.0), "******* BIG FAT WARNING *********\n "
239               "You're using an ancient XML file. "
240               "Since SimGrid 3.1, units are Bytes, Flops, and seconds "
241               "instead of MBytes, MFlops and seconds. "
242               "A script (surfxml_update.pl) to help you convert your old "
243               "platform files "
244               "is available in the contrib/platform_generation directory "
245               "of the simgrid repository. Please check also out the "
246               "SURF section of the ChangeLog for the 3.1 version. "
247               "Last, do not forget to also update your values for "
248               "the calls to MSG_task_create (if any).");
249   xbt_assert0((version >= 2.0), "******* BIG FAT WARNING *********\n "
250               "You're using an old XML file. "
251               "A script (surfxml_update.pl) to help you convert your old "
252               "platform files "
253               "is available in the contrib/platform_generation directory "
254               "of the simgrid repository.");
255
256   surfxml_call_cb_functions(STag_surfxml_platform_cb_list);
257
258 }
259
260 void ETag_surfxml_platform(void)
261 {
262   convert_route_multi_to_routes();
263
264   surfxml_call_cb_functions(ETag_surfxml_platform_cb_list);
265
266   xbt_dict_free(&random_data_list);
267 }
268
269 void STag_surfxml_host(void)
270 {
271   surfxml_call_cb_functions(STag_surfxml_host_cb_list);
272
273 }
274
275 void ETag_surfxml_host(void)
276 {
277   surfxml_call_cb_functions(ETag_surfxml_host_cb_list);
278 }
279
280 void STag_surfxml_router(void)
281 {
282   surfxml_call_cb_functions(STag_surfxml_router_cb_list);
283 }
284
285 void ETag_surfxml_router(void)
286 {
287   surfxml_call_cb_functions(ETag_surfxml_router_cb_list);
288 }
289
290 void STag_surfxml_link(void)
291 {
292   surfxml_call_cb_functions(STag_surfxml_link_cb_list);
293 }
294
295 void ETag_surfxml_link(void)
296 {
297   surfxml_call_cb_functions(ETag_surfxml_link_cb_list);
298 }
299
300 void STag_surfxml_route(void)
301 {
302   surfxml_call_cb_functions(STag_surfxml_route_cb_list);
303 }
304
305 void ETag_surfxml_route(void)
306 {
307   surfxml_call_cb_functions(ETag_surfxml_route_cb_list);
308 }
309
310 void STag_surfxml_link_c_ctn(void)
311 {
312   surfxml_call_cb_functions(STag_surfxml_link_c_ctn_cb_list);
313 }
314
315 void ETag_surfxml_link_c_ctn(void)
316 {
317   surfxml_call_cb_functions(ETag_surfxml_link_c_ctn_cb_list);
318 }
319
320 void STag_surfxml_process(void)
321 {
322   surfxml_call_cb_functions(STag_surfxml_process_cb_list);
323 }
324
325 void ETag_surfxml_process(void)
326 {
327   surfxml_call_cb_functions(ETag_surfxml_process_cb_list);
328 }
329
330 void STag_surfxml_argument(void)
331 {
332   surfxml_call_cb_functions(STag_surfxml_argument_cb_list);
333 }
334
335 void ETag_surfxml_argument(void)
336 {
337   surfxml_call_cb_functions(ETag_surfxml_argument_cb_list);
338 }
339
340 void STag_surfxml_prop(void)
341 {
342   surfxml_call_cb_functions(STag_surfxml_prop_cb_list);
343 }
344
345 void ETag_surfxml_prop(void)
346 {
347   surfxml_call_cb_functions(ETag_surfxml_prop_cb_list);
348 }
349
350 void STag_surfxml_set(void)
351 {
352   surfxml_call_cb_functions(STag_surfxml_set_cb_list);
353 }
354
355 void ETag_surfxml_set(void)
356 {
357   surfxml_call_cb_functions(ETag_surfxml_set_cb_list);
358 }
359
360 void STag_surfxml_foreach(void)
361 {
362   /* Save the current buffer */
363   surfxml_bufferstack_push(0);
364   surfxml_call_cb_functions(STag_surfxml_foreach_cb_list);
365 }
366
367 void ETag_surfxml_foreach(void)
368 {
369   surfxml_call_cb_functions(ETag_surfxml_foreach_cb_list);
370
371   /* free the temporary dynar and restore original */
372   xbt_dynar_free(&STag_surfxml_host_cb_list);
373   STag_surfxml_host_cb_list = main_STag_surfxml_host_cb_list;
374
375   /* free the temporary dynar and restore original */
376   xbt_dynar_free(&STag_surfxml_link_cb_list);
377   STag_surfxml_link_cb_list = main_STag_surfxml_link_cb_list;
378 }
379
380 void STag_surfxml_route_c_multi(void)
381 {
382   surfxml_call_cb_functions(STag_surfxml_route_c_multi_cb_list);
383 }
384
385 void ETag_surfxml_route_c_multi(void)
386 {
387   surfxml_call_cb_functions(ETag_surfxml_route_c_multi_cb_list);
388 }
389
390 void STag_surfxml_cluster(void)
391 {
392   surfxml_call_cb_functions(STag_surfxml_cluster_cb_list);
393 }
394
395 void ETag_surfxml_cluster(void)
396 {
397   surfxml_call_cb_functions(ETag_surfxml_cluster_cb_list);
398 }
399
400 void STag_surfxml_trace(void)
401 {
402   surfxml_call_cb_functions(STag_surfxml_trace_cb_list);
403 }
404
405 void ETag_surfxml_trace(void)
406 {
407   surfxml_call_cb_functions(ETag_surfxml_trace_cb_list);
408 }
409
410 void STag_surfxml_trace_c_connect(void)
411 {
412   surfxml_call_cb_functions(STag_surfxml_trace_c_connect_cb_list);
413 }
414
415 void ETag_surfxml_trace_c_connect(void)
416 {
417   surfxml_call_cb_functions(ETag_surfxml_trace_c_connect_cb_list);
418 }
419
420 void STag_surfxml_random(void)
421 {
422   surfxml_call_cb_functions(STag_surfxml_random_cb_list);
423 }
424
425 void ETag_surfxml_random(void)
426 {
427   surfxml_call_cb_functions(ETag_surfxml_random_cb_list);
428 }
429
430 void surf_parse_open(const char *file)
431 {
432   static int warned = 0;        /* warn only once */
433   if (!file) {
434     if (!warned) {
435       WARN0
436         ("Bypassing the XML parser since surf_parse_open received a NULL pointer. If it is not what you want, go fix your code.");
437       warned = 1;
438     }
439     return;
440   }
441   surf_file_to_parse = surf_fopen(file, "r");
442   xbt_assert1((surf_file_to_parse), "Unable to open \"%s\"\n", file);
443
444   if (!surf_input_buffer_stack)
445     surf_input_buffer_stack = xbt_dynar_new(sizeof(YY_BUFFER_STATE), NULL);
446   if (!surf_file_to_parse_stack)
447     surf_file_to_parse_stack = xbt_dynar_new(sizeof(FILE *), NULL);
448
449   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, 10);
450   surf_parse__switch_to_buffer(surf_input_buffer);
451   surf_parse_lineno = 1;
452 }
453
454 void surf_parse_close(void)
455 {
456   if (surf_input_buffer_stack)
457     xbt_dynar_free(&surf_input_buffer_stack);
458   if (surf_file_to_parse_stack)
459     xbt_dynar_free(&surf_file_to_parse_stack);
460
461   if (surf_file_to_parse) {
462     surf_parse__delete_buffer(surf_input_buffer);
463     fclose(surf_file_to_parse);
464   }
465 }
466
467
468 static int _surf_parse(void)
469 {
470   return surf_parse_lex();
471 }
472
473 int_f_void_t surf_parse = _surf_parse;
474
475 void surf_parse_error(char *msg)
476 {
477   fprintf(stderr, "Parse error on line %d: %s\n", surf_parse_lineno, msg);
478   abort();
479 }
480
481
482 void surf_parse_get_double(double *value, const char *string)
483 {
484   int ret = 0;
485
486   ret = sscanf(string, "%lg", value);
487   if (ret != 1)
488     surf_parse_error(bprintf("%s is not a double", string));
489 }
490
491 void surf_parse_get_int(int *value, const char *string)
492 {
493   int ret = 0;
494
495   ret = sscanf(string, "%d", value);
496   if (ret != 1)
497     surf_parse_error(bprintf("%s is not an integer", string));
498 }
499
500 void parse_properties(void)
501 {
502   char *value = NULL;
503
504   if (!current_property_set)
505     current_property_set = xbt_dict_new();
506
507   value = xbt_strdup(A_surfxml_prop_value);
508   xbt_dict_set(current_property_set, A_surfxml_prop_id, value, free);
509 }
510
511 void surfxml_add_callback(xbt_dynar_t cb_list, void_f_void_t function)
512 {
513   xbt_dynar_push(cb_list, &function);
514 }
515
516 static XBT_INLINE void surfxml_call_cb_functions(xbt_dynar_t cb_list)
517 {
518   unsigned int iterator;
519   void_f_void_t fun;
520   xbt_dynar_foreach(cb_list, iterator, fun) {
521     (*fun) ();
522   }
523 }
524
525 static void parse_route_set_endpoints(void)
526 {
527   route_link_list = xbt_dynar_new(sizeof(char *), NULL);
528 }
529
530 static void init_data(void)
531 {
532   xbt_dict_free(&route_table);
533   xbt_dynar_free(&route_link_list);
534   route_table = xbt_dict_new();
535
536   if (!surfxml_bufferstack_stack)
537     surfxml_bufferstack_stack = xbt_dynar_new(sizeof(char *), NULL);
538   route_multi_table = xbt_dict_new();
539   route_multi_elements = xbt_dynar_new(sizeof(char *), NULL);
540   traces_set_list = xbt_dict_new();
541   if (set_list == NULL)
542     set_list = xbt_dict_new();
543
544   trace_connect_list_host_avail = xbt_dict_new();
545   trace_connect_list_power = xbt_dict_new();
546   trace_connect_list_link_avail = xbt_dict_new();
547   trace_connect_list_bandwidth = xbt_dict_new();
548   trace_connect_list_latency = xbt_dict_new();
549
550   random_data_list = xbt_dict_new();
551   surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties);
552   surfxml_add_callback(ETag_surfxml_link_c_ctn_cb_list, &parse_route_elem);
553   surfxml_add_callback(STag_surfxml_route_cb_list,
554                        &parse_route_set_endpoints);
555   surfxml_add_callback(STag_surfxml_set_cb_list, &parse_sets);
556   surfxml_add_callback(STag_surfxml_route_c_multi_cb_list,
557                        &parse_Stag_route_multi);
558   surfxml_add_callback(ETag_surfxml_route_c_multi_cb_list,
559                        &parse_Etag_route_multi);
560   surfxml_add_callback(STag_surfxml_foreach_cb_list, &parse_Stag_foreach);
561   surfxml_add_callback(STag_surfxml_trace_cb_list, &parse_Stag_trace);
562   surfxml_add_callback(ETag_surfxml_trace_cb_list, &parse_Etag_trace);
563   surfxml_add_callback(STag_surfxml_trace_c_connect_cb_list,
564                        &parse_Stag_trace_c_connect);
565   surfxml_add_callback(STag_surfxml_random_cb_list, &init_randomness);
566   surfxml_add_callback(ETag_surfxml_random_cb_list, &add_randomness);
567 }
568
569 static void free_data(void)
570 {
571   char *key, *data;
572   xbt_dict_cursor_t cursor = NULL;
573   char *name;
574   unsigned int cpt = 0;
575
576   xbt_dict_foreach(route_table, cursor, key, data) {
577     xbt_dynar_t links = (xbt_dynar_t) data;
578     char *name;
579     unsigned int cpt = 0;
580
581     xbt_dynar_foreach(links, cpt, name) free(name);
582     xbt_dynar_free(&links);
583   }
584   xbt_dict_free(&route_table);
585   route_link_list = NULL;
586
587   xbt_dict_free(&route_multi_table);
588
589   xbt_dynar_foreach(route_multi_elements, cpt, name) free(name);
590   xbt_dynar_free(&route_multi_elements);
591
592   xbt_dict_foreach(set_list, cursor, key, data) {
593     xbt_dynar_t set = (xbt_dynar_t) data;
594
595     xbt_dynar_foreach(set, cpt, name) free(name);
596     xbt_dynar_free(&set);
597   }
598   xbt_dict_free(&set_list);
599
600   xbt_dynar_free(&surfxml_bufferstack_stack);
601
602   xbt_dict_free(&traces_set_list);
603   xbt_dict_free(&trace_connect_list_host_avail);
604   xbt_dict_free(&trace_connect_list_power);
605   xbt_dict_free(&trace_connect_list_link_avail);
606   xbt_dict_free(&trace_connect_list_bandwidth);
607   xbt_dict_free(&trace_connect_list_latency);
608   xbt_dict_free(&traces_set_list);
609 }
610
611 void parse_platform_file(const char *file)
612 {
613   int parse_status;
614   surf_parse_open(file);
615   init_data();
616   parse_status = surf_parse();
617   free_data();
618   surf_parse_close();
619   if (parse_status)
620     xbt_dict_free(&random_data_list);
621   xbt_assert1(!parse_status, "Parse error in %s", file);
622 }
623
624 /* Functions to bypass route tag. Used by the route:multi tag */
625
626 static void parse_make_temporary_route(const char *src, const char *dst,
627                                        int action)
628 {
629   int AX_ptr = 0;
630
631   A_surfxml_route_action = action;
632   SURFXML_BUFFER_SET(route_src, src);
633   SURFXML_BUFFER_SET(route_dst, dst);
634 }
635
636 /* Functions for the sets and foreach tags */
637
638 static void parse_sets(void)
639 {
640   char *id, *suffix, *prefix, *radical;
641   int start, end;
642   xbt_dynar_t radical_elements;
643   xbt_dynar_t radical_ends;
644   xbt_dynar_t current_set;
645   char *value, *groups;
646   int i;
647   unsigned int iter;
648
649   id = xbt_strdup(A_surfxml_set_id);
650   prefix = xbt_strdup(A_surfxml_set_prefix);
651   suffix = xbt_strdup(A_surfxml_set_suffix);
652   radical = xbt_strdup(A_surfxml_set_radical);
653
654   if (xbt_dict_get_or_null(set_list, id))
655     surf_parse_error(bprintf
656                      ("Set '%s' declared several times in the platform file.",
657                       id));
658
659   current_set = xbt_dynar_new(sizeof(char *), NULL);
660
661   radical_elements = xbt_str_split(radical, ",");
662   xbt_dynar_foreach(radical_elements, iter, groups) {
663
664     radical_ends = xbt_str_split(groups, "-");
665     switch (xbt_dynar_length(radical_ends)) {
666     case 1:
667       surf_parse_get_int(&start, xbt_dynar_get_as(radical_ends, 0, char *));
668       value = bprintf("%s%d%s", prefix, start, suffix);
669       xbt_dynar_push(current_set, &value);
670       break;
671
672     case 2:
673
674       surf_parse_get_int(&start, xbt_dynar_get_as(radical_ends, 0, char *));
675       surf_parse_get_int(&end, xbt_dynar_get_as(radical_ends, 1, char *));
676
677
678       for (i = start; i <= end; i++) {
679         value = bprintf("%s%d%s", prefix, i, suffix);
680         xbt_dynar_push(current_set, &value);
681       }
682       break;
683
684     default:
685       surf_parse_error(xbt_strdup("Malformed radical"));
686     }
687
688     xbt_dynar_free(&radical_ends);
689   }
690
691   xbt_dict_set(set_list, id, current_set, NULL);
692
693   xbt_dynar_free(&radical_elements);
694   free(radical);
695   free(suffix);
696   free(prefix);
697   free(id);
698 }
699
700 static void parse_host_foreach(void){
701
702   xbt_dynar_t names = NULL;
703   unsigned int cpt = 0;
704   char *name;
705   xbt_dict_cursor_t cursor = NULL;
706   char *key, *data;
707
708   const char *surfxml_host_power = A_surfxml_host_power;
709   const char *surfxml_host_availability = A_surfxml_host_availability;
710   const char *surfxml_host_availability_file = A_surfxml_host_availability_file;
711   const char *surfxml_host_state_file = A_surfxml_host_state_file;
712
713
714   xbt_dict_t cluster_host_props = current_property_set;
715
716   names = xbt_dict_get_or_null(set_list, foreach_set_name);
717   if (!names)
718     surf_parse_error(bprintf("Set name '%s' used in <foreach> not found.",
719                              foreach_set_name));
720   if (strcmp(A_surfxml_host_id, "$1"))
721     surf_parse_error(bprintf
722                      ("The host id within <foreach> should point to the foreach set_id (use $1 instead of %s)",
723                       A_surfxml_host_id));
724
725
726   /* foreach name in set call the main host callback */
727   xbt_dynar_foreach(names, cpt, name) {
728     int AX_ptr = 0; /* needed by the SURFXML_BUFFER_SET macro */
729
730     surfxml_bufferstack_push(1);
731
732     SURFXML_BUFFER_SET(host_id, name);
733     SURFXML_BUFFER_SET(host_power, surfxml_host_power /*hostPower */ );
734     SURFXML_BUFFER_SET(host_availability, surfxml_host_availability);
735     SURFXML_BUFFER_SET(host_availability_file, surfxml_host_availability_file);
736     SURFXML_BUFFER_SET(host_state_file, surfxml_host_state_file);
737
738     surfxml_call_cb_functions(main_STag_surfxml_host_cb_list);
739
740     xbt_dict_foreach(cluster_host_props, cursor, key, data) {
741       xbt_dict_set(current_property_set, xbt_strdup(key), xbt_strdup(data),
742                    free);
743     }
744
745     /* Call the (unmodified) callbacks of </host>, if any */
746     surfxml_call_cb_functions(ETag_surfxml_host_cb_list);
747     surfxml_bufferstack_pop(1);
748   }
749
750   current_property_set = xbt_dict_new();
751
752   surfxml_bufferstack_pop(0);
753 }
754
755 static void parse_link_foreach(void) {
756   const char *surfxml_link_bandwidth = A_surfxml_link_bandwidth;
757   const char *surfxml_link_bandwidth_file = A_surfxml_link_bandwidth_file;
758   const char *surfxml_link_latency = A_surfxml_link_latency;
759   const char *surfxml_link_latency_file = A_surfxml_link_latency_file;
760   const char *surfxml_link_state_file = A_surfxml_link_state_file;
761
762   xbt_dynar_t names = NULL;
763   unsigned int cpt = 0;
764   char *name;
765   xbt_dict_cursor_t cursor = NULL;
766   char *key, *data;
767
768   xbt_dict_t cluster_link_props = current_property_set;
769
770   names = xbt_dict_get_or_null(set_list, foreach_set_name);
771   if (!names)
772     surf_parse_error(bprintf("Set name '%s' used in <foreach> not found.",
773                              foreach_set_name));
774   if (strcmp(A_surfxml_link_id, "$1"))
775     surf_parse_error(bprintf
776                      ("The host id within <foreach> should point to the foreach set_id (use $1 instead of %s)",
777                       A_surfxml_link_id));
778
779   /* for each name in set call the main link callback */
780   xbt_dynar_foreach(names, cpt, name) {
781     int AX_ptr = 0; /* needed by the SURFXML_BUFFER_SET */
782
783     surfxml_bufferstack_push(1);
784
785     SURFXML_BUFFER_SET(link_id, name);
786     SURFXML_BUFFER_SET(link_bandwidth, surfxml_link_bandwidth);
787     SURFXML_BUFFER_SET(link_bandwidth_file, surfxml_link_bandwidth_file);
788     SURFXML_BUFFER_SET(link_latency, surfxml_link_latency);
789     SURFXML_BUFFER_SET(link_latency_file, surfxml_link_latency_file);
790     SURFXML_BUFFER_SET(link_state_file, surfxml_link_state_file);
791
792     surfxml_call_cb_functions(main_STag_surfxml_link_cb_list);
793
794     xbt_dict_foreach(cluster_link_props, cursor, key, data) {
795       xbt_dict_set(current_property_set, xbt_strdup(key), xbt_strdup(data),
796                    free);
797     }
798
799     /* Call the (unmodified) callbacks of </link>, if any */
800     surfxml_call_cb_functions(ETag_surfxml_link_cb_list);
801     surfxml_bufferstack_pop(1);
802   }
803
804   current_property_set = xbt_dict_new();
805
806   surfxml_bufferstack_pop(0);
807   free(foreach_set_name);
808   foreach_set_name = NULL;
809 }
810
811 static void parse_Stag_foreach(void)
812 {
813   /* save the host & link callbacks */
814   main_STag_surfxml_host_cb_list = STag_surfxml_host_cb_list;
815   main_STag_surfxml_link_cb_list = STag_surfxml_link_cb_list;
816
817   /* redefine host & link callbacks to be used only by the foreach tag */
818   STag_surfxml_host_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
819   STag_surfxml_link_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
820
821   surfxml_add_callback(STag_surfxml_host_cb_list, &parse_host_foreach);
822   surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_foreach);
823
824   /* get set name */
825   foreach_set_name = xbt_strdup(A_surfxml_foreach_set_id);
826 }
827
828 /* Route:multi functions */
829
830 static int route_multi_size = 0;
831 static char *src_name, *dst_name;
832 static int is_symmetric_route;
833
834 static void parse_route_elem(void)
835 {
836   char *val;
837
838   val = xbt_strdup(A_surfxml_link_c_ctn_id);
839
840   xbt_dynar_push(route_link_list, &val);
841   //INFO2("Push %s (size now:%ld)",val,xbt_dynar_length(route_link_list));
842 }
843
844 static void parse_Stag_route_multi(void)
845 {
846   src_name = xbt_strdup(A_surfxml_route_c_multi_src);
847   dst_name = xbt_strdup(A_surfxml_route_c_multi_dst);
848   route_action = A_surfxml_route_c_multi_action;
849   is_symmetric_route = A_surfxml_route_c_multi_symmetric;
850   route_multi_size++;
851
852   route_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
853 }
854
855 /*
856    This function is used to append or override the contents of an already existing route in the case a new one with its name is found.
857    The decision is based upon the value of action specified in the xml route:multi attribute action
858  */
859 void manage_route(xbt_dict_t routing_table, const char *route_name,
860                   int action, int isMultiRoute)
861 {
862   unsigned int cpt;
863   xbt_dynar_t links;
864   char *value;
865
866   /* get already existing list if it exists */
867   links = xbt_dict_get_or_null(routing_table, route_name);
868   DEBUG3("ROUTE: %s (action:%s; len:%ld)", route_name,
869       (action==A_surfxml_route_action_OVERRIDE?"override":(
870           action==A_surfxml_route_action_PREPEND?"prepend":"postpend")),
871        (links?xbt_dynar_length(links):0));
872
873   if (links != NULL) {
874     switch (action) {
875     case A_surfxml_route_action_PREPEND:       /* add existing links at the end; route_link_list + links */
876       xbt_dynar_foreach(links, cpt, value) {
877         xbt_dynar_push(route_link_list, &value);
878       }
879       xbt_dynar_free(&links);
880       break;
881     case A_surfxml_route_action_POSTPEND:      /* add existing links in front; links + route_link_list */
882       xbt_dynar_foreach(route_link_list, cpt, value) {
883         xbt_dynar_push(links, &value);
884       }
885       xbt_dynar_free(&route_link_list);
886       route_link_list = links;
887       break;
888     case A_surfxml_route_action_OVERRIDE:
889       xbt_dynar_free(&links);
890       break;
891     default:
892       xbt_die(bprintf("While dealing with routes of %s, got action=%d. Please report this bug.",
893           route_name,action));
894       break;
895     }
896   }
897   /* this is the final route; do not add if name is a set; add only if name is in set list */
898   if (!isMultiRoute) {
899     xbt_dict_set(routing_table, route_name, route_link_list, NULL);
900   }
901 }
902
903 static void parse_Etag_route_multi(void)
904 {
905   char *route_name;
906
907   route_name =
908     bprintf("%s#%s#%d#%d#%d", src_name, dst_name, route_action,
909             is_symmetric_route, route_multi_size);
910
911   xbt_dynar_push(route_multi_elements, &route_name);
912
913   /* Add route */
914   xbt_dict_set(route_multi_table, route_name, route_link_list, NULL);
915   /* add symmetric if it is the case */
916   if (is_symmetric_route == 1) {
917     char *symmetric_name =
918       bprintf("%s#%s#%d#%d#%d", dst_name, src_name, route_action,
919               !is_symmetric_route, route_multi_size);
920
921     xbt_dict_set(route_multi_table, symmetric_name, route_link_list, NULL);
922     xbt_dynar_push(route_multi_elements, &symmetric_name);
923     is_symmetric_route = 0;
924   }
925   free(src_name);
926   free(dst_name);
927 }
928
929 static void add_multi_links(const char *src, const char *dst,
930                             xbt_dynar_t links, const char *src_name,
931                             const char *dst_name)
932 {
933   unsigned int cpt;
934   char *value, *val;
935
936   surfxml_bufferstack_push(1);
937
938   parse_make_temporary_route(src_name, dst_name, route_action);
939   surfxml_call_cb_functions(STag_surfxml_route_cb_list);
940   DEBUG2("\tADDING ROUTE: %s -> %s", src_name, dst_name);
941   /* Build link list */
942   xbt_dynar_foreach(links, cpt, value) {
943     if (strcmp(value, src) == 0)
944       val = xbt_strdup(src_name);
945     else if (strcmp(value, dst) == 0)
946       val = xbt_strdup(dst_name);
947     else if (strcmp(value, "$dst") == 0)
948       val = xbt_strdup(dst_name);
949     else if (strcmp(value, "$src") == 0)
950       val = xbt_strdup(src_name);
951     else
952       val = xbt_strdup(value);
953     DEBUG1("\t\tELEMENT: %s", val);
954     xbt_dynar_push(route_link_list, &val);
955   }
956   surfxml_call_cb_functions(ETag_surfxml_route_cb_list);
957   surfxml_bufferstack_pop(1);
958 }
959
960 static void convert_route_multi_to_routes(void)
961 {
962   xbt_dict_cursor_t cursor_w;
963   int symmetric;
964   unsigned int cpt, cpt2, cursor;
965   char *src_host_name, *dst_host_name, *key, *src, *dst, *val, *key_w,
966     *data_w;
967   const char *sep = "#";
968   xbt_dict_t set = NULL;
969   xbt_dynar_t src_names = NULL, dst_names = NULL, links;
970
971   if (!route_multi_elements)
972     return;
973
974   if (surf_cpu_model)
975     set = surf_model_resource_set(surf_cpu_model);
976   if (surf_workstation_model != NULL &&
977       surf_model_resource_set(surf_workstation_model) != NULL &&
978       xbt_dict_length(surf_model_resource_set(surf_workstation_model)) > 0)
979     set = surf_model_resource_set(surf_workstation_model);
980
981
982   surfxml_bufferstack_push(0);
983   /* Get all routes in the exact order they were entered in the platform file */
984   xbt_dynar_foreach(route_multi_elements, cursor, key) {
985     /* Get links for the route */
986     links = (xbt_dynar_t) xbt_dict_get_or_null(route_multi_table, key);
987     keys = xbt_str_split_str(key, sep);
988     /* Get route ends */
989     src = xbt_dynar_get_as(keys, 0, char *);
990     dst = xbt_dynar_get_as(keys, 1, char *);
991     route_action = atoi(xbt_dynar_get_as(keys, 2, char *));
992     symmetric = atoi(xbt_dynar_get_as(keys, 3, char *));
993
994     /* Create the dynar of src and dst hosts for the new routes */
995     /* NOTE: src and dst can be either set names or simple host names */
996     src_names = (xbt_dynar_t) xbt_dict_get_or_null(set_list, src);
997     dst_names = (xbt_dynar_t) xbt_dict_get_or_null(set_list, dst);
998     /* Add to dynar even if they are simple names */
999     if (src_names == NULL) {
1000       src_names = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1001       val = xbt_strdup(src);
1002       xbt_dynar_push(src_names, &val);
1003       if (strcmp(val, "$*") != 0 && NULL == xbt_dict_get_or_null(set, val))
1004         THROW3(unknown_error, 0,
1005                "(In route:multi (%s -> %s) source %s does not exist (not a set or a host)",
1006                src, dst, src);
1007     }
1008     if (dst_names == NULL) {
1009       dst_names = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
1010       val = xbt_strdup(dst);
1011       if (strcmp(val, "$*") != 0 && NULL == xbt_dict_get_or_null(set, val))
1012         THROW3(unknown_error, 0,
1013                "(In route:multi (%s -> %s) destination %s does not exist (not a set or a host)",
1014                src, dst, dst);
1015       xbt_dynar_push(dst_names, &val);
1016     }
1017
1018     /* Build the routes */
1019     DEBUG2("ADDING MULTI ROUTE: %s -> %s", xbt_dynar_get_as(keys, 0, char *),
1020            xbt_dynar_get_as(keys, 1, char *));
1021     xbt_dynar_foreach(src_names, cpt, src_host_name) {
1022       xbt_dynar_foreach(dst_names, cpt2, dst_host_name) {
1023         /* If dst is $* then set this route to have its dst point to all hosts */
1024         if (strcmp(src_host_name, "$*") != 0
1025             && strcmp(dst_host_name, "$*") == 0) {
1026           xbt_dict_foreach(set, cursor_w, key_w, data_w) {
1027             //int n = xbt_dynar_member(src_names, (char*)key_w);
1028             add_multi_links(src, dst, links, src_host_name, key_w);
1029           }
1030         }
1031         /* If src is $* then set this route to have its dst point to all hosts */
1032         if (strcmp(src_host_name, "$*") == 0
1033             && strcmp(dst_host_name, "$*") != 0) {
1034           xbt_dict_foreach(set, cursor_w, key_w, data_w) {
1035             // if (!symmetric || (symmetric && !contains(dst_names, key_w)))
1036             add_multi_links(src, dst, links, key_w, dst_host_name);
1037           }
1038         }
1039         /* if none of them are equal to $* */
1040         if (strcmp(src_host_name, "$*") != 0
1041             && strcmp(dst_host_name, "$*") != 0) {
1042           add_multi_links(src, dst, links, src_host_name, dst_host_name);
1043         }
1044       }
1045     }
1046     xbt_dynar_free(&keys);
1047   }
1048   surfxml_bufferstack_pop(0);
1049 }
1050
1051
1052 /* Trace management functions */
1053
1054 static double trace_periodicity = -1.0;
1055 static char *trace_file = NULL;
1056 static char *trace_id;
1057
1058 static void parse_Stag_trace(void)
1059 {
1060   trace_id = strdup(A_surfxml_trace_id);
1061   trace_file = strdup(A_surfxml_trace_file);
1062   surf_parse_get_double(&trace_periodicity, A_surfxml_trace_periodicity);
1063 }
1064
1065 static void parse_Etag_trace(void)
1066 {
1067   tmgr_trace_t trace;
1068   if (!trace_file || strcmp(trace_file, "") != 0) {
1069     trace = tmgr_trace_new(trace_file);
1070   } else {
1071     if (strcmp(surfxml_pcdata, "") == 0)
1072       trace = NULL;
1073     else
1074       trace =
1075         tmgr_trace_new_from_string(trace_id, surfxml_pcdata,
1076                                    trace_periodicity);
1077   }
1078   xbt_dict_set(traces_set_list, trace_id, (void *) trace, NULL);
1079 }
1080
1081 static void parse_Stag_trace_c_connect(void)
1082 {
1083   xbt_assert2(xbt_dict_get_or_null
1084               (traces_set_list, A_surfxml_trace_c_connect_trace),
1085               "Cannot connect trace %s to %s: trace unknown",
1086               A_surfxml_trace_c_connect_trace,
1087               A_surfxml_trace_c_connect_element);
1088
1089   switch (A_surfxml_trace_c_connect_kind) {
1090   case A_surfxml_trace_c_connect_kind_HOST_AVAIL:
1091     xbt_dict_set(trace_connect_list_host_avail,
1092                  A_surfxml_trace_c_connect_trace,
1093                  xbt_strdup(A_surfxml_trace_c_connect_element), free);
1094     break;
1095   case A_surfxml_trace_c_connect_kind_POWER:
1096     xbt_dict_set(trace_connect_list_power, A_surfxml_trace_c_connect_trace,
1097                  xbt_strdup(A_surfxml_trace_c_connect_element), free);
1098     break;
1099   case A_surfxml_trace_c_connect_kind_LINK_AVAIL:
1100     xbt_dict_set(trace_connect_list_link_avail,
1101                  A_surfxml_trace_c_connect_trace,
1102                  xbt_strdup(A_surfxml_trace_c_connect_element), free);
1103     break;
1104   case A_surfxml_trace_c_connect_kind_BANDWIDTH:
1105     xbt_dict_set(trace_connect_list_bandwidth,
1106                  A_surfxml_trace_c_connect_trace,
1107                  xbt_strdup(A_surfxml_trace_c_connect_element), free);
1108     break;
1109   case A_surfxml_trace_c_connect_kind_LATENCY:
1110     xbt_dict_set(trace_connect_list_latency, A_surfxml_trace_c_connect_trace,
1111                  xbt_strdup(A_surfxml_trace_c_connect_element), free);
1112     break;
1113   default:
1114     xbt_die(bprintf("Cannot connect trace %s to %s: kind of trace unknown",
1115                     A_surfxml_trace_c_connect_trace,
1116                     A_surfxml_trace_c_connect_element));
1117   }
1118 }
1119
1120 /* Random tag functions */
1121
1122 double get_cpu_power(const char *power)
1123 {
1124   double power_scale = 0.0;
1125   const char *p, *q;
1126   char *generator;
1127   random_data_t random = NULL;
1128   /* randomness is inserted like this: power="$rand(my_random)" */
1129   if (((p = strstr(power, "$rand(")) != NULL)
1130       && ((q = strstr(power, ")")) != NULL)) {
1131     if (p < q) {
1132       generator = xbt_malloc(q - (p + 6) + 1);
1133       memcpy(generator, p + 6, q - (p + 6));
1134       generator[q - (p + 6)] = '\0';
1135       xbt_assert1((random =
1136                    xbt_dict_get_or_null(random_data_list, generator)),
1137                   "Random generator %s undefined", generator);
1138       power_scale = random_generate(random);
1139     }
1140   } else {
1141     surf_parse_get_double(&power_scale, power);
1142   }
1143   return power_scale;
1144 }
1145
1146 double random_min, random_max, random_mean, random_std_deviation,
1147   random_generator;
1148 char *random_id;
1149
1150 static void init_randomness(void)
1151 {
1152   random_id = A_surfxml_random_id;
1153   surf_parse_get_double(&random_min, A_surfxml_random_min);
1154   surf_parse_get_double(&random_max, A_surfxml_random_max);
1155   surf_parse_get_double(&random_mean, A_surfxml_random_mean);
1156   surf_parse_get_double(&random_std_deviation,
1157                         A_surfxml_random_std_deviation);
1158   random_generator = A_surfxml_random_generator;
1159 }
1160
1161 static void add_randomness(void)
1162 {
1163   /* If needed aditional properties can be added by using the prop tag */
1164   random_data_t random =
1165     random_new(random_generator, 0, random_min, random_max, random_mean,
1166                random_std_deviation);
1167   xbt_dict_set(random_data_list, random_id, (void *) random, NULL);
1168 }
1169