Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0d0408b21b87bb11f2ee333560dd36c9107e9dc5
[simgrid.git] / src / surf / surf_routing.c
1 /* Copyright (c) 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 <pcre.h>               /* regular expression library */
8
9 #include "simgrid/platf_interface.h"    // platform creation API internal interface
10
11 #include "surf_routing_private.h"
12 #include "surf/surf_routing.h"
13 #include "surf/surfxml_parse_values.h"
14
15 /**
16  * @ingroup SURF_build_api
17  * @brief A library containing all known workstations
18  */
19 xbt_lib_t host_lib;
20
21 int ROUTING_HOST_LEVEL;         //Routing level
22 int SURF_CPU_LEVEL;             //Surf cpu level
23 int SURF_WKS_LEVEL;             //Surf workstation level
24 int SIMIX_HOST_LEVEL;           //Simix level
25 int MSG_HOST_LEVEL;             //Msg level
26 int SD_HOST_LEVEL;              //Simdag level
27 int COORD_HOST_LEVEL=0;         //Coordinates level
28 int NS3_HOST_LEVEL;             //host node for ns3
29
30 /**
31  * @ingroup SURF_build_api
32  * @brief A library containing all known links
33  */
34 xbt_lib_t link_lib;
35 int SD_LINK_LEVEL;              //Simdag level
36 int SURF_LINK_LEVEL;            //Surf level
37 int NS3_LINK_LEVEL;             //link for ns3
38
39 xbt_lib_t as_router_lib;
40 int ROUTING_ASR_LEVEL;          //Routing level
41 int COORD_ASR_LEVEL;            //Coordinates level
42 int NS3_ASR_LEVEL;              //host node for ns3
43
44 static xbt_dict_t random_value = NULL;
45
46 /** @brief Retrieve a routing edge from its name
47  *
48  * Routing edges are either CPU/workstation and routers, whatever
49  */
50 sg_routing_edge_t sg_routing_edge_by_name_or_null(const char *name) {
51     sg_routing_edge_t net_elm = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
52     if(!net_elm) net_elm = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
53   return net_elm;
54 }
55
56 /* Global vars */
57 routing_global_t global_routing = NULL;
58 AS_t current_routing = NULL;
59
60 /* global parse functions */
61 xbt_dynar_t parsed_link_list = NULL;   /* temporary store of current list link of a route */
62 extern xbt_dynar_t mount_list;
63
64 static const char *src = NULL;  /* temporary store the source name of a route */
65 static const char *dst = NULL;  /* temporary store the destination name of a route */
66 static char *gw_src = NULL;     /* temporary store the gateway source name of a route */
67 static char *gw_dst = NULL;     /* temporary store the gateway destination name of a route */
68
69 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
70
71 static void routing_parse_peer(sg_platf_peer_cbarg_t peer);     /* peer bypass */
72 static void routing_parse_Srandom(void);        /* random bypass */
73
74 static void routing_parse_postparse(void);
75
76 /* this lines are only for replace use like index in the model table */
77 typedef enum {
78   SURF_MODEL_FULL = 0,
79   SURF_MODEL_FLOYD,
80   SURF_MODEL_DIJKSTRA,
81   SURF_MODEL_DIJKSTRACACHE,
82   SURF_MODEL_NONE,
83   SURF_MODEL_RULEBASED,
84   SURF_MODEL_VIVALDI,
85   SURF_MODEL_CLUSTER
86 } e_routing_types;
87
88 struct s_model_type routing_models[] = {
89   {"Full",
90    "Full routing data (fast, large memory requirements, fully expressive)",
91    model_full_create, model_full_end},
92   {"Floyd",
93    "Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only)",
94    model_floyd_create, model_floyd_end},
95   {"Dijkstra",
96    "Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only)",
97    model_dijkstra_create, model_dijkstra_both_end},
98   {"DijkstraCache",
99    "Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only)",
100    model_dijkstracache_create, model_dijkstra_both_end},
101   {"none", "No routing (Unless you know what you are doing, avoid using this mode in combination with a non Constant network model).",
102    model_none_create,  NULL},
103   {"RuleBased", "Rule-Based routing data (...)",
104    model_rulebased_create, NULL},
105   {"Vivaldi", "Vivaldi routing",
106    model_vivaldi_create, NULL},
107   {"Cluster", "Cluster routing",
108    model_cluster_create, NULL},
109   {NULL, NULL, NULL, NULL}
110 };
111
112 /**
113  * \brief Add a "host" to the network element list
114  */
115 static void parse_S_host(sg_platf_host_cbarg_t host)
116 {
117   sg_routing_edge_t info = NULL;
118   if (current_routing->hierarchy == SURF_ROUTING_NULL)
119     current_routing->hierarchy = SURF_ROUTING_BASE;
120   xbt_assert(!xbt_lib_get_or_null(host_lib, host->id, ROUTING_HOST_LEVEL),
121              "Reading a host, processing unit \"%s\" already exists", host->id);
122
123   info = xbt_new0(s_network_element_t, 1);
124   info->rc_component = current_routing;
125   info->rc_type = SURF_NETWORK_ELEMENT_HOST;
126   info->name = xbt_strdup(host->id);
127   info->id = current_routing->parse_PU(current_routing, (void *) info);
128   xbt_lib_set(host_lib, host->id, ROUTING_HOST_LEVEL, (void *) info);
129   XBT_DEBUG("Having set name '%s' id '%d'",host->id,info->id);
130
131   if(mount_list){
132     xbt_lib_set(storage_lib, host->id, ROUTING_STORAGE_HOST_LEVEL, (void *) mount_list);
133     mount_list = NULL;
134   }
135
136   if (host->coord && strcmp(host->coord, "")) {
137     unsigned int cursor;
138     char*str;
139
140     if (!COORD_HOST_LEVEL)
141       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
142     /* Pre-parse the host coordinates -- FIXME factorize with routers by overloading the routing->parse_PU function*/
143     xbt_dynar_t ctn_str = xbt_str_split_str(host->coord, " ");
144     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
145     xbt_dynar_foreach(ctn_str,cursor, str) {
146       double val = atof(str);
147       xbt_dynar_push(ctn,&val);
148     }
149     xbt_dynar_shrink(ctn, 0);
150     xbt_dynar_free(&ctn_str);
151     xbt_lib_set(host_lib, host->id, COORD_HOST_LEVEL, (void *) ctn);
152     XBT_DEBUG("Having set host coordinates for '%s'",host->id);
153   }
154 }
155
156 /**
157  * \brief Add a "router" to the network element list
158  */
159 static void parse_S_router(sg_platf_router_cbarg_t router)
160 {
161   sg_routing_edge_t info = NULL;
162   if (current_routing->hierarchy == SURF_ROUTING_NULL)
163     current_routing->hierarchy = SURF_ROUTING_BASE;
164   xbt_assert(!xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL),
165              "Reading a router, processing unit \"%s\" already exists",
166              router->id);
167
168   info = xbt_new0(s_network_element_t, 1);
169   info->rc_component = current_routing;
170   info->rc_type = SURF_NETWORK_ELEMENT_ROUTER;
171   info->name = xbt_strdup(router->id);
172   info->id = current_routing->parse_PU(current_routing, (void *) info);
173   xbt_lib_set(as_router_lib, router->id, ROUTING_ASR_LEVEL, (void *) info);
174   XBT_DEBUG("Having set name '%s' id '%d'",router->id,info->id);
175
176   if (strcmp(router->coord, "")) {
177     unsigned int cursor;
178     char*str;
179
180     if (!COORD_ASR_LEVEL)
181       xbt_die ("To use host coordinates, please add --cfg=network/coordinates:yes to your command line");
182     /* Pre-parse the host coordinates */
183     xbt_dynar_t ctn_str = xbt_str_split_str(router->coord, " ");
184     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
185     xbt_dynar_foreach(ctn_str,cursor, str) {
186       double val = atof(str);
187       xbt_dynar_push(ctn,&val);
188     }
189     xbt_dynar_shrink(ctn, 0);
190     xbt_dynar_free(&ctn_str);
191     xbt_lib_set(as_router_lib, router->id, COORD_ASR_LEVEL, (void *) ctn);
192     XBT_DEBUG("Having set router coordinates for '%s'",router->id);
193   }
194 }
195
196
197 /**
198  * \brief Set the end points for a route
199  */
200 static void routing_parse_S_route(void)
201 {
202   if (src != NULL && dst != NULL && parsed_link_list != NULL)
203     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
204            A_surfxml_route_src, A_surfxml_route_dst);
205   src = A_surfxml_route_src;
206   dst = A_surfxml_route_dst;
207   xbt_assert(strlen(src) > 0 || strlen(dst) > 0,
208              "Some limits are null in the route between \"%s\" and \"%s\"",
209              src, dst);
210   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
211 }
212
213 /**
214  * \brief Set the end points and gateways for a ASroute
215  */
216 static void routing_parse_S_ASroute(void)
217 {
218   if (src != NULL && dst != NULL && parsed_link_list != NULL)
219     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
220            A_surfxml_ASroute_src, A_surfxml_ASroute_dst);
221   src = A_surfxml_ASroute_src;
222   dst = A_surfxml_ASroute_dst;
223   gw_src = A_surfxml_ASroute_gw_src;
224   gw_dst = A_surfxml_ASroute_gw_dst;
225   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
226              || strlen(gw_dst) > 0,
227              "Some limits are null in the route between \"%s\" and \"%s\"",
228              src, dst);
229   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
230 }
231
232 /**
233  * \brief Set the end points for a bypassRoute
234  */
235 static void routing_parse_S_bypassRoute(void)
236 {
237   if (src != NULL && dst != NULL && parsed_link_list != NULL)
238     THROWF(arg_error, 0,
239            "Bypass Route between %s to %s can not be defined",
240            A_surfxml_bypassRoute_src, A_surfxml_bypassRoute_dst);
241   src = A_surfxml_bypassRoute_src;
242   dst = A_surfxml_bypassRoute_dst;
243   gw_src = NULL;
244   gw_dst = NULL;
245   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
246              || strlen(gw_dst) > 0,
247              "Some limits are null in the route between \"%s\" and \"%s\"",
248              src, dst);
249   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
250 }
251
252 /**
253  * \brief Set the end points for a bypassASroute
254  */
255 static void routing_parse_S_bypassASroute(void)
256 {
257   if (src != NULL && dst != NULL && parsed_link_list != NULL)
258     THROWF(arg_error, 0,
259            "Bypass AS Route between %s to %s can not be defined",
260            A_surfxml_bypassASroute_src, A_surfxml_bypassASroute_dst);
261   src = A_surfxml_bypassASroute_src;
262   dst = A_surfxml_bypassASroute_dst;
263   gw_src = A_surfxml_bypassASroute_gw_src;
264   gw_dst = A_surfxml_bypassASroute_gw_dst;
265   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
266              || strlen(gw_dst) > 0,
267              "Some limits are null in the route between \"%s\" and \"%s\"",
268              src, dst);
269   parsed_link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
270 }
271 /**
272  * \brief Set a new link on the actual list of link for a route or ASroute from XML
273  */
274
275 static void routing_parse_link_ctn(void)
276 {
277   char *link_id;
278   switch (A_surfxml_link_ctn_direction) {
279   case AU_surfxml_link_ctn_direction:
280   case A_surfxml_link_ctn_direction_NONE:
281     link_id = xbt_strdup(A_surfxml_link_ctn_id);
282     break;
283   case A_surfxml_link_ctn_direction_UP:
284     link_id = bprintf("%s_UP", A_surfxml_link_ctn_id);
285     break;
286   case A_surfxml_link_ctn_direction_DOWN:
287     link_id = bprintf("%s_DOWN", A_surfxml_link_ctn_id);
288     break;
289   }
290   xbt_dynar_push(parsed_link_list, &link_id);
291 }
292
293 /**
294  * \brief Store the route by calling the set_route function of the current routing component
295  */
296 static void routing_parse_E_route(void)
297 {
298   route_t route = xbt_new0(s_route_t, 1);
299   route->link_list = parsed_link_list;
300   xbt_assert(current_routing->parse_route,
301              "no defined method \"set_route\" in \"%s\"",
302              current_routing->name);
303   current_routing->parse_route(current_routing, src, dst, route);
304   generic_free_route(route);
305   parsed_link_list = NULL;
306   src = NULL;
307   dst = NULL;
308 }
309
310 /**
311  * \brief Store the ASroute by calling the set_ASroute function of the current routing component
312  */
313 static void routing_parse_E_ASroute(void)
314 {
315   route_t e_route = xbt_new0(s_route_t, 1);
316   e_route->link_list = parsed_link_list;
317
318   if (!strcmp(current_routing->model_desc->name,"RuleBased")) {
319     e_route->src_gateway = (sg_routing_edge_t) gw_src; // DIRTY HACK possible only FIXME
320     e_route->dst_gateway = (sg_routing_edge_t) gw_dst; // because of what is in routing_parse_E_ASroute
321   } else {
322     e_route->src_gateway = sg_routing_edge_by_name_or_null(gw_src);
323     e_route->dst_gateway = sg_routing_edge_by_name_or_null(gw_dst);
324   }
325   xbt_assert(current_routing->parse_ASroute,
326              "no defined method \"set_ASroute\" in \"%s\"",
327              current_routing->name);
328   current_routing->parse_ASroute(current_routing, src, dst, e_route);
329   generic_free_route(e_route);
330   parsed_link_list = NULL;
331   src = NULL;
332   dst = NULL;
333   gw_src = NULL;
334   gw_dst = NULL;
335 }
336
337 /**
338  * \brief Store the bypass route by calling the set_bypassroute function of the current routing component
339  */
340 static void routing_parse_E_bypassRoute(void)
341 {
342   route_t e_route = xbt_new0(s_route_t, 1);
343   e_route->link_list = parsed_link_list;
344
345   xbt_assert(current_routing->parse_bypassroute,
346              "Bypassing mechanism not implemented by routing '%s'",
347              current_routing->name);
348
349   current_routing->parse_bypassroute(current_routing, src, dst, e_route);
350   parsed_link_list = NULL;
351   src = NULL;
352   dst = NULL;
353   gw_src = NULL;
354   gw_dst = NULL;
355 }
356 /**
357  * \brief Store the bypass route by calling the set_bypassroute function of the current routing component
358  */
359 static void routing_parse_E_bypassASroute(void)
360 {
361   route_t e_route = xbt_new0(s_route_t, 1);
362   e_route->link_list = parsed_link_list;
363   e_route->src_gateway = sg_routing_edge_by_name_or_null(gw_src);
364   e_route->dst_gateway = sg_routing_edge_by_name_or_null(gw_dst);
365   xbt_assert(current_routing->parse_bypassroute,
366              "Bypassing mechanism not implemented by routing '%s'",
367              current_routing->name);
368   current_routing->parse_bypassroute(current_routing, src, dst, e_route);
369   parsed_link_list = NULL;
370   src = NULL;
371   dst = NULL;
372   gw_src = NULL;
373   gw_dst = NULL;
374 }
375
376 /**
377  * \brief Make a new routing component to the platform
378  *
379  * Add a new autonomous system to the platform. Any elements (such as host,
380  * router or sub-AS) added after this call and before the corresponding call
381  * to sg_platf_new_AS_close() will be added to this AS.
382  *
383  * Once this function was called, the configuration concerning the used
384  * models cannot be changed anymore.
385  *
386  * @param AS_id name of this autonomous system. Must be unique in the platform
387  * @param wanted_routing_type one of Full, Floyd, Dijkstra or similar. Full list in the variable routing_models, in src/surf/surf_routing.c
388  */
389 void routing_AS_begin(const char *AS_id, const char *wanted_routing_type)
390 {
391   AS_t new_as;
392   routing_model_description_t model = NULL;
393   int cpt;
394
395   xbt_assert(!xbt_lib_get_or_null
396              (as_router_lib, AS_id, ROUTING_ASR_LEVEL),
397              "The AS \"%s\" already exists", AS_id);
398
399   /* search the routing model */
400   for (cpt = 0; routing_models[cpt].name; cpt++)
401     if (!strcmp(wanted_routing_type, routing_models[cpt].name))
402       model = &routing_models[cpt];
403   /* if its not exist, error */
404   if (model == NULL) {
405     fprintf(stderr, "Routing model %s not found. Existing models:\n",
406             wanted_routing_type);
407     for (cpt = 0; routing_models[cpt].name; cpt++)
408       fprintf(stderr, "   %s: %s\n", routing_models[cpt].name,
409               routing_models[cpt].desc);
410     xbt_die("dying");
411   }
412
413   /* make a new routing component */
414   new_as = (AS_t) model->create();
415   new_as->model_desc = model;
416   new_as->hierarchy = SURF_ROUTING_NULL;
417   new_as->name = xbt_strdup(AS_id);
418
419   sg_routing_edge_t info = NULL;
420   info = xbt_new0(s_network_element_t, 1);
421
422   if (current_routing == NULL && global_routing->root == NULL) {
423
424     /* it is the first one */
425     new_as->routing_father = NULL;
426     global_routing->root = new_as;
427     info->id = -1;
428   } else if (current_routing != NULL && global_routing->root != NULL) {
429
430     xbt_assert(!xbt_dict_get_or_null
431                (current_routing->routing_sons, AS_id),
432                "The AS \"%s\" already exists", AS_id);
433     /* it is a part of the tree */
434     new_as->routing_father = current_routing;
435     /* set the father behavior */
436     if (current_routing->hierarchy == SURF_ROUTING_NULL)
437       current_routing->hierarchy = SURF_ROUTING_RECURSIVE;
438     /* add to the sons dictionary */
439     xbt_dict_set(current_routing->routing_sons, AS_id,
440                  (void *) new_as, NULL);
441     /* add to the father element list */
442     info->id = current_routing->parse_AS(current_routing, (void *) info);
443   } else {
444     THROWF(arg_error, 0, "All defined components must be belong to a AS");
445   }
446
447   info->rc_component = new_as->routing_father;
448   info->rc_type = SURF_NETWORK_ELEMENT_AS;
449   info->name = new_as->name;
450
451   xbt_lib_set(as_router_lib, new_as->name, ROUTING_ASR_LEVEL,
452               (void *) info);
453   XBT_DEBUG("Having set name '%s' id '%d'",new_as->name,info->id);
454
455   /* set the new current component of the tree */
456   current_routing = new_as;
457   current_routing->net_elem = info;
458
459 }
460
461 /**
462  * \brief Specify that the current description of AS is finished
463  *
464  * Once you've declared all the content of your AS, you have to close
465  * it with this call. Your AS is not usable until you call this function.
466  *
467  * @fixme: this call is not as robust as wanted: bad things WILL happen
468  * if you call it twice for the same AS, or if you forget calling it, or
469  * even if you add stuff to a closed AS
470  *
471  */
472 void routing_AS_end()
473 {
474
475   if (current_routing == NULL) {
476     THROWF(arg_error, 0, "Close an AS, but none was under construction");
477   } else {
478     if (current_routing->model_desc->end)
479       current_routing->model_desc->end(current_routing);
480     current_routing = current_routing->routing_father;
481   }
482 }
483
484 /* Aux Business methods */
485
486 /**
487  * \brief Get the AS father and the first elements of the chain
488  *
489  * \param src the source host name 
490  * \param dst the destination host name
491  * 
492  * Get the common father of the to processing units, and the first different 
493  * father in the chain
494  */
495 static void elements_father(sg_routing_edge_t src, sg_routing_edge_t dst,
496                             AS_t * res_father,
497                             AS_t * res_src,
498                             AS_t * res_dst)
499 {
500   xbt_assert(src && dst, "bad parameters for \"elements_father\" method");
501 #define ELEMENTS_FATHER_MAXDEPTH 16     /* increase if it is not enough */
502   AS_t src_as, dst_as;
503   AS_t path_src[ELEMENTS_FATHER_MAXDEPTH];
504   AS_t path_dst[ELEMENTS_FATHER_MAXDEPTH];
505   int index_src = 0;
506   int index_dst = 0;
507   AS_t current;
508   AS_t current_src;
509   AS_t current_dst;
510   AS_t father;
511
512   /* (1) find the as where the src and dst are located */
513   sg_routing_edge_t src_data = src;
514   sg_routing_edge_t dst_data = dst;
515   src_as = src_data->rc_component;
516   dst_as = dst_data->rc_component;
517 #ifndef NDEBUG
518   char* src_name = src_data->name;
519   char* dst_name = dst_data->name;
520 #endif
521
522   xbt_assert(src_as && dst_as,
523              "Ask for route \"from\"(%s) or \"to\"(%s) no found", src_name, dst_name);
524
525   /* (2) find the path to the root routing component */
526   for (current = src_as; current != NULL; current = current->routing_father) {
527     if (index_src >= ELEMENTS_FATHER_MAXDEPTH)
528       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_src");
529     path_src[index_src++] = current;
530   }
531   for (current = dst_as; current != NULL; current = current->routing_father) {
532     if (index_dst >= ELEMENTS_FATHER_MAXDEPTH)
533       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_dst");
534     path_dst[index_dst++] = current;
535   }
536
537   /* (3) find the common father */
538   do {
539     current_src = path_src[--index_src];
540     current_dst = path_dst[--index_dst];
541   } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
542
543   /* (4) they are not in the same routing component, make the path */
544   if (current_src == current_dst)
545     father = current_src;
546   else
547     father = path_src[index_src + 1];
548
549   /* (5) result generation */
550   *res_father = father;         /* first the common father of src and dst */
551   *res_src = current_src;       /* second the first different father of src */
552   *res_dst = current_dst;       /* three  the first different father of dst */
553
554 #undef ELEMENTS_FATHER_MAXDEPTH
555 }
556
557 /* Global Business methods */
558
559 /**
560  * \brief Recursive function for get_route_latency
561  *
562  * \param src the source host name 
563  * \param dst the destination host name
564  * \param *route the route where the links are stored. It is either NULL or a ready to use dynar
565  * \param *latency the latency, if needed
566  * 
567  * This function is called by "get_route" and "get_latency". It allows to walk
568  * recursively through the ASes tree.
569  */
570 static void _get_route_and_latency(sg_routing_edge_t src, sg_routing_edge_t dst,
571                                    xbt_dynar_t * links, double *latency)
572 {
573   s_route_t route;
574   memset(&route,0,sizeof(route));
575
576   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src->name, dst->name);
577   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
578
579   /* Find how src and dst are interconnected */
580   AS_t common_father, src_father, dst_father;
581   elements_father(src, dst, &common_father, &src_father, &dst_father);
582   XBT_DEBUG("elements_father: common father '%s' src_father '%s' dst_father '%s'",
583       common_father->name,src_father->name,dst_father->name);
584
585   /* Check whether a direct bypass is defined */
586   route_t e_route_bypass = NULL;
587   if (common_father->get_bypass_route)
588     e_route_bypass = common_father->get_bypass_route(common_father, src, dst, latency);
589
590   /* Common ancestor is kind enough to declare a bypass route from src to dst -- use it and bail out */
591   if (e_route_bypass) {
592     xbt_dynar_merge(links,&(e_route_bypass->link_list));
593     generic_free_route(e_route_bypass);
594     return;
595   }
596
597   /* If src and dst are in the same AS, life is good */
598   if (src_father == dst_father) {       /* SURF_ROUTING_BASE */
599
600     route.link_list = *links;
601
602     common_father->get_route_and_latency(common_father, src, dst, &route,latency);
603     return;
604   }
605
606   /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
607
608   route.link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
609   // Find the net_card corresponding to father
610   sg_routing_edge_t src_father_net_elm = src_father->net_elem;
611   sg_routing_edge_t dst_father_net_elm = dst_father->net_elem;
612
613   common_father->get_route_and_latency(common_father, src_father_net_elm, dst_father_net_elm, &route,latency);
614
615   xbt_assert((route.src_gateway != NULL) && (route.dst_gateway != NULL),
616       "bad gateways for route from \"%s\" to \"%s\"", src->name, dst->name);
617
618   sg_routing_edge_t src_gateway_net_elm = route.src_gateway;
619   sg_routing_edge_t dst_gateway_net_elm = route.dst_gateway;
620
621   /* If source gateway is not our source, we have to recursively find our way up to this point */
622   if (src != src_gateway_net_elm)
623     _get_route_and_latency(src, src_gateway_net_elm, links, latency);
624
625   xbt_dynar_merge(links,&(route.link_list));
626
627   /* If dest gateway is not our destination, we have to recursively find our way from this point */
628   // FIXME why can't I factorize it the same way than [src;src_gw] without breaking the examples??
629   if (dst_gateway_net_elm != dst) {
630     _get_route_and_latency(dst_gateway_net_elm, dst, links, latency);
631   }
632   xbt_dynar_free(&route.link_list);
633 }
634
635 /**
636  * \brief Find a route between hosts
637  *
638  * \param src the network_element_t for src host
639  * \param dst the network_element_t for dst host
640  * \param route where to store the list of links.
641  *              If *route=NULL, create a short lived dynar. Else, fill the provided dynar
642  * \param latency where to store the latency experienced on the path (or NULL if not interested)
643  *                It is the caller responsability to initialize latency to 0 (we add to provided route)
644  * \pre route!=NULL
645  *
646  * walk through the routing components tree and find a route between hosts
647  * by calling the differents "get_route" functions in each routing component.
648  */
649 void routing_get_route_and_latency(sg_routing_edge_t src,
650                                    sg_routing_edge_t dst,
651                                    xbt_dynar_t * route, double *latency)
652 {
653   XBT_DEBUG("routing_get_route_and_latency from %s to %s",src->name,dst->name);
654   if (!*route) {
655     xbt_dynar_reset(global_routing->last_route);
656     *route = global_routing->last_route;
657   }
658
659   _get_route_and_latency(src, dst, route, latency);
660
661   xbt_assert(!latency || *latency >= 0.0,
662              "negative latency on route between \"%s\" and \"%s\"", src->name, dst->name);
663 }
664
665 static xbt_dynar_t recursive_get_onelink_routes(AS_t rc)
666 {
667   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
668
669   //adding my one link routes
670   xbt_dynar_t onelink_mine = rc->get_onelink_routes(rc);
671   if (onelink_mine)
672     xbt_dynar_merge(&ret,&onelink_mine);
673
674   //recursing
675   char *key;
676   xbt_dict_cursor_t cursor = NULL;
677   AS_t rc_child;
678   xbt_dict_foreach(rc->routing_sons, cursor, key, rc_child) {
679     xbt_dynar_t onelink_child = recursive_get_onelink_routes(rc_child);
680     if (onelink_child)
681       xbt_dynar_merge(&ret,&onelink_child);
682   }
683   return ret;
684 }
685
686 static xbt_dynar_t get_onelink_routes(void)
687 {
688   return recursive_get_onelink_routes(global_routing->root);
689 }
690
691 e_surf_network_element_type_t routing_get_network_element_type(const char *name)
692 {
693   sg_routing_edge_t rc = sg_routing_edge_by_name_or_null(name);
694   if (rc)
695     return rc->rc_type;
696
697   return SURF_NETWORK_ELEMENT_NULL;
698 }
699
700 /**
701  * \brief Generic method: create the global routing schema
702  * 
703  * Make a global routing structure and set all the parsing functions.
704  */
705 void routing_model_create( void *loopback)
706 {
707   /* config the uniq global routing */
708   global_routing = xbt_new0(s_routing_global_t, 1);
709   global_routing->root = NULL;
710   global_routing->get_onelink_routes = get_onelink_routes;
711   global_routing->loopback = loopback;
712   global_routing->last_route = xbt_dynar_new(sizeof(sg_routing_link_t),NULL);
713   /* no current routing at moment */
714   current_routing = NULL;
715 }
716
717
718 /* ************************************************** */
719 /* ********** PATERN FOR NEW ROUTING **************** */
720
721 /* The minimal configuration of a new routing model need the next functions,
722  * also you need to set at the start of the file, the new model in the model
723  * list. Remember keep the null ending of the list.
724  */
725 /*** Routing model structure ***/
726 // typedef struct {
727 //   s_routing_component_t generic_routing;
728 //   /* things that your routing model need */
729 // } s_routing_component_NEW_t,*routing_component_NEW_t;
730
731 /*** Parse routing model functions ***/
732 // static void model_NEW_set_processing_unit(routing_component_t rc, const char* name) {}
733 // static void model_NEW_set_autonomous_system(routing_component_t rc, const char* name) {}
734 // static void model_NEW_set_route(routing_component_t rc, const char* src, const char* dst, route_t route) {}
735 // static void model_NEW_set_ASroute(routing_component_t rc, const char* src, const char* dst, route_extended_t route) {}
736 // static void model_NEW_set_bypassroute(routing_component_t rc, const char* src, const char* dst, route_extended_t e_route) {}
737
738 /*** Business methods ***/
739 // static route_extended_t NEW_get_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
740 // static route_extended_t NEW_get_bypass_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
741 // static void NEW_finalize(routing_component_t rc) { xbt_free(rc);}
742
743 /*** Creation routing model functions ***/
744 // static void* model_NEW_create(void) {
745 //   routing_component_NEW_t new_component =  xbt_new0(s_routing_component_NEW_t,1);
746 //   new_component->generic_routing.set_processing_unit = model_NEW_set_processing_unit;
747 //   new_component->generic_routing.set_autonomous_system = model_NEW_set_autonomous_system;
748 //   new_component->generic_routing.set_route = model_NEW_set_route;
749 //   new_component->generic_routing.set_ASroute = model_NEW_set_ASroute;
750 //   new_component->generic_routing.set_bypassroute = model_NEW_set_bypassroute;
751 //   new_component->generic_routing.get_route = NEW_get_route;
752 //   new_component->generic_routing.get_bypass_route = NEW_get_bypass_route;
753 //   new_component->generic_routing.finalize = NEW_finalize;
754 //   /* initialization of internal structures */
755 //   return new_component;
756 // } /* mandatory */
757 // static void  model_NEW_load(void) {}   /* mandatory */
758 // static void  model_NEW_unload(void) {} /* mandatory */
759 // static void  model_NEW_end(void) {}    /* mandatory */
760
761 /* ************************************************************************** */
762 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
763
764 static void routing_parse_cluster(sg_platf_cluster_cbarg_t cluster)
765 {
766   char *host_id, *groups, *link_id = NULL;
767   xbt_dict_t patterns = NULL;
768
769   s_sg_platf_host_cbarg_t host;
770   s_sg_platf_link_cbarg_t link;
771
772   unsigned int iter;
773   int start, end, i;
774   xbt_dynar_t radical_elements;
775   xbt_dynar_t radical_ends;
776
777   if (strcmp(cluster->availability_trace, "")
778       || strcmp(cluster->state_trace, "")) {
779     patterns = xbt_dict_new_homogeneous(xbt_free_f);
780     xbt_dict_set(patterns, "id", xbt_strdup(cluster->id), NULL);
781     xbt_dict_set(patterns, "prefix", xbt_strdup(cluster->prefix), NULL);
782     xbt_dict_set(patterns, "suffix", xbt_strdup(cluster->suffix), NULL);
783   }
784
785   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", cluster->id);
786   sg_platf_new_AS_begin(cluster->id, "Cluster");
787
788   current_routing->link_up_down_list
789             = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL);
790
791   //Make all hosts
792   radical_elements = xbt_str_split(cluster->radical, ",");
793   xbt_dynar_foreach(radical_elements, iter, groups) {
794
795     radical_ends = xbt_str_split(groups, "-");
796     start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
797
798     switch (xbt_dynar_length(radical_ends)) {
799     case 1:
800       end = start;
801       break;
802     case 2:
803       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
804       break;
805     default:
806       surf_parse_error("Malformed radical");
807       break;
808     }
809     for (i = start; i <= end; i++) {
810       host_id =
811           bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
812       link_id = bprintf("%s_link_%d", cluster->id, i);
813
814       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->power);
815
816       memset(&host, 0, sizeof(host));
817       host.id = host_id;
818       if (strcmp(cluster->availability_trace, "")) {
819         xbt_dict_set(patterns, "radical", bprintf("%d", i), NULL);
820         char *avail_file = xbt_str_varsubst(cluster->availability_trace, patterns);
821         XBT_DEBUG("\tavailability_file=\"%s\"", avail_file);
822         host.power_trace = tmgr_trace_new(avail_file);
823         xbt_free(avail_file);
824       } else {
825         XBT_DEBUG("\tavailability_file=\"\"");
826       }
827
828       if (strcmp(cluster->state_trace, "")) {
829         char *avail_file = xbt_str_varsubst(cluster->state_trace, patterns);
830         XBT_DEBUG("\tstate_file=\"%s\"", avail_file);
831         host.state_trace = tmgr_trace_new(avail_file);
832         xbt_free(avail_file);
833       } else {
834         XBT_DEBUG("\tstate_file=\"\"");
835       }
836
837       host.power_peak = cluster->power;
838       host.power_scale = 1.0;
839       host.core_amount = cluster->core_amount;
840       host.initial_state = SURF_RESOURCE_ON;
841       host.coord = "";
842       sg_platf_new_host(&host);
843       XBT_DEBUG("</host>");
844
845       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id,
846                 cluster->bw, cluster->lat);
847
848       memset(&link, 0, sizeof(link));
849       link.id = link_id;
850       link.bandwidth = cluster->bw;
851       link.latency = cluster->lat;
852       link.state = SURF_RESOURCE_ON;
853       link.policy = cluster->sharing_policy;
854       sg_platf_new_link(&link);
855
856       s_surf_parsing_link_up_down_t info;
857
858       if (link.policy == SURF_LINK_FULLDUPLEX) {
859         char *tmp_link = bprintf("%s_UP", link_id);
860         info.link_up =
861             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
862         free(tmp_link);
863         tmp_link = bprintf("%s_DOWN", link_id);
864         info.link_down =
865             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
866         free(tmp_link);
867       } else {
868         info.link_up = xbt_lib_get_or_null(link_lib, link_id, SURF_LINK_LEVEL);
869         info.link_down = info.link_up;
870       }
871       xbt_dynar_push(current_routing->link_up_down_list,&info);
872       xbt_free(link_id);
873       xbt_free(host_id);
874     }
875
876     xbt_dynar_free(&radical_ends);
877   }
878   xbt_dynar_free(&radical_elements);
879
880   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
881   // and it's very useful to connect clusters together
882   XBT_DEBUG(" ");
883   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
884   char *newid = NULL;
885   s_sg_platf_router_cbarg_t router;
886   memset(&router, 0, sizeof(router));
887   router.id = cluster->router_id;
888   router.coord = "";
889   if (!router.id || !strcmp(router.id, ""))
890     router.id = newid =
891         bprintf("%s%s_router%s", cluster->prefix, cluster->id,
892                 cluster->suffix);
893   sg_platf_new_router(&router);
894   free(newid);
895
896   //Make the backbone
897   if ((cluster->bb_bw != 0) && (cluster->bb_lat != 0)) {
898     char *link_backbone = bprintf("%s_backbone", cluster->id);
899     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link_backbone,
900               cluster->bb_bw, cluster->bb_lat);
901
902     memset(&link, 0, sizeof(link));
903     link.id = link_backbone;
904     link.bandwidth = cluster->bb_bw;
905     link.latency = cluster->bb_lat;
906     link.state = SURF_RESOURCE_ON;
907     link.policy = cluster->bb_sharing_policy;
908
909     sg_platf_new_link(&link);
910
911     surf_routing_cluster_add_backbone(current_routing, xbt_lib_get_or_null(link_lib, link_backbone, SURF_LINK_LEVEL));
912
913     free(link_backbone);
914   }
915
916   XBT_DEBUG("</AS>");
917   sg_platf_new_AS_end();
918   XBT_DEBUG(" ");
919   xbt_dict_free(&patterns); // no op if it were never set
920 }
921
922 static void routing_parse_postparse(void) {
923   xbt_dict_free(&random_value);
924 }
925
926 static void routing_parse_peer(sg_platf_peer_cbarg_t peer)
927 {
928   static int AX_ptr = 0;
929   char *host_id = NULL;
930   char *router_id, *link_router, *link_backbone, *link_id_up, *link_id_down;
931
932   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
933   static unsigned int surfxml_buffer_stack_stack[1024];
934
935   surfxml_buffer_stack_stack[0] = 0;
936
937   surfxml_bufferstack_push(1);
938
939   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Full\">", peer->id);
940   sg_platf_new_AS_begin(peer->id, "Full");
941
942   XBT_DEBUG(" ");
943   host_id = HOST_PEER(peer->id);
944   router_id = ROUTER_PEER(peer->id);
945   link_id_up = LINK_UP_PEER(peer->id);
946   link_id_down = LINK_DOWN_PEER(peer->id);
947
948   link_router = bprintf("%s_link_router", peer->id);
949   link_backbone = bprintf("%s_backbone", peer->id);
950
951   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->power);
952   s_sg_platf_host_cbarg_t host;
953   memset(&host, 0, sizeof(host));
954   host.initial_state = SURF_RESOURCE_ON;
955   host.id = host_id;
956   host.power_peak = peer->power;
957   host.power_scale = 1.0;
958   host.power_trace = peer->availability_trace;
959   host.state_trace = peer->state_trace;
960   host.core_amount = 1;
961   host.coord = peer->coord;
962   sg_platf_new_host(&host);
963
964
965   XBT_DEBUG("<router id=\"%s\"\tcoordinates=\"%s\"/>", router_id, peer->coord);
966   s_sg_platf_router_cbarg_t router;
967   memset(&router, 0, sizeof(router));
968   router.id = router_id;
969   router.coord = peer->coord;
970   sg_platf_new_router(&router);
971
972   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_up,
973             peer->bw_in, peer->lat);
974   s_sg_platf_link_cbarg_t link;
975   memset(&link, 0, sizeof(link));
976   link.state = SURF_RESOURCE_ON;
977   link.policy = SURF_LINK_SHARED;
978   link.id = link_id_up;
979   link.bandwidth = peer->bw_in;
980   link.latency = peer->lat;
981   sg_platf_new_link(&link);
982
983   // FIXME: dealing with full duplex is not the role of this piece of code, I'd say [Mt]
984   // Instead, it should be created fullduplex, and the models will do what's needed in this case
985   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_down,
986             peer->bw_out, peer->lat);
987   link.id = link_id_down;
988   sg_platf_new_link(&link);
989
990   XBT_DEBUG(" ");
991
992   // begin here
993   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", host_id, router_id);
994   XBT_DEBUG("symmetrical=\"NO\">");
995   SURFXML_BUFFER_SET(route_src, host_id);
996   SURFXML_BUFFER_SET(route_dst, router_id);
997   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
998   SURFXML_START_TAG(route);
999
1000   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_up);
1001   SURFXML_BUFFER_SET(link_ctn_id, link_id_up);
1002   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1003   SURFXML_START_TAG(link_ctn);
1004   SURFXML_END_TAG(link_ctn);
1005
1006   XBT_DEBUG("</route>");
1007   SURFXML_END_TAG(route);
1008
1009   //Opposite Route
1010   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", router_id, host_id);
1011   XBT_DEBUG("symmetrical=\"NO\">");
1012   SURFXML_BUFFER_SET(route_src, router_id);
1013   SURFXML_BUFFER_SET(route_dst, host_id);
1014   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1015   SURFXML_START_TAG(route);
1016
1017   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_down);
1018   SURFXML_BUFFER_SET(link_ctn_id, link_id_down);
1019   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1020   SURFXML_START_TAG(link_ctn);
1021   SURFXML_END_TAG(link_ctn);
1022
1023   XBT_DEBUG("</route>");
1024   SURFXML_END_TAG(route);
1025
1026   XBT_DEBUG("</AS>");
1027   sg_platf_new_AS_end();
1028   XBT_DEBUG(" ");
1029
1030   //xbt_dynar_free(&tab_elements_num);
1031   free(host_id);
1032   free(router_id);
1033   free(link_router);
1034   free(link_backbone);
1035   free(link_id_up);
1036   free(link_id_down);
1037   surfxml_bufferstack_pop(1);
1038 }
1039
1040 static void routing_parse_Srandom(void)
1041 {
1042   double mean, std, min, max, seed;
1043   char *random_id = A_surfxml_random_id;
1044   char *random_radical = A_surfxml_random_radical;
1045   char *rd_name = NULL;
1046   char *rd_value;
1047   mean = surf_parse_get_double(A_surfxml_random_mean);
1048   std = surf_parse_get_double(A_surfxml_random_std_deviation);
1049   min = surf_parse_get_double(A_surfxml_random_min);
1050   max = surf_parse_get_double(A_surfxml_random_max);
1051   seed = surf_parse_get_double(A_surfxml_random_seed);
1052
1053   double res = 0;
1054   int i = 0;
1055   random_data_t random = xbt_new0(s_random_data_t, 1);
1056   char *tmpbuf;
1057
1058   xbt_dynar_t radical_elements;
1059   unsigned int iter;
1060   char *groups;
1061   int start, end;
1062   xbt_dynar_t radical_ends;
1063
1064   switch (A_surfxml_random_generator) {
1065   case AU_surfxml_random_generator:
1066   case A_surfxml_random_generator_NONE:
1067     random->generator = NONE;
1068     break;
1069   case A_surfxml_random_generator_DRAND48:
1070     random->generator = DRAND48;
1071     break;
1072   case A_surfxml_random_generator_RAND:
1073     random->generator = RAND;
1074     break;
1075   case A_surfxml_random_generator_RNGSTREAM:
1076     random->generator = RNGSTREAM;
1077     break;
1078   default:
1079     surf_parse_error("Invalid random generator");
1080     break;
1081   }
1082   random->seed = seed;
1083   random->min = min;
1084   random->max = max;
1085
1086   /* Check user stupidities */
1087   if (max < min)
1088     THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
1089   if (mean < min)
1090     THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean, min);
1091   if (mean > max)
1092     THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean, max);
1093
1094   /* normalize the mean and standard deviation before storing */
1095   random->mean = (mean - min) / (max - min);
1096   random->std = std / (max - min);
1097
1098   if (random->mean * (1 - random->mean) < random->std * random->std)
1099     THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
1100            random->mean, random->std);
1101
1102   XBT_DEBUG
1103       ("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
1104        random_id, random->min, random->max, random->mean, random->std,
1105        (int)random->generator, random->seed, random_radical);
1106
1107   if (!random_value)
1108     random_value = xbt_dict_new_homogeneous(free);
1109
1110   if (!strcmp(random_radical, "")) {
1111     res = random_generate(random);
1112     rd_value = bprintf("%f", res);
1113     xbt_dict_set(random_value, random_id, rd_value, NULL);
1114   } else {
1115     radical_elements = xbt_str_split(random_radical, ",");
1116     xbt_dynar_foreach(radical_elements, iter, groups) {
1117       radical_ends = xbt_str_split(groups, "-");
1118       switch (xbt_dynar_length(radical_ends)) {
1119       case 1:
1120         xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1121                    "Custom Random '%s' already exists !", random_id);
1122         res = random_generate(random);
1123         tmpbuf =
1124             bprintf("%s%d", random_id,
1125                     atoi(xbt_dynar_getfirst_as(radical_ends, char *)));
1126         xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1127         xbt_free(tmpbuf);
1128         break;
1129
1130       case 2:
1131         start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
1132         end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
1133         for (i = start; i <= end; i++) {
1134           xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1135                      "Custom Random '%s' already exists !", bprintf("%s%d",
1136                                                                     random_id,
1137                                                                     i));
1138           res = random_generate(random);
1139           tmpbuf = bprintf("%s%d", random_id, i);
1140           xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1141           xbt_free(tmpbuf);
1142         }
1143         break;
1144       default:
1145         XBT_CRITICAL("Malformed radical");
1146         break;
1147       }
1148       res = random_generate(random);
1149       rd_name = bprintf("%s_router", random_id);
1150       rd_value = bprintf("%f", res);
1151       xbt_dict_set(random_value, rd_name, rd_value, NULL);
1152
1153       xbt_dynar_free(&radical_ends);
1154     }
1155     free(rd_name);
1156     xbt_dynar_free(&radical_elements);
1157   }
1158 }
1159
1160 void routing_register_callbacks()
1161 {
1162   sg_platf_host_add_cb(parse_S_host);
1163   sg_platf_router_add_cb(parse_S_router);
1164
1165   surfxml_add_callback(STag_surfxml_random_cb_list, &routing_parse_Srandom);
1166
1167   surfxml_add_callback(STag_surfxml_route_cb_list, &routing_parse_S_route);
1168   surfxml_add_callback(STag_surfxml_ASroute_cb_list, &routing_parse_S_ASroute);
1169   surfxml_add_callback(STag_surfxml_bypassRoute_cb_list,
1170                        &routing_parse_S_bypassRoute);
1171   surfxml_add_callback(STag_surfxml_bypassASroute_cb_list,
1172                        &routing_parse_S_bypassASroute);
1173
1174   surfxml_add_callback(ETag_surfxml_link_ctn_cb_list, &routing_parse_link_ctn);
1175
1176   surfxml_add_callback(ETag_surfxml_route_cb_list, &routing_parse_E_route);
1177   surfxml_add_callback(ETag_surfxml_ASroute_cb_list, &routing_parse_E_ASroute);
1178   surfxml_add_callback(ETag_surfxml_bypassRoute_cb_list,
1179                        &routing_parse_E_bypassRoute);
1180   surfxml_add_callback(ETag_surfxml_bypassASroute_cb_list,
1181                        &routing_parse_E_bypassASroute);
1182
1183   sg_platf_cluster_add_cb(routing_parse_cluster);
1184
1185   sg_platf_peer_add_cb(routing_parse_peer);
1186   sg_platf_postparse_add_cb(routing_parse_postparse);
1187
1188   /* we care about the ASes while parsing the platf. Incredible, isnt it? */
1189   sg_platf_AS_end_add_cb(routing_AS_end);
1190   sg_platf_AS_begin_add_cb(routing_AS_begin);
1191
1192 #ifdef HAVE_TRACING
1193   instr_routing_define_callbacks();
1194 #endif
1195 }
1196
1197 /**
1198  * \brief Recursive function for finalize
1199  *
1200  * \param rc the source host name
1201  *
1202  * This fuction is call by "finalize". It allow to finalize the
1203  * AS or routing components. It delete all the structures.
1204  */
1205 static void finalize_rec(AS_t as) {
1206   xbt_dict_cursor_t cursor = NULL;
1207   char *key;
1208   AS_t elem;
1209
1210   xbt_dict_foreach(as->routing_sons, cursor, key, elem) {
1211     finalize_rec(elem);
1212   }
1213
1214   as->finalize(as);
1215 }
1216
1217 /** \brief Frees all memory allocated by the routing module */
1218 void routing_exit(void) {
1219   if (!global_routing)
1220     return;
1221   xbt_dynar_free(&global_routing->last_route);
1222   finalize_rec(global_routing->root);
1223   xbt_free(global_routing);
1224 }