Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
16bd132f5ddf3c04f383d3ad6f1d4024eb145d52
[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
11 #include "simgrid/platf_interface.h"    // platform creation API internal interface
12 #include "simgrid/sg_config.h"
13 #include "storage_interface.hpp"
14 #include "src/surf/platform.hpp"
15 #include "surf/surfxml_parse_values.h"
16
17 /*************
18  * Callbacks *
19  *************/
20
21 namespace simgrid {
22 namespace surf {
23
24 simgrid::xbt::signal<void(simgrid::surf::NetCard*)> netcardCreatedCallbacks;
25 simgrid::xbt::signal<void(simgrid::surf::As*)> asCreatedCallbacks;
26
27 }
28 }
29
30 /**
31  * @ingroup SURF_build_api
32  * @brief A library containing all known hosts
33  */
34 xbt_dict_t host_list;
35
36 int COORD_HOST_LEVEL=0;         //Coordinates level
37
38 int MSG_FILE_LEVEL;             //Msg file level
39
40 int SIMIX_STORAGE_LEVEL;        //Simix storage level
41 int MSG_STORAGE_LEVEL;          //Msg storage level
42
43 xbt_lib_t as_router_lib;
44 int ROUTING_ASR_LEVEL;          //Routing level
45 int COORD_ASR_LEVEL;            //Coordinates level
46 int NS3_ASR_LEVEL;              //host node for ns3
47 int ROUTING_PROP_ASR_LEVEL;     //Where the properties are stored
48
49 /** @brief Retrieve a netcard from its name
50  *
51  * Netcards are the thing that connect host or routers to the network
52  */
53 simgrid::surf::NetCard *sg_netcard_by_name_or_null(const char *name)
54 {
55   sg_host_t h = sg_host_by_name(name);
56   simgrid::surf::NetCard *net_elm = h==NULL?NULL: h->pimpl_netcard;
57   if (!net_elm)
58     net_elm = (simgrid::surf::NetCard*) xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
59   return net_elm;
60 }
61
62 /* Global vars */
63 simgrid::surf::RoutingPlatf *routing_platf = NULL;
64
65 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
66
67 /** The current AS in the parsing */
68 static simgrid::surf::As *current_routing = NULL;
69 simgrid::surf::As* routing_get_current()
70 {
71   return current_routing;
72 }
73
74 /* this lines are only for replace use like index in the model table */
75 typedef enum {
76   SURF_MODEL_FULL = 0,
77   SURF_MODEL_FLOYD,
78   SURF_MODEL_DIJKSTRA,
79   SURF_MODEL_DIJKSTRACACHE,
80   SURF_MODEL_NONE,
81   SURF_MODEL_VIVALDI,
82   SURF_MODEL_CLUSTER,
83   SURF_MODEL_TORUS_CLUSTER,
84   SURF_MODEL_FAT_TREE_CLUSTER,
85 } e_routing_types;
86
87 struct s_model_type routing_models[] = {
88   {model_full_create},
89   {model_floyd_create},
90   {model_dijkstra_create},
91   {model_dijkstracache_create},
92   {model_none_create},
93   {model_vivaldi_create},
94   {model_cluster_create},
95   {model_torus_cluster_create},
96   {model_fat_tree_cluster_create},
97   {NULL}
98 };
99
100 /** @brief Add a link connecting an host to the rest of its AS (which must be cluster or vivaldi) */
101 void sg_platf_new_hostlink(sg_platf_host_link_cbarg_t netcard_arg)
102 {
103   simgrid::surf::NetCard *netcard = sg_host_by_name(netcard_arg->id)->pimpl_netcard;
104   xbt_assert(netcard, "Host '%s' not found!", netcard_arg->id);
105   xbt_assert(current_routing->p_modelDesc == &routing_models[SURF_MODEL_CLUSTER] ||
106       current_routing->p_modelDesc == &routing_models[SURF_MODEL_VIVALDI],
107       "You have to be in model Cluster to use tag host_link!");
108
109   s_surf_parsing_link_up_down_t link_up_down;
110   link_up_down.link_up = Link::byName(netcard_arg->link_up);
111   link_up_down.link_down = Link::byName(netcard_arg->link_down);
112
113   xbt_assert(link_up_down.link_up, "Link '%s' not found!",netcard_arg->link_up);
114   xbt_assert(link_up_down.link_down, "Link '%s' not found!",netcard_arg->link_down);
115
116   // If dynar is is greater than netcard id and if the host_link is already defined
117   if((int)xbt_dynar_length(current_routing->p_linkUpDownList) > netcard->getId() &&
118       xbt_dynar_get_as(current_routing->p_linkUpDownList, netcard->getId(), void*))
119   surf_parse_error("Host_link for '%s' is already defined!",netcard_arg->id);
120
121   XBT_DEBUG("Push Host_link for host '%s' to position %d", netcard->getName(), netcard->getId());
122   xbt_dynar_set_as(current_routing->p_linkUpDownList, netcard->getId(), s_surf_parsing_link_up_down_t, link_up_down);
123 }
124
125 void sg_platf_new_trace(sg_platf_trace_cbarg_t trace)
126 {
127   tmgr_trace_t tmgr_trace;
128   if (!trace->file || strcmp(trace->file, "") != 0) {
129     tmgr_trace = tmgr_trace_new_from_file(trace->file);
130   } else {
131     xbt_assert(strcmp(trace->pc_data, ""),
132         "Trace '%s' must have either a content, or point to a file on disk.",trace->id);
133     tmgr_trace = tmgr_trace_new_from_string(trace->id, trace->pc_data, trace->periodicity);
134   }
135   xbt_dict_set(traces_set_list, trace->id, (void *) tmgr_trace, NULL);
136 }
137
138 /**
139  * \brief Make a new routing component to the platform
140  *
141  * Add a new autonomous system to the platform. Any elements (such as host,
142  * router or sub-AS) added after this call and before the corresponding call
143  * to sg_platf_new_AS_close() will be added to this AS.
144  *
145  * Once this function was called, the configuration concerning the used
146  * models cannot be changed anymore.
147  *
148  * @param AS_id name of this autonomous system. Must be unique in the platform
149  * @param wanted_routing_type one of Full, Floyd, Dijkstra or similar. Full list in the variable routing_models, in src/surf/surf_routing.c
150  */
151 void routing_AS_begin(sg_platf_AS_cbarg_t AS)
152 {
153   XBT_DEBUG("routing_AS_begin");
154   routing_model_description_t model = NULL;
155
156   xbt_assert(NULL == xbt_lib_get_or_null(as_router_lib, AS->id, ROUTING_ASR_LEVEL),
157       "Refusing to create a second AS called \"%s\".", AS->id);
158
159   _sg_cfg_init_status = 2; /* horrible hack: direct access to the global
160                             * controlling the level of configuration to prevent
161                             * any further config */
162
163   /* search the routing model */
164   switch(AS->routing){
165     case A_surfxml_AS_routing_Cluster:               model = &routing_models[SURF_MODEL_CLUSTER];break;
166     case A_surfxml_AS_routing_ClusterTorus:    model = &routing_models[SURF_MODEL_TORUS_CLUSTER];break;
167     case A_surfxml_AS_routing_ClusterFatTree:  model = &routing_models[SURF_MODEL_FAT_TREE_CLUSTER];break;
168     case A_surfxml_AS_routing_Dijkstra:              model = &routing_models[SURF_MODEL_DIJKSTRA];break;
169     case A_surfxml_AS_routing_DijkstraCache:         model = &routing_models[SURF_MODEL_DIJKSTRACACHE];break;
170     case A_surfxml_AS_routing_Floyd:                 model = &routing_models[SURF_MODEL_FLOYD];break;
171     case A_surfxml_AS_routing_Full:                  model = &routing_models[SURF_MODEL_FULL];break;
172     case A_surfxml_AS_routing_None:                  model = &routing_models[SURF_MODEL_NONE];break;
173     case A_surfxml_AS_routing_Vivaldi:               model = &routing_models[SURF_MODEL_VIVALDI];break;
174     default: xbt_die("Not a valid model!!!");
175     break;
176   }
177
178   /* make a new routing component */
179   simgrid::surf::As *new_as = model->create();
180
181   new_as->p_modelDesc = model;
182   new_as->p_hierarchy = SURF_ROUTING_NULL;
183   new_as->p_name = xbt_strdup(AS->id);
184
185   simgrid::surf::NetCard *netcard = new simgrid::surf::NetCardImpl(new_as->p_name, SURF_NETWORK_ELEMENT_AS, current_routing);
186   if (current_routing == NULL && routing_platf->p_root == NULL) {
187
188     /* it is the first one */
189     new_as->p_routingFather = NULL;
190     routing_platf->p_root = new_as;
191     netcard->setId(-1);
192   } else if (current_routing != NULL && routing_platf->p_root != NULL) {
193
194     xbt_assert(!xbt_dict_get_or_null
195                (current_routing->p_routingSons, AS->id),
196                "The AS \"%s\" already exists", AS->id);
197     /* it is a part of the tree */
198     new_as->p_routingFather = current_routing;
199     /* set the father behavior */
200     if (current_routing->p_hierarchy == SURF_ROUTING_NULL)
201       current_routing->p_hierarchy = SURF_ROUTING_RECURSIVE;
202     /* add to the sons dictionary */
203     xbt_dict_set(current_routing->p_routingSons, AS->id,
204                  (void *) new_as, NULL);
205     /* add to the father element list */
206     netcard->setId(current_routing->parseAS(netcard));
207   } else {
208     THROWF(arg_error, 0, "All defined components must belong to a AS");
209   }
210
211   xbt_lib_set(as_router_lib, netcard->getName(), ROUTING_ASR_LEVEL,
212               (void *) netcard);
213   XBT_DEBUG("Having set name '%s' id '%d'", new_as->p_name, netcard->getId());
214
215   /* set the new current component of the tree */
216   current_routing = new_as;
217   current_routing->p_netcard = netcard;
218
219   simgrid::surf::netcardCreatedCallbacks(netcard);
220   simgrid::surf::asCreatedCallbacks(new_as);
221 }
222
223 /**
224  * \brief Specify that the current description of AS is finished
225  *
226  * Once you've declared all the content of your AS, you have to close
227  * it with this call. Your AS is not usable until you call this function.
228  *
229  * @fixme: this call is not as robust as wanted: bad things WILL happen
230  * if you call it twice for the same AS, or if you forget calling it, or
231  * even if you add stuff to a closed AS
232  *
233  */
234 void routing_AS_end()
235 {
236   xbt_assert(current_routing, "Cannot seal the current AS: none under construction");
237   current_routing->Seal();
238   current_routing = current_routing->p_routingFather;
239 }
240
241 /* Aux Business methods */
242
243 /**
244  * \brief Get the AS father and the first elements of the chain
245  *
246  * \param src the source host name
247  * \param dst the destination host name
248  *
249  * Get the common father of the to processing units, and the first different
250  * father in the chain
251  */
252 static void elements_father(sg_netcard_t src, sg_netcard_t dst,
253                             AS_t * res_father,
254                             AS_t * res_src,
255                             AS_t * res_dst)
256 {
257   xbt_assert(src && dst, "bad parameters for \"elements_father\" method");
258 #define ELEMENTS_FATHER_MAXDEPTH 16     /* increase if it is not enough */
259   simgrid::surf::As *src_as, *dst_as;
260   simgrid::surf::As *path_src[ELEMENTS_FATHER_MAXDEPTH];
261   simgrid::surf::As *path_dst[ELEMENTS_FATHER_MAXDEPTH];
262   int index_src = 0;
263   int index_dst = 0;
264   simgrid::surf::As *current;
265   simgrid::surf::As *current_src;
266   simgrid::surf::As *current_dst;
267   simgrid::surf::As *father;
268
269   /* (1) find the as where the src and dst are located */
270   sg_netcard_t src_data = src;
271   sg_netcard_t dst_data = dst;
272   src_as = src_data->getRcComponent();
273   dst_as = dst_data->getRcComponent();
274 #ifndef NDEBUG
275   char* src_name = src_data->getName();
276   char* dst_name = dst_data->getName();
277 #endif
278
279   xbt_assert(src_as && dst_as,
280              "Ask for route \"from\"(%s) or \"to\"(%s) no found", src_name, dst_name);
281
282   /* (2) find the path to the root routing component */
283   for (current = src_as; current != NULL; current = current->p_routingFather) {
284     if (index_src >= ELEMENTS_FATHER_MAXDEPTH)
285       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_src");
286     path_src[index_src++] = current;
287   }
288   for (current = dst_as; current != NULL; current = current->p_routingFather) {
289     if (index_dst >= ELEMENTS_FATHER_MAXDEPTH)
290       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_dst");
291     path_dst[index_dst++] = current;
292   }
293
294   /* (3) find the common father */
295   do {
296     current_src = path_src[--index_src];
297     current_dst = path_dst[--index_dst];
298   } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
299
300   /* (4) they are not in the same routing component, make the path */
301   if (current_src == current_dst)
302     father = current_src;
303   else
304     father = path_src[index_src + 1];
305
306   /* (5) result generation */
307   *res_father = father;         /* first the common father of src and dst */
308   *res_src = current_src;       /* second the first different father of src */
309   *res_dst = current_dst;       /* three  the first different father of dst */
310
311 #undef ELEMENTS_FATHER_MAXDEPTH
312 }
313
314 /* Global Business methods */
315
316 /**
317  * \brief Recursive function for get_route_latency
318  *
319  * \param src the source host name
320  * \param dst the destination host name
321  * \param *route the route where the links are stored. It is either NULL or a ready to use dynar
322  * \param *latency the latency, if needed
323  *
324  * This function is called by "get_route" and "get_latency". It allows to walk
325  * recursively through the ASes tree.
326  */
327 static void _get_route_and_latency(
328   simgrid::surf::NetCard *src, simgrid::surf::NetCard *dst,
329   xbt_dynar_t * links, double *latency)
330 {
331   s_sg_platf_route_cbarg_t route = SG_PLATF_ROUTE_INITIALIZER;
332   memset(&route,0,sizeof(route));
333
334   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
335   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src->getName(), dst->getName());
336
337   /* Find how src and dst are interconnected */
338   simgrid::surf::As *common_father, *src_father, *dst_father;
339   elements_father(src, dst, &common_father, &src_father, &dst_father);
340   XBT_DEBUG("elements_father: common father '%s' src_father '%s' dst_father '%s'",
341       common_father->p_name, src_father->p_name, dst_father->p_name);
342
343   /* Check whether a direct bypass is defined */
344   sg_platf_route_cbarg_t e_route_bypass = NULL;
345   //FIXME:REMOVE:if (common_father->get_bypass_route)
346
347   e_route_bypass = common_father->getBypassRoute(src, dst, latency);
348
349   /* Common ancestor is kind enough to declare a bypass route from src to dst -- use it and bail out */
350   if (e_route_bypass) {
351     xbt_dynar_merge(links, &e_route_bypass->link_list);
352     routing_route_free(e_route_bypass);
353     return;
354   }
355
356   /* If src and dst are in the same AS, life is good */
357   if (src_father == dst_father) {       /* SURF_ROUTING_BASE */
358     route.link_list = *links;
359     common_father->getRouteAndLatency(src, dst, &route, latency);
360     // if vivaldi latency+=vivaldi(src,dst)
361     return;
362   }
363
364   /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
365
366   route.link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
367   // Find the net_card corresponding to father
368   simgrid::surf::NetCard *src_father_netcard = src_father->p_netcard;
369   simgrid::surf::NetCard *dst_father_netcard = dst_father->p_netcard;
370
371   common_father->getRouteAndLatency(src_father_netcard, dst_father_netcard,
372                                     &route, latency);
373
374   xbt_assert((route.gw_src != NULL) && (route.gw_dst != NULL),
375       "bad gateways for route from \"%s\" to \"%s\"", src->getName(), dst->getName());
376
377   sg_netcard_t src_gateway_net_elm = route.gw_src;
378   sg_netcard_t dst_gateway_net_elm = route.gw_dst;
379
380   /* If source gateway is not our source, we have to recursively find our way up to this point */
381   if (src != src_gateway_net_elm)
382     _get_route_and_latency(src, src_gateway_net_elm, links, latency);
383   xbt_dynar_merge(links, &route.link_list);
384
385   /* If dest gateway is not our destination, we have to recursively find our way from this point */
386   if (dst_gateway_net_elm != dst)
387     _get_route_and_latency(dst_gateway_net_elm, dst, links, latency);
388
389 }
390
391 AS_t surf_platf_get_root(routing_platf_t platf){
392   return platf->p_root;
393 }
394
395 e_surf_network_element_type_t surf_routing_edge_get_rc_type(sg_netcard_t netcard){
396   return netcard->getRcType();
397 }
398
399 namespace simgrid {
400 namespace surf {
401
402 /**
403  * \brief Find a route between hosts
404  *
405  * \param src the network_element_t for src host
406  * \param dst the network_element_t for dst host
407  * \param route where to store the list of links.
408  *              If *route=NULL, create a short lived dynar. Else, fill the provided dynar
409  * \param latency where to store the latency experienced on the path (or NULL if not interested)
410  *                It is the caller responsability to initialize latency to 0 (we add to provided route)
411  * \pre route!=NULL
412  *
413  * walk through the routing components tree and find a route between hosts
414  * by calling each "get_route" function in each routing component.
415  */
416 void RoutingPlatf::getRouteAndLatency(NetCard *src, NetCard *dst, xbt_dynar_t* route, double *latency)
417 {
418   XBT_DEBUG("getRouteAndLatency from %s to %s", src->getName(), dst->getName());
419   if (NULL == *route) {
420     xbt_dynar_reset(routing_platf->p_lastRoute);
421     *route = routing_platf->p_lastRoute;
422   }
423
424   _get_route_and_latency(src, dst, route, latency);
425
426   xbt_assert(!latency || *latency >= 0.0,
427              "negative latency on route between \"%s\" and \"%s\"", src->getName(), dst->getName());
428 }
429
430 xbt_dynar_t RoutingPlatf::getOneLinkRoutes(){
431   return recursiveGetOneLinkRoutes(p_root);
432 }
433
434 xbt_dynar_t RoutingPlatf::recursiveGetOneLinkRoutes(As *rc)
435 {
436   xbt_dynar_t ret = xbt_dynar_new(sizeof(Onelink*), xbt_free_f);
437
438   //adding my one link routes
439   xbt_dynar_t onelink_mine = rc->getOneLinkRoutes();
440   if (onelink_mine)
441     xbt_dynar_merge(&ret,&onelink_mine);
442
443   //recursing
444   char *key;
445   xbt_dict_cursor_t cursor = NULL;
446   AS_t rc_child;
447   xbt_dict_foreach(rc->p_routingSons, cursor, key, rc_child) {
448     xbt_dynar_t onelink_child = recursiveGetOneLinkRoutes(rc_child);
449     if (onelink_child)
450       xbt_dynar_merge(&ret,&onelink_child);
451   }
452   return ret;
453 }
454
455 }
456 }
457
458 e_surf_network_element_type_t routing_get_network_element_type(const char *name)
459 {
460   simgrid::surf::NetCard *rc = sg_netcard_by_name_or_null(name);
461   if (rc)
462     return rc->getRcType();
463
464   return SURF_NETWORK_ELEMENT_NULL;
465 }
466
467 /** @brief create the root AS */
468 void routing_model_create( void *loopback)
469 {
470   routing_platf = new simgrid::surf::RoutingPlatf(loopback);
471 }
472
473 /* ************************************************************************** */
474 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
475
476 void routing_cluster_add_backbone(void* bb) {
477   xbt_assert(current_routing->p_modelDesc == &routing_models[SURF_MODEL_CLUSTER],
478         "You have to be in model Cluster to use tag backbone!");
479   xbt_assert(!static_cast<simgrid::surf::AsCluster*>(current_routing)->p_backbone, "The backbone link is already defined!");
480   static_cast<simgrid::surf::AsCluster*>(current_routing)->p_backbone =
481     static_cast<simgrid::surf::Link*>(bb);
482   XBT_DEBUG("Add a backbone to AS '%s'", current_routing->p_name);
483 }
484
485 void sg_platf_new_cabinet(sg_platf_cabinet_cbarg_t cabinet)
486 {
487   int start, end, i;
488   char *groups , *host_id , *link_id = NULL;
489   unsigned int iter;
490   xbt_dynar_t radical_elements;
491   xbt_dynar_t radical_ends;
492
493   //Make all hosts
494   radical_elements = xbt_str_split(cabinet->radical, ",");
495   xbt_dynar_foreach(radical_elements, iter, groups) {
496
497     radical_ends = xbt_str_split(groups, "-");
498     start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
499
500     switch (xbt_dynar_length(radical_ends)) {
501     case 1:
502       end = start;
503       break;
504     case 2:
505       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
506       break;
507     default:
508       surf_parse_error("Malformed radical");
509       break;
510     }
511     s_sg_platf_host_cbarg_t host = SG_PLATF_HOST_INITIALIZER;
512     memset(&host, 0, sizeof(host));
513     host.initiallyOn   = 1;
514     host.pstate        = 0;
515     host.speed_scale   = 1.0;
516     host.core_amount   = 1;
517
518     s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
519     memset(&link, 0, sizeof(link));
520     link.initiallyOn = 1;
521     link.policy    = SURF_LINK_FULLDUPLEX;
522     link.latency   = cabinet->lat;
523     link.bandwidth = cabinet->bw;
524
525     s_sg_platf_host_link_cbarg_t host_link = SG_PLATF_HOST_LINK_INITIALIZER;
526     memset(&host_link, 0, sizeof(host_link));
527
528     for (i = start; i <= end; i++) {
529       host_id                      = bprintf("%s%d%s",cabinet->prefix,i,cabinet->suffix);
530       link_id                      = bprintf("link_%s%d%s",cabinet->prefix,i,cabinet->suffix);
531       host.id                      = host_id;
532       link.id                      = link_id;
533       host.speed_peak = xbt_dynar_new(sizeof(double), NULL);
534       xbt_dynar_push(host.speed_peak,&cabinet->speed);
535       sg_platf_new_host(&host);
536       xbt_dynar_free(&host.speed_peak);
537       sg_platf_new_link(&link);
538
539       char* link_up       = bprintf("%s_UP",link_id);
540       char* link_down     = bprintf("%s_DOWN",link_id);
541       host_link.id        = host_id;
542       host_link.link_up   = link_up;
543       host_link.link_down = link_down;
544       sg_platf_new_hostlink(&host_link);
545
546       free(host_id);
547       free(link_id);
548       free(link_up);
549       free(link_down);
550     }
551
552     xbt_dynar_free(&radical_ends);
553   }
554   xbt_dynar_free(&radical_elements);
555 }
556
557 void sg_platf_new_peer(sg_platf_peer_cbarg_t peer)
558 {
559   using simgrid::surf::NetCard;
560   using simgrid::surf::AsCluster;
561
562   char *host_id = NULL;
563   char *link_id = NULL;
564   char *router_id = NULL;
565
566   XBT_DEBUG(" ");
567   host_id = HOST_PEER(peer->id);
568   link_id = LINK_PEER(peer->id);
569   router_id = ROUTER_PEER(peer->id);
570
571   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", peer->id);
572   s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER;
573   AS.id                    = peer->id;
574   AS.routing               = A_surfxml_AS_routing_Cluster;
575   sg_platf_new_AS_begin(&AS);
576
577   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->speed);
578   s_sg_platf_host_cbarg_t host = SG_PLATF_HOST_INITIALIZER;
579   memset(&host, 0, sizeof(host));
580   host.initiallyOn = 1;
581   host.id = host_id;
582
583   host.speed_peak = xbt_dynar_new(sizeof(double), NULL);
584   xbt_dynar_push(host.speed_peak,&peer->speed);
585   host.pstate = 0;
586   //host.power_peak = peer->power;
587   host.speed_scale = 1.0;
588   host.speed_trace = peer->availability_trace;
589   host.state_trace = peer->state_trace;
590   host.core_amount = 1;
591   sg_platf_new_host(&host);
592   xbt_dynar_free(&host.speed_peak);
593
594   s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
595   memset(&link, 0, sizeof(link));
596   link.initiallyOn = 1;
597   link.policy  = SURF_LINK_SHARED;
598   link.latency = peer->lat;
599
600   char* link_up = bprintf("%s_UP",link_id);
601   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_up,
602             peer->bw_out, peer->lat);
603   link.id = link_up;
604   link.bandwidth = peer->bw_out;
605   sg_platf_new_link(&link);
606
607   char* link_down = bprintf("%s_DOWN",link_id);
608   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_down,
609             peer->bw_in, peer->lat);
610   link.id = link_down;
611   link.bandwidth = peer->bw_in;
612   sg_platf_new_link(&link);
613
614   XBT_DEBUG("<host_link\tid=\"%s\"\tup=\"%s\"\tdown=\"%s\" />", host_id,link_up,link_down);
615   s_sg_platf_host_link_cbarg_t host_link = SG_PLATF_HOST_LINK_INITIALIZER;
616   memset(&host_link, 0, sizeof(host_link));
617   host_link.id        = host_id;
618   host_link.link_up   = link_up;
619   host_link.link_down = link_down;
620   sg_platf_new_hostlink(&host_link);
621
622   XBT_DEBUG("<router id=\"%s\"/>", router_id);
623   s_sg_platf_router_cbarg_t router = SG_PLATF_ROUTER_INITIALIZER;
624   memset(&router, 0, sizeof(router));
625   router.id = router_id;
626   router.coord = peer->coord;
627   sg_platf_new_router(&router);
628   static_cast<AsCluster*>(current_routing)->p_router = static_cast<NetCard*>(xbt_lib_get_or_null(as_router_lib, router.id, ROUTING_ASR_LEVEL));
629
630   XBT_DEBUG("</AS>");
631   sg_platf_new_AS_end();
632   XBT_DEBUG(" ");
633
634   //xbt_dynar_free(&tab_elements_num);
635   free(router_id);
636   free(host_id);
637   free(link_id);
638   free(link_up);
639   free(link_down);
640 }
641
642 // static void routing_parse_Srandom(void)
643 // {
644 //   double mean, std, min, max, seed;
645 //   char *random_id = A_surfxml_random_id;
646 //   char *random_radical = A_surfxml_random_radical;
647 //   char *rd_name = NULL;
648 //   char *rd_value;
649 //   mean = surf_parse_get_double(A_surfxml_random_mean);
650 //   std = surf_parse_get_double(A_surfxml_random_std___deviation);
651 //   min = surf_parse_get_double(A_surfxml_random_min);
652 //   max = surf_parse_get_double(A_surfxml_random_max);
653 //   seed = surf_parse_get_double(A_surfxml_random_seed);
654
655 //   double res = 0;
656 //   int i = 0;
657 //   random_data_t random = xbt_new0(s_random_data_t, 1);
658 //   char *tmpbuf;
659
660 //   xbt_dynar_t radical_elements;
661 //   unsigned int iter;
662 //   char *groups;
663 //   int start, end;
664 //   xbt_dynar_t radical_ends;
665
666 //   switch (A_surfxml_random_generator) {
667 //   case AU_surfxml_random_generator:
668 //   case A_surfxml_random_generator_NONE:
669 //     random->generator = NONE;
670 //     break;
671 //   case A_surfxml_random_generator_DRAND48:
672 //     random->generator = DRAND48;
673 //     break;
674 //   case A_surfxml_random_generator_RAND:
675 //     random->generator = RAND;
676 //     break;
677 //   case A_surfxml_random_generator_RNGSTREAM:
678 //     random->generator = RNGSTREAM;
679 //     break;
680 //   default:
681 //     surf_parse_error("Invalid random generator");
682 //     break;
683 //   }
684 //   random->seed = seed;
685 //   random->min = min;
686 //   random->max = max;
687
688 //   /* Check user stupidities */
689 //   if (max < min)
690 //     THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
691 //   if (mean < min)
692 //     THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean, min);
693 //   if (mean > max)
694 //     THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean, max);
695
696 //   /* normalize the mean and standard deviation before storing */
697 //   random->mean = (mean - min) / (max - min);
698 //   random->std = std / (max - min);
699
700 //   if (random->mean * (1 - random->mean) < random->std * random->std)
701 //     THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
702 //            random->mean, random->std);
703
704 //   XBT_DEBUG
705 //       ("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
706 //        random_id, random->min, random->max, random->mean, random->std,
707 //        (int)random->generator, random->seed, random_radical);
708
709 //   if (!random_value)
710 //     random_value = xbt_dict_new_homogeneous(free);
711
712 //   if (!strcmp(random_radical, "")) {
713 //     res = random_generate(random);
714 //     rd_value = bprintf("%f", res);
715 //     xbt_dict_set(random_value, random_id, rd_value, NULL);
716 //   } else {
717 //     radical_elements = xbt_str_split(random_radical, ",");
718 //     xbt_dynar_foreach(radical_elements, iter, groups) {
719 //       radical_ends = xbt_str_split(groups, "-");
720 //       switch (xbt_dynar_length(radical_ends)) {
721 //       case 1:
722 //         xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
723 //                    "Custom Random '%s' already exists !", random_id);
724 //         res = random_generate(random);
725 //         tmpbuf =
726 //             bprintf("%s%d", random_id,
727 //                     atoi(xbt_dynar_getfirst_as(radical_ends, char *)));
728 //         xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
729 //         xbt_free(tmpbuf);
730 //         break;
731
732 //       case 2:
733 //         start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
734 //         end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
735 //         for (i = start; i <= end; i++) {
736 //           xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
737 //                      "Custom Random '%s' already exists !", bprintf("%s%d",
738 //                                                                     random_id,
739 //                                                                     i));
740 //           res = random_generate(random);
741 //           tmpbuf = bprintf("%s%d", random_id, i);
742 //           xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), NULL);
743 //           xbt_free(tmpbuf);
744 //         }
745 //         break;
746 //       default:
747 //         XBT_CRITICAL("Malformed radical");
748 //         break;
749 //       }
750 //       res = random_generate(random);
751 //       rd_name = bprintf("%s_router", random_id);
752 //       rd_value = bprintf("%f", res);
753 //       xbt_dict_set(random_value, rd_name, rd_value, NULL);
754
755 //       xbt_dynar_free(&radical_ends);
756 //     }
757 //     free(rd_name);
758 //     xbt_dynar_free(&radical_elements);
759 //   }
760 // }
761
762 static void check_disk_attachment()
763 {
764   xbt_lib_cursor_t cursor;
765   char *key;
766   void **data;
767   simgrid::surf::NetCard *host_elm;
768   xbt_lib_foreach(storage_lib, cursor, key, data) {
769     if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != NULL) {
770     simgrid::surf::Storage *storage = static_cast<simgrid::surf::Storage*>(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL));
771     host_elm = sg_netcard_by_name_or_null(storage->p_attach);
772     if(!host_elm)
773       surf_parse_error("Unable to attach storage %s: host %s doesn't exist.", storage->getName(), storage->p_attach);
774     }
775   }
776 }
777
778 void routing_register_callbacks()
779 {
780   simgrid::surf::on_postparse.connect(check_disk_attachment);
781
782   instr_routing_define_callbacks();
783 }
784
785 /**
786  * \brief Recursive function for finalize
787  *
788  * \param rc the source host name
789  *
790  * This fuction is call by "finalize". It allow to finalize the
791  * AS or routing components. It delete all the structures.
792  */
793 static void finalize_rec(simgrid::surf::As *as) {
794   xbt_dict_cursor_t cursor = NULL;
795   char *key;
796   AS_t elem;
797
798   xbt_dict_foreach(as->p_routingSons, cursor, key, elem) {
799     finalize_rec(elem);
800   }
801
802   delete as;;
803 }
804
805 /** \brief Frees all memory allocated by the routing module */
806 void routing_exit(void) {
807   delete routing_platf;
808 }
809
810 namespace simgrid {
811 namespace surf {
812
813   RoutingPlatf::RoutingPlatf(void *loopback)
814   : p_loopback(loopback)
815   {
816   }
817   RoutingPlatf::~RoutingPlatf()
818   {
819     xbt_dynar_free(&p_lastRoute);
820     finalize_rec(p_root);
821   }
822
823 }
824 }
825
826 AS_t surf_AS_get_routing_root() {
827   return routing_platf->p_root;
828 }
829
830 const char *surf_AS_get_name(simgrid::surf::As *as) {
831   return as->p_name;
832 }
833
834 static simgrid::surf::As *surf_AS_recursive_get_by_name(
835   simgrid::surf::As *current, const char * name)
836 {
837   xbt_dict_cursor_t cursor = NULL;
838   char *key;
839   AS_t elem;
840   simgrid::surf::As *tmp = NULL;
841
842   if(!strcmp(current->p_name, name))
843     return current;
844
845   xbt_dict_foreach(current->p_routingSons, cursor, key, elem) {
846     tmp = surf_AS_recursive_get_by_name(elem, name);
847     if(tmp != NULL ) {
848         break;
849     }
850   }
851   return tmp;
852 }
853
854 simgrid::surf::As *surf_AS_get_by_name(const char * name)
855 {
856   simgrid::surf::As *as = surf_AS_recursive_get_by_name(routing_platf->p_root, name);
857   if(as == NULL)
858     XBT_WARN("Impossible to find an AS with name %s, please check your input", name);
859   return as;
860 }
861
862 xbt_dict_t surf_AS_get_routing_sons(simgrid::surf::As *as)
863 {
864   return as->p_routingSons;
865 }
866
867 xbt_dynar_t surf_AS_get_hosts(simgrid::surf::As *as)
868 {
869   xbt_dynar_t elms = as->p_indexNetworkElm;
870   int count = xbt_dynar_length(elms);
871   xbt_dynar_t res =  xbt_dynar_new(sizeof(sg_host_t), NULL);
872   for (int index = 0; index < count; index++) {
873      sg_netcard_t relm =
874       xbt_dynar_get_as(elms, index, simgrid::surf::NetCard*);
875      sg_host_t delm = simgrid::s4u::Host::by_name_or_null(relm->getName());
876      if (delm!=NULL) {
877        xbt_dynar_push(res, &delm);
878      }
879   }
880   return res;
881 }
882
883 void surf_AS_get_graph(AS_t as, xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) {
884   as->getGraph(graph, nodes, edges);
885 }