Logo AND Algorithmique Numérique Distribuée

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