Logo AND Algorithmique Numérique Distribuée

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