Logo AND Algorithmique Numérique Distribuée

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