Logo AND Algorithmique Numérique Distribuée

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