Logo AND Algorithmique Numérique Distribuée

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