Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
It looks more coherent like this.
[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 <stdarg.h> /* va_arg */
8
9 #include "xbt/misc.h"
10 #include "xbt/log.h"
11 #include "xbt/str.h"
12 #include "xbt/dict.h"
13 #include "surf/surfxml_parse.h"
14 #include "surf/surf_private.h"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_parse, surf,
17                                 "Logging specific to the SURF parsing module");
18 #undef CLEANUP
19 int ETag_surfxml_include_state(void);
20
21 #include "simgrid_dtd.c"
22
23 char* surf_parsed_filename = NULL; // to locate parse error messages
24
25 /*
26  * Helping functions
27  */
28 void surf_parse_error(const char *fmt, ...) {
29         va_list va;
30         va_start(va,fmt);
31         char *msg = bvprintf(fmt,va);
32         va_end(va);
33         xbt_die("Parse error at %s:%d: %s", surf_parsed_filename, surf_parse_lineno, msg);
34 }
35 void surf_parse_warn(const char *fmt, ...) {
36         va_list va;
37         va_start(va,fmt);
38         char *msg = bvprintf(fmt,va);
39         va_end(va);
40     XBT_WARN("%s:%d: %s", surf_parsed_filename, surf_parse_lineno, msg);
41     free(msg);
42 }
43
44 double surf_parse_get_double(const char *string) {
45   double res;
46   int ret = sscanf(string, "%lg", &res);
47   if (ret != 1)
48     surf_parse_error("%s is not a double", string);
49   return res;
50 }
51
52 int surf_parse_get_int(const char *string) {
53   int res;
54   int ret = sscanf(string, "%d", &res);
55   if (ret != 1)
56     surf_parse_error("%s is not an integer", string);
57   return res;
58 }
59
60
61 /*
62  * All the callback lists that can be overiden anywhere.
63  * (this list should probably be reduced to the bare minimum to allow the models to work)
64  */
65
66 /* make sure these symbols are defined as strong ones in this file so that the linker can resolve them */
67 xbt_dynar_t STag_surfxml_route_cb_list = NULL;
68 xbt_dynar_t ETag_surfxml_route_cb_list = NULL;
69 xbt_dynar_t STag_surfxml_link_ctn_cb_list = NULL;
70 xbt_dynar_t ETag_surfxml_link_ctn_cb_list = NULL;
71 xbt_dynar_t STag_surfxml_process_cb_list = NULL;
72 xbt_dynar_t ETag_surfxml_process_cb_list = NULL;
73 xbt_dynar_t STag_surfxml_argument_cb_list = NULL;
74 xbt_dynar_t ETag_surfxml_argument_cb_list = NULL;
75 xbt_dynar_t STag_surfxml_prop_cb_list = NULL;
76 xbt_dynar_t ETag_surfxml_prop_cb_list = NULL;
77 xbt_dynar_t STag_surfxml_peer_cb_list = NULL;
78 xbt_dynar_t ETag_surfxml_peer_cb_list = NULL;
79 xbt_dynar_t STag_surfxml_trace_cb_list = NULL;
80 xbt_dynar_t ETag_surfxml_trace_cb_list = NULL;
81 xbt_dynar_t STag_surfxml_trace_connect_cb_list = NULL;
82 xbt_dynar_t ETag_surfxml_trace_connect_cb_list = NULL;
83 xbt_dynar_t STag_surfxml_random_cb_list = NULL;
84 xbt_dynar_t ETag_surfxml_random_cb_list = NULL;
85 xbt_dynar_t STag_surfxml_ASroute_cb_list = NULL;
86 xbt_dynar_t ETag_surfxml_ASroute_cb_list = NULL;
87 xbt_dynar_t STag_surfxml_bypassRoute_cb_list = NULL;
88 xbt_dynar_t ETag_surfxml_bypassRoute_cb_list = NULL;
89 xbt_dynar_t STag_surfxml_include_cb_list = NULL;
90 xbt_dynar_t ETag_surfxml_include_cb_list = NULL;
91
92 /* The default current property receiver. Setup in the corresponding opening callbacks. */
93 xbt_dict_t current_property_set = NULL;
94 /* dictionary of random generator data */
95 xbt_dict_t random_data_list = NULL;
96
97 /* Call all the callbacks of a specific SAX event */
98 static XBT_INLINE void surfxml_call_cb_functions(xbt_dynar_t);
99
100 YY_BUFFER_STATE surf_input_buffer;
101 FILE *surf_file_to_parse = NULL;
102
103 static void init_randomness(void);
104 static void add_randomness(void);
105
106 /*
107  * Stuff relative to the <include> tag
108  */
109 static xbt_dynar_t surf_input_buffer_stack = NULL;
110 static xbt_dynar_t surf_file_to_parse_stack = NULL;
111 static xbt_dynar_t surf_parsed_filename_stack = NULL;
112
113 void STag_surfxml_include(void)
114 {
115   XBT_INFO("STag_surfxml_include '%s'",A_surfxml_include_file);
116   xbt_dynar_push(surf_parsed_filename_stack,&surf_parsed_filename); // save old file name
117   surf_parsed_filename = xbt_strdup(A_surfxml_include_file);
118
119   xbt_dynar_push(surf_file_to_parse_stack, &surf_file_to_parse); //save old file descriptor
120
121   surf_file_to_parse = surf_fopen(A_surfxml_include_file, "r"); // read new file descriptor
122   xbt_assert((surf_file_to_parse), "Unable to open \"%s\"\n",
123               A_surfxml_include_file);
124   xbt_dynar_push(surf_input_buffer_stack,&surf_input_buffer);
125   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, YY_BUF_SIZE);
126   surf_parse_push_buffer_state(surf_input_buffer);
127
128   fflush(NULL);
129 }
130
131 void ETag_surfxml_include(void) {
132 /* Nothing to do when done with reading the include tag.
133  * Instead, the handling should be deferred until the EOF of current buffer -- see below */
134 }
135
136 /** @brief When reaching EOF, check whether we are in an include tag, and behave accordingly if yes
137  *
138  * This function is called automatically by sedding the parser in buildtools/Cmake/MaintainerMode.cmake
139  * Every FAIL on "Premature EOF" is preceded by a call to this function, which role is to restore the
140  * previous buffer if we reached the EOF /of an include file/. Its return code is used to avoid the
141  * error message in that case.
142  *
143  * Yeah, that's terribly hackish, but it works. A better solution should be dealed with in flexml
144  * directly: a command line flag could instruct it to do the correct thing when #include is encountered
145  * on a line. One day maybe, if the maya allow it.
146  */
147 int ETag_surfxml_include_state(void)
148 {
149   fflush(NULL);
150   XBT_INFO("ETag_surfxml_include_state '%s'",A_surfxml_include_file);
151
152   if(!xbt_dynar_is_empty(surf_input_buffer_stack)) // nope, that's a true premature EOF. Let the parser die verbosely.
153           return 1;
154
155   // Yeah, we were in an <include> Restore state and proceed.
156   fclose(surf_file_to_parse);
157   xbt_dynar_pop(surf_file_to_parse_stack, &surf_file_to_parse);
158   surf_parse_pop_buffer_state();
159   xbt_dynar_pop(surf_input_buffer_stack,surf_input_buffer);
160
161   // Restore the filename for error messages
162   free(surf_parsed_filename);
163   xbt_dynar_pop(surf_parsed_filename_stack,&surf_parsed_filename);
164
165   return 0;
166 }
167
168
169 void surf_parse_init_callbacks(void)
170 {
171           sg_platf_init(); // FIXME: move to a proper place?
172
173           STag_surfxml_route_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
174           ETag_surfxml_route_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
175           STag_surfxml_link_ctn_cb_list =
176               xbt_dynar_new(sizeof(void_f_void_t), NULL);
177           ETag_surfxml_link_ctn_cb_list =
178               xbt_dynar_new(sizeof(void_f_void_t), NULL);
179           STag_surfxml_process_cb_list =
180               xbt_dynar_new(sizeof(void_f_void_t), NULL);
181           ETag_surfxml_process_cb_list =
182               xbt_dynar_new(sizeof(void_f_void_t), NULL);
183           STag_surfxml_argument_cb_list =
184               xbt_dynar_new(sizeof(void_f_void_t), NULL);
185           ETag_surfxml_argument_cb_list =
186               xbt_dynar_new(sizeof(void_f_void_t), NULL);
187           STag_surfxml_prop_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
188           ETag_surfxml_prop_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
189           STag_surfxml_trace_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
190           ETag_surfxml_trace_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
191           STag_surfxml_trace_connect_cb_list =
192               xbt_dynar_new(sizeof(void_f_void_t), NULL);
193           ETag_surfxml_trace_connect_cb_list =
194               xbt_dynar_new(sizeof(void_f_void_t), NULL);
195           STag_surfxml_random_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
196           ETag_surfxml_random_cb_list = xbt_dynar_new(sizeof(void_f_void_t), NULL);
197           STag_surfxml_ASroute_cb_list =
198               xbt_dynar_new(sizeof(void_f_void_t), NULL);
199           ETag_surfxml_ASroute_cb_list =
200               xbt_dynar_new(sizeof(void_f_void_t), NULL);
201           STag_surfxml_bypassRoute_cb_list =
202               xbt_dynar_new(sizeof(void_f_void_t), NULL);
203           ETag_surfxml_bypassRoute_cb_list =
204               xbt_dynar_new(sizeof(void_f_void_t), NULL);
205           STag_surfxml_peer_cb_list =
206               xbt_dynar_new(sizeof(void_f_void_t), NULL);
207           ETag_surfxml_peer_cb_list =
208               xbt_dynar_new(sizeof(void_f_void_t), NULL);
209           STag_surfxml_include_cb_list =
210                           xbt_dynar_new(sizeof(void_f_void_t), NULL);
211           ETag_surfxml_include_cb_list =
212                           xbt_dynar_new(sizeof(void_f_void_t), NULL);
213 }
214
215 void surf_parse_reset_callbacks(void)
216 {
217         surf_parse_free_callbacks();
218         surf_parse_init_callbacks();
219 }
220
221 void surf_parse_free_callbacks(void)
222 {
223   sg_platf_exit(); // FIXME: better place?
224
225   xbt_dynar_free(&STag_surfxml_route_cb_list);
226   xbt_dynar_free(&ETag_surfxml_route_cb_list);
227   xbt_dynar_free(&STag_surfxml_link_ctn_cb_list);
228   xbt_dynar_free(&ETag_surfxml_link_ctn_cb_list);
229   xbt_dynar_free(&STag_surfxml_process_cb_list);
230   xbt_dynar_free(&ETag_surfxml_process_cb_list);
231   xbt_dynar_free(&STag_surfxml_argument_cb_list);
232   xbt_dynar_free(&ETag_surfxml_argument_cb_list);
233   xbt_dynar_free(&STag_surfxml_prop_cb_list);
234   xbt_dynar_free(&ETag_surfxml_prop_cb_list);
235   xbt_dynar_free(&STag_surfxml_trace_cb_list);
236   xbt_dynar_free(&ETag_surfxml_trace_cb_list);
237   xbt_dynar_free(&STag_surfxml_trace_connect_cb_list);
238   xbt_dynar_free(&ETag_surfxml_trace_connect_cb_list);
239   xbt_dynar_free(&STag_surfxml_random_cb_list);
240   xbt_dynar_free(&ETag_surfxml_random_cb_list);
241   xbt_dynar_free(&STag_surfxml_ASroute_cb_list);
242   xbt_dynar_free(&ETag_surfxml_ASroute_cb_list);
243   xbt_dynar_free(&STag_surfxml_bypassRoute_cb_list);
244   xbt_dynar_free(&ETag_surfxml_bypassRoute_cb_list);
245   xbt_dynar_free(&STag_surfxml_peer_cb_list);
246   xbt_dynar_free(&ETag_surfxml_peer_cb_list);
247   xbt_dynar_free(&STag_surfxml_include_cb_list);
248   xbt_dynar_free(&ETag_surfxml_include_cb_list);
249 }
250
251 /* Stag and Etag parse functions */
252 void ETag_surfxml_router(void)  { /* ignored -- do not add content here */ }
253
254 void STag_surfxml_platform(void) {
255   _XBT_GNUC_UNUSED double version = surf_parse_get_double(A_surfxml_platform_version);
256
257   xbt_assert((version >= 1.0), "******* BIG FAT WARNING *********\n "
258       "You're using an ancient XML file.\n"
259       "Since SimGrid 3.1, units are Bytes, Flops, and seconds "
260       "instead of MBytes, MFlops and seconds.\n"
261
262       "Use simgrid_update_xml to update your file automatically. "
263       "This program is installed automatically with SimGrid, or "
264       "available in the tools/ directory of the source archive.\n"
265
266       "Please check also out the SURF section of the ChangeLog for "
267       "the 3.1 version for more information. \n"
268
269       "Last, do not forget to also update your values for "
270       "the calls to MSG_task_create (if any).");
271   xbt_assert((version >= 3.0), "******* BIG FAT WARNING *********\n "
272       "You're using an old XML file.\n"
273       "Use simgrid_update_xml to update your file automatically. "
274       "This program is installed automatically with SimGrid, or "
275       "available in the tools/ directory of the source archive.");
276
277   sg_platf_begin();
278 }
279 void ETag_surfxml_platform(void){
280   sg_platf_end();
281 }
282
283 void STag_surfxml_host(void){
284   xbt_assert(current_property_set == NULL, "Someone forgot to reset the property set to NULL in its closing tag (or XML malformed)");
285 }
286
287 void ETag_surfxml_host(void)    {
288   s_sg_platf_host_cbarg_t host;
289   memset(&host,0,sizeof(host));
290
291   host.properties = current_property_set;
292
293   host.id = A_surfxml_host_id;
294   host.power_peak = get_cpu_power(A_surfxml_host_power);
295   host.power_scale = surf_parse_get_double( A_surfxml_host_availability);
296   host.core_amount = surf_parse_get_int(A_surfxml_host_core);
297   host.power_trace = tmgr_trace_new(A_surfxml_host_availability_file);
298   host.state_trace = tmgr_trace_new(A_surfxml_host_state_file);
299   xbt_assert((A_surfxml_host_state == A_surfxml_host_state_ON) ||
300         (A_surfxml_host_state == A_surfxml_host_state_OFF), "Invalid state");
301   if (A_surfxml_host_state == A_surfxml_host_state_ON)
302     host.initial_state = SURF_RESOURCE_ON;
303   if (A_surfxml_host_state == A_surfxml_host_state_OFF)
304     host.initial_state = SURF_RESOURCE_OFF;
305   host.coord = A_surfxml_host_coordinates;
306
307   sg_platf_new_host(&host);
308   current_property_set = NULL;
309 }
310
311 void STag_surfxml_router(void){
312   s_sg_platf_router_cbarg_t router;
313   memset(&router, 0, sizeof(router));
314
315         router.id = A_surfxml_router_id;
316         router.coord = A_surfxml_router_coordinates;
317
318         sg_platf_new_router(&router);
319 }
320
321 void STag_surfxml_cluster(void){
322   s_sg_platf_cluster_cbarg_t cluster;
323   memset(&cluster,0,sizeof(cluster));
324         cluster.id = A_surfxml_cluster_id;
325         cluster.prefix = A_surfxml_cluster_prefix;
326         cluster.suffix = A_surfxml_cluster_suffix;
327         cluster.radical = A_surfxml_cluster_radical;
328         cluster.power= surf_parse_get_double(A_surfxml_cluster_power);
329         cluster.core_amount = surf_parse_get_int(A_surfxml_cluster_core);
330         cluster.bw =   surf_parse_get_double(A_surfxml_cluster_bw);
331         cluster.lat =  surf_parse_get_double(A_surfxml_cluster_lat);
332         if(strcmp(A_surfxml_cluster_bb_bw,""))
333           cluster.bb_bw = surf_parse_get_double(A_surfxml_cluster_bb_bw);
334         if(strcmp(A_surfxml_cluster_bb_lat,""))
335           cluster.bb_lat = surf_parse_get_double(A_surfxml_cluster_bb_lat);
336         cluster.router_id = A_surfxml_cluster_router_id;
337
338   switch (AX_surfxml_cluster_sharing_policy) {
339   case A_surfxml_cluster_sharing_policy_SHARED:
340     cluster.sharing_policy = SURF_LINK_SHARED;
341     break;
342   case A_surfxml_cluster_sharing_policy_FULLDUPLEX:
343     cluster.sharing_policy = SURF_LINK_FULLDUPLEX;
344     break;
345   case A_surfxml_cluster_sharing_policy_FATPIPE:
346     cluster.sharing_policy = SURF_LINK_FATPIPE;
347     break;
348   default:
349     surf_parse_error("Invalid cluster sharing policy for cluster %s",
350                      cluster.id);
351     break;
352   }
353   switch (AX_surfxml_cluster_bb_sharing_policy) {
354   case A_surfxml_cluster_bb_sharing_policy_FATPIPE:
355     cluster.bb_sharing_policy = SURF_LINK_FATPIPE;
356     break;
357   case A_surfxml_cluster_bb_sharing_policy_SHARED:
358     cluster.bb_sharing_policy = SURF_LINK_SHARED;
359     break;
360   default:
361     surf_parse_error("Invalid bb sharing policy in cluster %s",
362                      cluster.id);
363     break;
364   }
365
366         cluster.availability_trace = A_surfxml_cluster_availability_file;
367         cluster.state_trace = A_surfxml_cluster_state_file;
368         sg_platf_new_cluster(&cluster);
369 }
370 void ETag_surfxml_cluster(void){
371   /* nothing I can think of */
372 }
373
374 void STag_surfxml_peer(void){
375   s_sg_platf_peer_cbarg_t peer;
376   memset(&peer,0,sizeof(peer));
377         peer.id = A_surfxml_peer_id;
378         peer.power = surf_parse_get_double(A_surfxml_peer_power);
379         peer.bw_in = surf_parse_get_double(A_surfxml_peer_bw_in);
380         peer.bw_out = surf_parse_get_double(A_surfxml_peer_bw_out);
381         peer.lat = surf_parse_get_double(A_surfxml_peer_lat);
382         peer.coord = A_surfxml_peer_coordinates;
383         peer.availability_trace = tmgr_trace_new(A_surfxml_peer_availability_file);
384         peer.state_trace = tmgr_trace_new(A_surfxml_peer_state_file);
385
386         surfxml_call_cb_functions(STag_surfxml_peer_cb_list);
387         sg_platf_new_peer(&peer);
388 }
389 void ETag_surfxml_peer(void){
390   /* nothing to do here */
391 }
392 void STag_surfxml_link(void){
393   xbt_assert(current_property_set == NULL, "Someone forgot to reset the property set to NULL in its closing tag (or XML malformed)");
394 }
395 void ETag_surfxml_link(void){
396   s_sg_platf_link_cbarg_t link;
397   memset(&link,0,sizeof(link));
398
399   link.properties = current_property_set;
400
401   link.id = A_surfxml_link_id;
402   link.bandwidth = surf_parse_get_double(A_surfxml_link_bandwidth);
403   link.bandwidth_trace = tmgr_trace_new(A_surfxml_link_bandwidth_file);
404   link.latency = surf_parse_get_double(A_surfxml_link_latency);
405   link.latency_trace = tmgr_trace_new(A_surfxml_link_latency_file);
406
407   switch (A_surfxml_link_state) {
408   case A_surfxml_link_state_ON:
409     link.state = SURF_RESOURCE_ON;
410     break;
411   case A_surfxml_link_state_OFF:
412     link.state = SURF_RESOURCE_OFF;
413     break;
414   default:
415     surf_parse_error("invalid state for link %s", link.id);
416     break;
417   }
418   link.state_trace = tmgr_trace_new(A_surfxml_link_state_file);
419
420   switch (A_surfxml_link_sharing_policy) {
421   case A_surfxml_link_sharing_policy_SHARED:
422     link.policy = SURF_LINK_SHARED;
423     break;
424   case A_surfxml_link_sharing_policy_FATPIPE:
425      link.policy = SURF_LINK_FATPIPE;
426      break;
427   case A_surfxml_link_sharing_policy_FULLDUPLEX:
428      link.policy = SURF_LINK_FULLDUPLEX;
429      break;
430   default:
431     surf_parse_error("Invalid sharing policy in link %s", link.id);
432     break;
433   }
434
435   sg_platf_new_link(&link);
436
437   current_property_set = NULL;
438 }
439
440 void STag_surfxml_route(void){
441         surfxml_call_cb_functions(STag_surfxml_route_cb_list);
442 }
443 void STag_surfxml_link_ctn(void){
444         surfxml_call_cb_functions(STag_surfxml_link_ctn_cb_list);
445 }
446 void STag_surfxml_process(void){
447         surfxml_call_cb_functions(STag_surfxml_process_cb_list);
448 }
449 void STag_surfxml_argument(void){
450         surfxml_call_cb_functions(STag_surfxml_argument_cb_list);
451 }
452 void STag_surfxml_prop(void){
453         surfxml_call_cb_functions(STag_surfxml_prop_cb_list);
454 }
455 void STag_surfxml_trace(void){
456         surfxml_call_cb_functions(STag_surfxml_trace_cb_list);
457 }
458 void STag_surfxml_trace_connect(void){
459         surfxml_call_cb_functions(STag_surfxml_trace_connect_cb_list);
460 }
461 void STag_surfxml_AS(void){
462   sg_platf_new_AS_begin(A_surfxml_AS_id,A_surfxml_AS_routing);
463 }
464 void ETag_surfxml_AS(void){
465   sg_platf_new_AS_end();
466 }
467 void STag_surfxml_ASroute(void){
468         surfxml_call_cb_functions(STag_surfxml_ASroute_cb_list);
469 }
470 void STag_surfxml_bypassRoute(void){
471         surfxml_call_cb_functions(STag_surfxml_bypassRoute_cb_list);
472 }
473 void STag_surfxml_config(void){
474   XBT_DEBUG("START configuration name = %s",A_surfxml_config_id);
475   xbt_assert(current_property_set == NULL, "Someone forgot to reset the property set to NULL in its closing tag (or XML malformed)");
476 }
477 void ETag_surfxml_config(void){
478   xbt_dict_cursor_t cursor = NULL;
479   char *key;
480   char *elem;
481   char *cfg;
482   xbt_dict_foreach(current_property_set, cursor, key, elem) {
483     cfg = bprintf("%s:%s",key,elem);
484     if(xbt_cfg_is_default_value(_surf_cfg_set, key))
485       xbt_cfg_set_parse(_surf_cfg_set, cfg);
486     else
487       XBT_INFO("The custom configuration '%s' is already defined by user!",key);
488     free(cfg);
489   }
490   XBT_DEBUG("End configuration name = %s",A_surfxml_config_id);
491   xbt_dict_free(&current_property_set);
492 }
493 void STag_surfxml_random(void){
494         surfxml_call_cb_functions(STag_surfxml_random_cb_list);
495 }
496
497 #define parse_method(type,name) \
498 void type##Tag_surfxml_##name(void) \
499 { surfxml_call_cb_functions(type##Tag_surfxml_##name##_cb_list); }
500 parse_method(E, route);
501 parse_method(E, link_ctn);
502 parse_method(E, process);
503 parse_method(E, argument);
504 parse_method(E, prop);
505 parse_method(E, trace);
506 parse_method(E, trace_connect);
507 parse_method(E, random);
508 parse_method(E, ASroute);
509 parse_method(E, bypassRoute);
510
511 /* Open and Close parse file */
512
513 void surf_parse_open(const char *file)
514 {
515   static int warned = 0;        /* warn only once */
516   if (!file) {
517     if (!warned) {
518       XBT_WARN
519           ("Bypassing the XML parser since surf_parse_open received a NULL pointer. "
520               "If it is not what you want, go fix your code.");
521       warned = 1;
522     }
523     return;
524   }
525
526   if (!surf_input_buffer_stack)
527     surf_input_buffer_stack = xbt_dynar_new(sizeof(YY_BUFFER_STATE), NULL);
528   if (!surf_file_to_parse_stack)
529     surf_file_to_parse_stack = xbt_dynar_new(sizeof(FILE *), NULL);
530
531   if (!surf_file_to_parse_stack)
532     surf_parsed_filename_stack = xbt_dynar_new(sizeof(FILE *), xbt_free_f);
533   surf_parsed_filename = xbt_strdup(file);
534
535   surf_file_to_parse = surf_fopen(file, "r");
536   xbt_assert((surf_file_to_parse), "Unable to open \"%s\"\n", file);
537   surf_input_buffer = surf_parse__create_buffer(surf_file_to_parse, YY_BUF_SIZE);
538   surf_parse__switch_to_buffer(surf_input_buffer);
539   surf_parse_lineno = 1;
540 }
541
542 void surf_parse_close(void)
543 {
544   xbt_dynar_free(&surf_input_buffer_stack);
545   xbt_dynar_free(&surf_file_to_parse_stack);
546   xbt_dynar_free(&surf_parsed_filename_stack);
547
548   free(surf_parsed_filename);
549
550   if (surf_file_to_parse) {
551     surf_parse__delete_buffer(surf_input_buffer);
552     fclose(surf_file_to_parse);
553     surf_file_to_parse = NULL; //Must be reset for Bypass
554   }
555 }
556
557 /* Call the lexer to parse the currently opened file. This pointer to function enables bypassing of the parser */
558
559 static int _surf_parse(void) {
560   return surf_parse_lex();
561 }
562 int_f_void_t surf_parse = _surf_parse;
563
564
565 /* Aux parse functions */
566
567 void surfxml_add_callback(xbt_dynar_t cb_list, void_f_void_t function)
568 {
569   xbt_dynar_push(cb_list, &function);
570 }
571
572 void surfxml_del_callback(xbt_dynar_t cb_list, void_f_void_t function)
573 {
574   xbt_ex_t e;
575   unsigned int it=0;
576   void_f_void_t null_f=NULL;
577
578   TRY {
579     it = xbt_dynar_search(cb_list,&function);
580   }
581   CATCH(e) {
582     if (e.category == not_found_error) {
583       xbt_ex_free(e);
584       xbt_die("Trying to remove a callback that is not here! This should not happen");
585     }
586     RETHROW;
587   }
588
589   xbt_dynar_replace(cb_list, it,&null_f);
590 }
591
592 static XBT_INLINE void surfxml_call_cb_functions(xbt_dynar_t cb_list)
593 {
594   unsigned int iterator;
595   void_f_void_t fun;
596   xbt_dynar_foreach(cb_list, iterator, fun) {
597     if (fun) fun();
598   }
599 }
600
601
602 /* Prop tag functions */
603
604 /**
605  * With XML parser
606  */
607 void parse_properties(void)
608 {
609   if (!current_property_set)
610     current_property_set = xbt_dict_new_homogeneous(xbt_free_f); // Maybe, it should raise an error
611
612   xbt_dict_set(current_property_set, A_surfxml_prop_id, xbt_strdup(A_surfxml_prop_value), NULL);
613 }
614
615
616 /* Random tag functions */
617
618 double get_cpu_power(const char *power)
619 {
620   double power_scale = 0.0;
621   const char *p, *q;
622   char *generator;
623   random_data_t random = NULL;
624   /* randomness is inserted like this: power="$rand(my_random)" */
625   if (((p = strstr(power, "$rand(")) != NULL)
626       && ((q = strstr(power, ")")) != NULL)) {
627     if (p < q) {
628       generator = xbt_malloc(q - (p + 6) + 1);
629       memcpy(generator, p + 6, q - (p + 6));
630       generator[q - (p + 6)] = '\0';
631       random = xbt_dict_get_or_null(random_data_list, generator);
632       xbt_assert(random, "Random generator %s undefined", generator);
633       power_scale = random_generate(random);
634     }
635   } else {
636     power_scale = surf_parse_get_double(power);
637   }
638   return power_scale;
639 }
640
641 double random_min, random_max, random_mean, random_std_deviation,
642     random_generator;
643 char *random_id;
644
645 static void init_randomness(void)
646 {
647   random_id = A_surfxml_random_id;
648   random_min = surf_parse_get_double(A_surfxml_random_min);
649   random_max = surf_parse_get_double(A_surfxml_random_max);
650   random_mean = surf_parse_get_double(A_surfxml_random_mean);
651   random_std_deviation = surf_parse_get_double(A_surfxml_random_std_deviation);
652   random_generator = A_surfxml_random_generator;
653 }
654
655 static void add_randomness(void)
656 {
657   /* If needed aditional properties can be added by using the prop tag */
658   random_data_t random =
659       random_new(random_generator, 0, random_min, random_max, random_mean,
660                  random_std_deviation);
661   xbt_dict_set(random_data_list, random_id, (void *) random,
662                &xbt_free_ref);
663 }
664