Logo AND Algorithmique Numérique Distribuée

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