Logo AND Algorithmique Numérique Distribuée

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