Logo AND Algorithmique Numérique Distribuée

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