Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sorry ;)
[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   void *link;
508   unsigned int cpt;
509   s_route_t route;
510   memset(&route,0,sizeof(route));
511
512   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src, dst);
513   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
514
515   /* Find how src and dst are interconnected */
516   AS_t common_father, src_father, dst_father;
517   elements_father(src, dst, &common_father, &src_father, &dst_father);
518
519   /* If src and dst are in the same AS, life is good */
520   if (src_father == dst_father) {       /* SURF_ROUTING_BASE */
521
522     route.link_list = *links;
523
524     common_father->get_route_and_latency(common_father, src, dst, &route,latency);
525
526     xbt_free(route.src_gateway);
527     xbt_free(route.dst_gateway);
528     return;
529   }
530
531   /* If we are here, src and dst are not in the same AS; check whether a direct bypass is defined */
532
533   route_t e_route_bypass = NULL;
534   if (common_father->get_bypass_route)
535     e_route_bypass = common_father->get_bypass_route(common_father, src, dst);
536
537   if (e_route_bypass) { /* Common ancestor is kind enough to declare a bypass route from src to dst -- use it and bail out */
538     if (latency)
539       xbt_die("Bypass cannot work yet with get_latency"); // FIXME: get_bypass_route should update the latency itself, just like get_route
540
541 //    // FIXME this path is never tested. I need examples to check the bypass mechanism...
542 //    THROW_UNIMPLEMENTED; // let's warn the users of the problem
543     xbt_dynar_foreach(e_route_bypass->link_list, cpt, link) {
544       xbt_dynar_push(*links, &link);
545     }
546
547     generic_free_route(e_route_bypass);
548     return;
549   }
550
551
552   /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
553
554   route.link_list = xbt_dynar_new(global_routing->size_of_link, NULL);
555   common_father->get_route_and_latency(common_father, src_father->name, dst_father->name, &route,latency);
556
557   xbt_assert((route.src_gateway != NULL) && (route.dst_gateway != NULL),
558       "bad gateways for route from \"%s\" to \"%s\"", src, dst);
559
560   char*src_gateway = route.src_gateway;
561   char*dst_gateway = route.dst_gateway;
562
563   /* If source gateway is not our source, we have to recursively find our way up to this point */
564   if (strcmp(src, src_gateway))
565     _get_route_and_latency(src, src_gateway, links, latency);
566
567   xbt_dynar_foreach(route.link_list, cpt, link) {
568     xbt_dynar_push(*links, &link);
569   }
570
571   /* If dest gateway is not our destination, we have to recursively find our way from this point */
572   // FIXME why can't I factorize it the same way than [src;src_gw] without breaking the examples??
573   if (strcmp(dst_gateway, dst)) {
574     xbt_dynar_t route_dst = xbt_dynar_new(global_routing->size_of_link,NULL);
575
576     _get_route_and_latency(dst_gateway, dst, &route_dst, latency);
577
578     xbt_dynar_foreach(route_dst, cpt, link) {
579       xbt_dynar_push(*links, &link);
580     }
581     xbt_dynar_free(&route_dst);
582   }
583
584   xbt_free(src_gateway);
585   xbt_free_f(dst_gateway);
586   xbt_dynar_free(&route.link_list);
587 }
588
589 /**
590  * \brief Find a route between hosts
591  *
592  * \param src the source host name
593  * \param dst the destination host name
594  * \param route where to store the list of links.
595  *              If *route=NULL, create a short lived dynar. Else, fill the provided dynar
596  * \param latency where to store the latency experienced on the path (or NULL if not interested)
597  *                It is the caller responsability to initialize latency to 0 (we add to provided route)
598  * \pre route!=NULL
599  *
600  * walk through the routing components tree and find a route between hosts
601  * by calling the differents "get_route" functions in each routing component.
602  */
603 void routing_get_route_and_latency(const char *src, const char *dst,
604                                    xbt_dynar_t * route, double *latency)
605 {
606   if (!*route) {
607     xbt_dynar_reset(global_routing->last_route);
608     *route = global_routing->last_route;
609   }
610
611   _get_route_and_latency(src, dst, route, latency);
612
613   xbt_assert(!latency || *latency >= 0.0,
614              "negative latency on route between \"%s\" and \"%s\"", src, dst);
615 }
616
617 static xbt_dynar_t recursive_get_onelink_routes(AS_t rc)
618 {
619   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
620
621   //adding my one link routes
622   unsigned int cpt;
623   void *link;
624   xbt_dynar_t onelink_mine = rc->get_onelink_routes(rc);
625   if (onelink_mine) {
626     xbt_dynar_foreach(onelink_mine, cpt, link) {
627       xbt_dynar_push(ret, &link);
628     }
629   }
630   //recursing
631   char *key;
632   xbt_dict_cursor_t cursor = NULL;
633   AS_t rc_child;
634   xbt_dict_foreach(rc->routing_sons, cursor, key, rc_child) {
635     xbt_dynar_t onelink_child = recursive_get_onelink_routes(rc_child);
636     if (onelink_child) {
637       xbt_dynar_foreach(onelink_child, cpt, link) {
638         xbt_dynar_push(ret, &link);
639       }
640     }
641   }
642   return ret;
643 }
644
645 static xbt_dynar_t get_onelink_routes(void)
646 {
647   return recursive_get_onelink_routes(global_routing->root);
648 }
649
650 e_surf_network_element_type_t routing_get_network_element_type(const char *name)
651 {
652   network_element_info_t rc = NULL;
653
654   rc = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
655   if (rc)
656     return rc->rc_type;
657
658   rc = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
659   if (rc)
660     return rc->rc_type;
661
662   return SURF_NETWORK_ELEMENT_NULL;
663 }
664
665 /**
666  * \brief Generic method: create the global routing schema
667  * 
668  * Make a global routing structure and set all the parsing functions.
669  */
670 void routing_model_create(size_t size_of_links, void *loopback)
671 {
672   /* config the uniq global routing */
673   global_routing = xbt_new0(s_routing_global_t, 1);
674   global_routing->root = NULL;
675   global_routing->get_onelink_routes = get_onelink_routes;
676   global_routing->loopback = loopback;
677   global_routing->size_of_link = size_of_links;
678   global_routing->last_route = xbt_dynar_new(global_routing->size_of_link,NULL);
679   /* no current routing at moment */
680   current_routing = NULL;
681 }
682
683
684 /* ************************************************** */
685 /* ********** PATERN FOR NEW ROUTING **************** */
686
687 /* The minimal configuration of a new routing model need the next functions,
688  * also you need to set at the start of the file, the new model in the model
689  * list. Remember keep the null ending of the list.
690  */
691 /*** Routing model structure ***/
692 // typedef struct {
693 //   s_routing_component_t generic_routing;
694 //   /* things that your routing model need */
695 // } s_routing_component_NEW_t,*routing_component_NEW_t;
696
697 /*** Parse routing model functions ***/
698 // static void model_NEW_set_processing_unit(routing_component_t rc, const char* name) {}
699 // static void model_NEW_set_autonomous_system(routing_component_t rc, const char* name) {}
700 // static void model_NEW_set_route(routing_component_t rc, const char* src, const char* dst, route_t route) {}
701 // static void model_NEW_set_ASroute(routing_component_t rc, const char* src, const char* dst, route_extended_t route) {}
702 // static void model_NEW_set_bypassroute(routing_component_t rc, const char* src, const char* dst, route_extended_t e_route) {}
703
704 /*** Business methods ***/
705 // static route_extended_t NEW_get_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
706 // static route_extended_t NEW_get_bypass_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
707 // static void NEW_finalize(routing_component_t rc) { xbt_free(rc);}
708
709 /*** Creation routing model functions ***/
710 // static void* model_NEW_create(void) {
711 //   routing_component_NEW_t new_component =  xbt_new0(s_routing_component_NEW_t,1);
712 //   new_component->generic_routing.set_processing_unit = model_NEW_set_processing_unit;
713 //   new_component->generic_routing.set_autonomous_system = model_NEW_set_autonomous_system;
714 //   new_component->generic_routing.set_route = model_NEW_set_route;
715 //   new_component->generic_routing.set_ASroute = model_NEW_set_ASroute;
716 //   new_component->generic_routing.set_bypassroute = model_NEW_set_bypassroute;
717 //   new_component->generic_routing.get_route = NEW_get_route;
718 //   new_component->generic_routing.get_bypass_route = NEW_get_bypass_route;
719 //   new_component->generic_routing.finalize = NEW_finalize;
720 //   /* initialization of internal structures */
721 //   return new_component;
722 // } /* mandatory */
723 // static void  model_NEW_load(void) {}   /* mandatory */
724 // static void  model_NEW_unload(void) {} /* mandatory */
725 // static void  model_NEW_end(void) {}    /* mandatory */
726
727 /* ************************************************************************** */
728 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
729
730 static void routing_parse_storage(sg_platf_storage_cbarg_t storage)
731 {
732   xbt_assert(!xbt_lib_get_or_null(storage_lib, storage->id,ROUTING_STORAGE_LEVEL),
733                "Reading a storage, processing unit \"%s\" already exists", storage->id);
734
735   // Verification of an existing type_id
736   void* storage_type = xbt_lib_get_or_null(storage_type_lib, storage->type_id,ROUTING_STORAGE_TYPE_LEVEL);
737   xbt_assert(storage_type,"Reading a storage, type id \"%s\" does not exists", storage->type_id);
738
739   XBT_DEBUG("ROUTING Create a storage name '%s' with type_id '%s'",
740       storage->id,
741       storage->type_id);
742
743   xbt_lib_set(storage_lib,
744       storage->id,
745       ROUTING_STORAGE_LEVEL,
746       (void *) xbt_strdup(storage->type_id));
747 }
748 static void routing_parse_storage_type(sg_platf_storage_type_cbarg_t storage_type)
749 {
750   xbt_assert(!xbt_lib_get_or_null(storage_type_lib, storage_type->id,ROUTING_STORAGE_TYPE_LEVEL),
751                "Reading a storage type, processing unit \"%s\" already exists", storage_type->id);
752
753   storage_type_t stype = xbt_new0(s_storage_type_t, 1);
754   stype->model = xbt_strdup(storage_type->model);
755   stype->properties = storage_type->properties;
756   stype->content = xbt_strdup(storage_type->content);
757   stype->type_id = xbt_strdup(storage_type->id);
758
759   XBT_DEBUG("ROUTING Create a storage type id '%s' with model '%s' content '%s' and properties '%p'",
760       stype->type_id,
761       stype->model,
762       stype->content,
763       stype->properties);
764
765   xbt_lib_set(storage_type_lib,
766       stype->type_id,
767       ROUTING_STORAGE_TYPE_LEVEL,
768       (void *) stype);
769 }
770 static void routing_parse_mstorage(sg_platf_mstorage_cbarg_t mstorage)
771 {
772   THROW_UNIMPLEMENTED;
773 //  mount_t mnt = xbt_new0(s_mount_t, 1);
774 //  mnt->id = xbt_strdup(mstorage->type_id);
775 //  mnt->name = xbt_strdup(mstorage->name);
776 //
777 //  if(!mount_list){
778 //    XBT_DEBUG("Creata a Mount list for %s",A_surfxml_host_id);
779 //    mount_list = xbt_dynar_new(sizeof(char *), NULL);
780 //  }
781 //  xbt_dynar_push(mount_list,(void *) mnt);
782 //  free(mnt->id);
783 //  free(mnt->name);
784 //  xbt_free(mnt);
785 //  XBT_DEBUG("ROUTING Mount a storage name '%s' with type_id '%s'",mstorage->name, mstorage->id);
786 }
787
788 static void mount_free(void *p)
789 {
790   mount_t mnt = p;
791   xbt_free(mnt->id);
792   xbt_free(mnt->name);
793 }
794
795 static void routing_parse_mount(sg_platf_mount_cbarg_t mount)
796 {
797
798   // Verification of an existing storage
799   void* storage = xbt_lib_get_or_null(storage_lib, mount->id,ROUTING_STORAGE_LEVEL);
800   xbt_assert(storage,"Disk id \"%s\" does not exists", mount->id);
801
802   XBT_DEBUG("ROUTING Mount '%s' on '%s'",mount->id, mount->name);
803
804   mount_t mnt = xbt_new0(s_mount_t, 1);
805   mnt->id = xbt_strdup(mount->id);
806   mnt->name = xbt_strdup(mount->name);
807
808   if(!mount_list){
809     XBT_DEBUG("Create a Mount list for %s",A_surfxml_host_id);
810     mount_list = xbt_dynar_new(sizeof(s_mount_t), mount_free);
811   }
812   xbt_dynar_push(mount_list,&mnt);
813
814 }
815
816 static void routing_parse_cluster(sg_platf_cluster_cbarg_t cluster)
817 {
818   char *host_id, *groups, *link_id = NULL;
819   xbt_dict_t patterns = NULL;
820
821   s_sg_platf_host_cbarg_t host;
822   s_sg_platf_link_cbarg_t link;
823
824   unsigned int iter;
825   int start, end, i;
826   xbt_dynar_t radical_elements;
827   xbt_dynar_t radical_ends;
828
829   if (strcmp(cluster->availability_trace, "")
830       || strcmp(cluster->state_trace, "")) {
831     patterns = xbt_dict_new_homogeneous(xbt_free_f);
832     xbt_dict_set(patterns, "id", xbt_strdup(cluster->id), NULL);
833     xbt_dict_set(patterns, "prefix", xbt_strdup(cluster->prefix), NULL);
834     xbt_dict_set(patterns, "suffix", xbt_strdup(cluster->suffix), NULL);
835   }
836
837
838   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", cluster->id);
839   sg_platf_new_AS_begin(cluster->id, "Cluster");
840
841   //Make all hosts
842   radical_elements = xbt_str_split(cluster->radical, ",");
843   xbt_dynar_foreach(radical_elements, iter, groups) {
844
845     radical_ends = xbt_str_split(groups, "-");
846     start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
847
848     switch (xbt_dynar_length(radical_ends)) {
849     case 1:
850       end = start;
851       break;
852     case 2:
853       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
854       break;
855     default:
856       surf_parse_error("Malformed radical");
857       break;
858     }
859     for (i = start; i <= end; i++) {
860       host_id =
861           bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
862       link_id = bprintf("%s_link_%d", cluster->id, i);
863
864       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->power);
865
866       memset(&host, 0, sizeof(host));
867       host.id = host_id;
868       if (strcmp(cluster->availability_trace, "")) {
869         xbt_dict_set(patterns, "radical", bprintf("%d", i), NULL);
870         char *avail_file = xbt_str_varsubst(cluster->availability_trace, patterns);
871         XBT_DEBUG("\tavailability_file=\"%s\"", avail_file);
872         host.power_trace = tmgr_trace_new(avail_file);
873         xbt_free(avail_file);
874       } else {
875         XBT_DEBUG("\tavailability_file=\"\"");
876       }
877
878       if (strcmp(cluster->state_trace, "")) {
879         char *avail_file = xbt_str_varsubst(cluster->state_trace, patterns);
880         XBT_DEBUG("\tstate_file=\"%s\"", avail_file);
881         host.state_trace = tmgr_trace_new(avail_file);
882         xbt_free(avail_file);
883       } else {
884         XBT_DEBUG("\tstate_file=\"\"");
885       }
886
887       host.power_peak = cluster->power;
888       host.power_scale = 1.0;
889       host.core_amount = cluster->core_amount;
890       host.initial_state = SURF_RESOURCE_ON;
891       host.coord = "";
892       sg_platf_new_host(&host);
893       XBT_DEBUG("</host>");
894
895       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id,
896                 cluster->bw, cluster->lat);
897
898       memset(&link, 0, sizeof(link));
899       link.id = link_id;
900       link.bandwidth = cluster->bw;
901       link.latency = cluster->lat;
902       link.state = SURF_RESOURCE_ON;
903       link.policy = cluster->sharing_policy;
904       sg_platf_new_link(&link);
905
906       surf_parsing_link_up_down_t info =
907           xbt_new0(s_surf_parsing_link_up_down_t, 1);
908       if (link.policy == SURF_LINK_FULLDUPLEX) {
909         char *tmp_link = bprintf("%s_UP", link_id);
910         info->link_up =
911             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
912         free(tmp_link);
913         tmp_link = bprintf("%s_DOWN", link_id);
914         info->link_down =
915             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
916         free(tmp_link);
917       } else {
918         info->link_up = xbt_lib_get_or_null(link_lib, link_id, SURF_LINK_LEVEL);
919         info->link_down = info->link_up;
920       }
921       surf_routing_cluster_add_link(host_id, info);
922
923       xbt_free(link_id);
924       xbt_free(host_id);
925     }
926
927     xbt_dynar_free(&radical_ends);
928   }
929   xbt_dynar_free(&radical_elements);
930
931   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
932   // and it's very useful to connect clusters together
933   XBT_DEBUG(" ");
934   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
935   char *newid = NULL;
936   s_sg_platf_router_cbarg_t router;
937   memset(&router, 0, sizeof(router));
938   router.id = cluster->router_id;
939   router.coord = "";
940   if (!router.id || !strcmp(router.id, ""))
941     router.id = newid =
942         bprintf("%s%s_router%s", cluster->prefix, cluster->id,
943                 cluster->suffix);
944   sg_platf_new_router(&router);
945   free(newid);
946
947   //Make the backbone
948   if ((cluster->bb_bw != 0) && (cluster->bb_lat != 0)) {
949     char *link_backbone = bprintf("%s_backbone", cluster->id);
950     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link_backbone,
951               cluster->bb_bw, cluster->bb_lat);
952
953     memset(&link, 0, sizeof(link));
954     link.id = link_backbone;
955     link.bandwidth = cluster->bb_bw;
956     link.latency = cluster->bb_lat;
957     link.state = SURF_RESOURCE_ON;
958     link.policy = cluster->bb_sharing_policy;
959
960     sg_platf_new_link(&link);
961
962     surf_routing_cluster_add_backbone(current_routing, xbt_lib_get_or_null(link_lib, link_backbone, SURF_LINK_LEVEL));
963
964     free(link_backbone);
965   }
966
967   XBT_DEBUG("</AS>");
968   sg_platf_new_AS_end();
969   XBT_DEBUG(" ");
970   xbt_dict_free(&patterns); // no op if it were never set
971 }
972
973 static void routing_parse_postparse(void) {
974   xbt_dict_free(&random_value);
975 }
976
977 static void routing_parse_peer(sg_platf_peer_cbarg_t peer)
978 {
979   static int AX_ptr = 0;
980   char *host_id = NULL;
981   char *router_id, *link_router, *link_backbone, *link_id_up, *link_id_down;
982
983   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
984   static unsigned int surfxml_buffer_stack_stack[1024];
985
986   surfxml_buffer_stack_stack[0] = 0;
987
988   surfxml_bufferstack_push(1);
989
990   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Full\">", peer->id);
991   sg_platf_new_AS_begin(peer->id, "Full");
992
993   XBT_DEBUG(" ");
994   host_id = HOST_PEER(peer->id);
995   router_id = ROUTER_PEER(peer->id);
996   link_id_up = LINK_UP_PEER(peer->id);
997   link_id_down = LINK_DOWN_PEER(peer->id);
998
999   link_router = bprintf("%s_link_router", peer->id);
1000   link_backbone = bprintf("%s_backbone", peer->id);
1001
1002   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->power);
1003   s_sg_platf_host_cbarg_t host;
1004   memset(&host, 0, sizeof(host));
1005   host.initial_state = SURF_RESOURCE_ON;
1006   host.id = host_id;
1007   host.power_peak = peer->power;
1008   host.power_scale = 1.0;
1009   host.power_trace = peer->availability_trace;
1010   host.state_trace = peer->state_trace;
1011   host.core_amount = 1;
1012   host.coord = peer->coord;
1013   sg_platf_new_host(&host);
1014
1015
1016   XBT_DEBUG("<router id=\"%s\"\tcoordinates=\"%s\"/>", router_id, peer->coord);
1017   s_sg_platf_router_cbarg_t router;
1018   memset(&router, 0, sizeof(router));
1019   router.id = router_id;
1020   router.coord = peer->coord;
1021   sg_platf_new_router(&router);
1022
1023   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_up,
1024             peer->bw_in, peer->lat);
1025   s_sg_platf_link_cbarg_t link;
1026   memset(&link, 0, sizeof(link));
1027   link.state = SURF_RESOURCE_ON;
1028   link.policy = SURF_LINK_SHARED;
1029   link.id = link_id_up;
1030   link.bandwidth = peer->bw_in;
1031   link.latency = peer->lat;
1032   sg_platf_new_link(&link);
1033
1034   // FIXME: dealing with full duplex is not the role of this piece of code, I'd say [Mt]
1035   // Instead, it should be created fullduplex, and the models will do what's needed in this case
1036   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_down,
1037             peer->bw_out, peer->lat);
1038   link.id = link_id_down;
1039   sg_platf_new_link(&link);
1040
1041   XBT_DEBUG(" ");
1042
1043   // begin here
1044   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", host_id, router_id);
1045   XBT_DEBUG("symmetrical=\"NO\">");
1046   SURFXML_BUFFER_SET(route_src, host_id);
1047   SURFXML_BUFFER_SET(route_dst, router_id);
1048   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1049   SURFXML_START_TAG(route);
1050
1051   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_up);
1052   SURFXML_BUFFER_SET(link_ctn_id, link_id_up);
1053   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1054   SURFXML_START_TAG(link_ctn);
1055   SURFXML_END_TAG(link_ctn);
1056
1057   XBT_DEBUG("</route>");
1058   SURFXML_END_TAG(route);
1059
1060   //Opposite Route
1061   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", router_id, host_id);
1062   XBT_DEBUG("symmetrical=\"NO\">");
1063   SURFXML_BUFFER_SET(route_src, router_id);
1064   SURFXML_BUFFER_SET(route_dst, host_id);
1065   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1066   SURFXML_START_TAG(route);
1067
1068   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_down);
1069   SURFXML_BUFFER_SET(link_ctn_id, link_id_down);
1070   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1071   SURFXML_START_TAG(link_ctn);
1072   SURFXML_END_TAG(link_ctn);
1073
1074   XBT_DEBUG("</route>");
1075   SURFXML_END_TAG(route);
1076
1077   XBT_DEBUG("</AS>");
1078   sg_platf_new_AS_end();
1079   XBT_DEBUG(" ");
1080
1081   //xbt_dynar_free(&tab_elements_num);
1082   free(host_id);
1083   free(router_id);
1084   free(link_router);
1085   free(link_backbone);
1086   free(link_id_up);
1087   free(link_id_down);
1088   surfxml_bufferstack_pop(1);
1089 }
1090
1091 static void routing_parse_Srandom(void)
1092 {
1093   double mean, std, min, max, seed;
1094   char *random_id = A_surfxml_random_id;
1095   char *random_radical = A_surfxml_random_radical;
1096   char *rd_name = NULL;
1097   char *rd_value;
1098   mean = surf_parse_get_double(A_surfxml_random_mean);
1099   std = surf_parse_get_double(A_surfxml_random_std_deviation);
1100   min = surf_parse_get_double(A_surfxml_random_min);
1101   max = surf_parse_get_double(A_surfxml_random_max);
1102   seed = surf_parse_get_double(A_surfxml_random_seed);
1103
1104   double res = 0;
1105   int i = 0;
1106   random_data_t random = xbt_new0(s_random_data_t, 1);
1107   char *tmpbuf;
1108
1109   xbt_dynar_t radical_elements;
1110   unsigned int iter;
1111   char *groups;
1112   int start, end;
1113   xbt_dynar_t radical_ends;
1114
1115   switch (A_surfxml_random_generator) {
1116   case AU_surfxml_random_generator:
1117   case A_surfxml_random_generator_NONE:
1118     random->generator = NONE;
1119     break;
1120   case A_surfxml_random_generator_DRAND48:
1121     random->generator = DRAND48;
1122     break;
1123   case A_surfxml_random_generator_RAND:
1124     random->generator = RAND;
1125     break;
1126   case A_surfxml_random_generator_RNGSTREAM:
1127     random->generator = RNGSTREAM;
1128     break;
1129   default:
1130     surf_parse_error("Invalid random generator");
1131     break;
1132   }
1133   random->seed = seed;
1134   random->min = min;
1135   random->max = max;
1136
1137   /* Check user stupidities */
1138   if (max < min)
1139     THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
1140   if (mean < min)
1141     THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean, min);
1142   if (mean > max)
1143     THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean, max);
1144
1145   /* normalize the mean and standard deviation before storing */
1146   random->mean = (mean - min) / (max - min);
1147   random->std = std / (max - min);
1148
1149   if (random->mean * (1 - random->mean) < random->std * random->std)
1150     THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
1151            random->mean, random->std);
1152
1153   XBT_DEBUG
1154       ("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
1155        random_id, random->min, random->max, random->mean, random->std,
1156        (int)random->generator, random->seed, random_radical);
1157
1158   if (!random_value)
1159     random_value = xbt_dict_new_homogeneous(free);
1160
1161   if (!strcmp(random_radical, "")) {
1162     res = random_generate(random);
1163     rd_value = bprintf("%f", res);
1164     xbt_dict_set(random_value, random_id, rd_value, NULL);
1165   } else {
1166     radical_elements = xbt_str_split(random_radical, ",");
1167     xbt_dynar_foreach(radical_elements, iter, groups) {
1168       radical_ends = xbt_str_split(groups, "-");
1169       switch (xbt_dynar_length(radical_ends)) {
1170       case 1:
1171         xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1172                    "Custom Random '%s' already exists !", random_id);
1173         res = random_generate(random);
1174         tmpbuf =
1175             bprintf("%s%d", random_id,
1176                     atoi(xbt_dynar_getfirst_as(radical_ends, char *)));
1177         xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1178         xbt_free(tmpbuf);
1179         break;
1180
1181       case 2:
1182         start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
1183         end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
1184         for (i = start; i <= end; i++) {
1185           xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1186                      "Custom Random '%s' already exists !", bprintf("%s%d",
1187                                                                     random_id,
1188                                                                     i));
1189           res = random_generate(random);
1190           tmpbuf = bprintf("%s%d", random_id, i);
1191           xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
1192           xbt_free(tmpbuf);
1193         }
1194         break;
1195       default:
1196         XBT_CRITICAL("Malformed radical");
1197         break;
1198       }
1199       res = random_generate(random);
1200       rd_name = bprintf("%s_router", random_id);
1201       rd_value = bprintf("%f", res);
1202       xbt_dict_set(random_value, rd_name, rd_value, NULL);
1203
1204       xbt_dynar_free(&radical_ends);
1205     }
1206     free(rd_name);
1207     xbt_dynar_free(&radical_elements);
1208   }
1209 }
1210
1211 void routing_register_callbacks()
1212 {
1213   sg_platf_host_add_cb(parse_S_host);
1214   sg_platf_router_add_cb(parse_S_router);
1215
1216   surfxml_add_callback(STag_surfxml_random_cb_list, &routing_parse_Srandom);
1217
1218   surfxml_add_callback(STag_surfxml_route_cb_list, &routing_parse_S_route);
1219   surfxml_add_callback(STag_surfxml_ASroute_cb_list, &routing_parse_S_ASroute);
1220   surfxml_add_callback(STag_surfxml_bypassRoute_cb_list,
1221                        &routing_parse_S_bypassRoute);
1222
1223   surfxml_add_callback(ETag_surfxml_link_ctn_cb_list, &routing_parse_link_ctn);
1224
1225   surfxml_add_callback(ETag_surfxml_route_cb_list, &routing_parse_E_route);
1226   surfxml_add_callback(ETag_surfxml_ASroute_cb_list, &routing_parse_E_ASroute);
1227   surfxml_add_callback(ETag_surfxml_bypassRoute_cb_list,
1228                        &routing_parse_E_bypassRoute);
1229
1230   sg_platf_cluster_add_cb(routing_parse_cluster);
1231
1232   sg_platf_peer_add_cb(routing_parse_peer);
1233   sg_platf_postparse_add_cb(routing_parse_postparse);
1234
1235   sg_platf_storage_add_cb(routing_parse_storage);
1236   sg_platf_mstorage_add_cb(routing_parse_mstorage);
1237   sg_platf_storage_type_add_cb(routing_parse_storage_type);
1238   sg_platf_mount_add_cb(routing_parse_mount);
1239
1240 #ifdef HAVE_TRACING
1241   instr_routing_define_callbacks();
1242 #endif
1243 }
1244
1245 /**
1246  * \brief Recursive function for finalize
1247  *
1248  * \param rc the source host name
1249  *
1250  * This fuction is call by "finalize". It allow to finalize the
1251  * AS or routing components. It delete all the structures.
1252  */
1253 static void finalize_rec(AS_t as) {
1254   xbt_dict_cursor_t cursor = NULL;
1255   char *key;
1256   AS_t elem;
1257
1258   xbt_dict_foreach(as->routing_sons, cursor, key, elem) {
1259     finalize_rec(elem);
1260   }
1261
1262   as->finalize(as);
1263 }
1264
1265 /** \brief Frees all memory allocated by the routing module */
1266 void routing_exit(void) {
1267   if (!global_routing)
1268     return;
1269   xbt_dynar_free(&global_routing->last_route);
1270   finalize_rec(global_routing->root);
1271   xbt_free(global_routing);
1272 }