Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Dijkstra: kill obscure dead dupplicated code
[simgrid.git] / src / surf / surf_routing_full.cpp
1 /* Copyright (c) 2009-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 "src/surf/surf_routing_private.hpp"
8 #include "src/surf/surf_routing_full.hpp"
9 #include "src/surf/network_interface.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_full, surf, "Routing part of surf");
12
13 #define TO_ROUTE_FULL(i,j) p_routingTable[(i)+(j)*table_size]
14
15 namespace simgrid {
16 namespace surf {
17   AsFull::AsFull(const char*name)
18     : AsGeneric(name)
19   {
20   }
21
22 void AsFull::Seal() {
23   int i;
24   sg_platf_route_cbarg_t e_route;
25
26   /* set utils vars */
27   int table_size = (int)xbt_dynar_length(vertices_);
28
29   /* Create table if necessary */
30   if (!p_routingTable)
31     p_routingTable = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);
32
33   /* Add the loopback if needed */
34   if (routing_platf->p_loopback && hierarchy_ == SURF_ROUTING_BASE) {
35     for (i = 0; i < table_size; i++) {
36       e_route = TO_ROUTE_FULL(i, i);
37       if (!e_route) {
38         e_route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
39         e_route->gw_src = NULL;
40         e_route->gw_dst = NULL;
41         e_route->link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
42         xbt_dynar_push(e_route->link_list, &routing_platf->p_loopback);
43         TO_ROUTE_FULL(i, i) = e_route;
44       }
45     }
46   }
47 }
48
49 AsFull::~AsFull(){
50   if (p_routingTable) {
51     int table_size = (int)xbt_dynar_length(vertices_);
52     int i, j;
53     /* Delete routing table */
54     for (i = 0; i < table_size; i++)
55       for (j = 0; j < table_size; j++) {
56         if (TO_ROUTE_FULL(i,j)){
57           xbt_dynar_free(&TO_ROUTE_FULL(i,j)->link_list);
58           xbt_free(TO_ROUTE_FULL(i,j));
59         }
60       }
61     xbt_free(p_routingTable);
62   }
63 }
64
65 xbt_dynar_t AsFull::getOneLinkRoutes()
66 {
67   xbt_dynar_t ret = xbt_dynar_new(sizeof(Onelink*), xbt_free_f);
68
69   int src, dst;
70   int table_size = xbt_dynar_length(vertices_);
71
72   for(src=0; src < table_size; src++) {
73     for(dst=0; dst< table_size; dst++) {
74       sg_platf_route_cbarg_t route = TO_ROUTE_FULL(src,dst);
75       if (route) {
76         if (xbt_dynar_length(route->link_list) == 1) {
77           void *link = *(void **) xbt_dynar_get_ptr(route->link_list, 0);
78           Onelink *onelink;
79           if (hierarchy_ == SURF_ROUTING_BASE) {
80           NetCard *tmp_src = xbt_dynar_get_as(vertices_, src, sg_netcard_t);
81             tmp_src->setId(src);
82           NetCard *tmp_dst = xbt_dynar_get_as(vertices_, dst, sg_netcard_t);
83           tmp_dst->setId(dst);
84             onelink = new Onelink(link, tmp_src, tmp_dst);
85           } else if (hierarchy_ == SURF_ROUTING_RECURSIVE)
86             onelink = new Onelink(link, route->gw_src, route->gw_dst);
87           else
88             onelink = new Onelink(link, NULL, NULL);
89           xbt_dynar_push(ret, &onelink);
90           XBT_DEBUG("Push route from '%d' to '%d'",
91               src,
92               dst);
93         }
94       }
95     }
96   }
97   return ret;
98 }
99
100 void AsFull::getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t res, double *lat)
101 {
102   XBT_DEBUG("full_get_route_and_latency from %s[%d] to %s[%d]",
103       src->name(),
104       src->id(),
105       dst->name(),
106       dst->id());
107
108   /* set utils vars */
109   size_t table_size = xbt_dynar_length(vertices_);
110
111   sg_platf_route_cbarg_t e_route = NULL;
112   void *link;
113   unsigned int cpt = 0;
114
115   e_route = TO_ROUTE_FULL(src->id(), dst->id());
116
117   if (e_route) {
118     res->gw_src = e_route->gw_src;
119     res->gw_dst = e_route->gw_dst;
120     xbt_dynar_foreach(e_route->link_list, cpt, link) {
121       xbt_dynar_push(res->link_list, &link);
122       if (lat)
123         *lat += static_cast<Link*>(link)->getLatency();
124     }
125   }
126 }
127
128 static int full_pointer_resource_cmp(const void *a, const void *b)
129 {
130   return a != b;
131 }
132
133 void AsFull::parseRoute(sg_platf_route_cbarg_t route)
134 {
135   int as_route = 0;
136   char *src = (char*)(route->src);
137   char *dst = (char*)(route->dst);
138   NetCard *src_net_elm, *dst_net_elm;
139   src_net_elm = sg_netcard_by_name_or_null(src);
140   dst_net_elm = sg_netcard_by_name_or_null(dst);
141
142   xbt_assert(src_net_elm, "Network elements %s not found", src);
143   xbt_assert(dst_net_elm, "Network elements %s not found", dst);
144
145   size_t table_size = xbt_dynar_length(vertices_);
146
147   xbt_assert(!xbt_dynar_is_empty(route->link_list),
148       "Invalid count of links, must be greater than zero (%s,%s)",
149       src, dst);
150
151   if (!p_routingTable)
152     p_routingTable = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);
153
154   if (TO_ROUTE_FULL(src_net_elm->id(), dst_net_elm->id())) {
155     char *link_name;
156     unsigned int i;
157     xbt_dynar_t link_route_to_test =
158         xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
159     xbt_dynar_foreach(route->link_list, i, link_name) {
160       void *link = Link::byName(link_name);
161       xbt_assert(link, "Link : '%s' doesn't exists.", link_name);
162       xbt_dynar_push(link_route_to_test, &link);
163     }
164     if (xbt_dynar_compare(TO_ROUTE_FULL(src_net_elm->id(), dst_net_elm->id())->link_list,
165         link_route_to_test, full_pointer_resource_cmp)) {
166       surf_parse_error("A route between \"%s\" and \"%s\" already exists "
167           "with a different content. "
168           "If you are trying to define a reverse route, "
169           "you must set the symmetrical=no attribute to "
170           "your routes tags.", src, dst);
171     } else {
172       surf_parse_warn("Ignoring the identical redefinition of the route "
173           "between \"%s\" and \"%s\"", src, dst);
174     }
175   } else {
176     if (!route->gw_src && !route->gw_dst)
177       XBT_DEBUG("Load Route from \"%s\" to \"%s\"", src, dst);
178     else {
179       // FIXME We can call a gw which is down the current AS (cf g5k.xml) but not upper.
180       //      AS_t subas = xbt_dict_get_or_null(rc->routing_sons, src);
181       //      if (subas == NULL)
182       //        surf_parse_error("The source of an ASroute must be a sub-AS "
183       //                         "declared within the current AS, "
184       //                         "but '%s' is not an AS within '%s'", src, rc->name);
185       //      if (subas->to_index
186       //          && xbt_dict_get_or_null(subas->to_index, route->src_gateway) == NULL)
187       //        surf_parse_error("In an ASroute, source gateway must be part of "
188       //                         "the source sub-AS (in particular, being in a "
189       //                         "sub-sub-AS is not allowed), "
190       //                         "but '%s' is not in '%s'.",
191       //                         route->src_gateway, subas->name);
192       //
193       //      subas = xbt_dict_get_or_null(rc->routing_sons, dst);
194       //      if (subas == NULL)
195       //        surf_parse_error("The destination of an ASroute must be a sub-AS "
196       //                         "declared within the current AS, "
197       //                         "but '%s' is not an AS within '%s'", dst, rc->name);
198       //      if (subas->to_index
199       //          && xbt_dict_get_or_null(subas->to_index, route->dst_gateway) == NULL)
200       //        surf_parse_error("In an ASroute, destination gateway must be "
201       //                         "part of the destination sub-AS (in particular, "
202       //                         "in a sub-sub-AS is not allowed), "
203       //                         "but '%s' is not in '%s'.",
204       //                         route->dst_gateway, subas->name);
205       as_route = 1;
206       XBT_DEBUG("Load ASroute from \"%s\" to \"%s\"", src, dst);
207       if (!route->gw_src ||
208           route->gw_src->getRcType() == SURF_NETWORK_ELEMENT_NULL)
209       surf_parse_error("The src_gateway \"%s\" does not exist!",
210                 route->gw_src ? route->gw_src->name() : "(null)");
211       if (!route->gw_dst ||
212           route->gw_dst->getRcType() == SURF_NETWORK_ELEMENT_NULL)
213       surf_parse_error("The dst_gateway \"%s\" does not exist!",
214                 route->gw_dst ? route->gw_dst->name() : "(null)");
215       XBT_DEBUG("ASroute goes from \"%s\" to \"%s\"",
216                 route->gw_src->name(), route->gw_dst->name());
217     }
218     TO_ROUTE_FULL(src_net_elm->id(), dst_net_elm->id()) = newExtendedRoute(hierarchy_, route, 1);
219     xbt_dynar_shrink(TO_ROUTE_FULL(src_net_elm->id(), dst_net_elm->id())->link_list, 0);
220   }
221
222   if ( (route->symmetrical == TRUE && as_route == 0)
223       || (route->symmetrical == TRUE && as_route == 1)
224   ) {
225     if (route->gw_dst && route->gw_src) {
226       sg_netcard_t gw_tmp;
227       gw_tmp = route->gw_src;
228       route->gw_src = route->gw_dst;
229       route->gw_dst = gw_tmp;
230     }
231     if (TO_ROUTE_FULL(dst_net_elm->id(), src_net_elm->id())) {
232       char *link_name;
233       unsigned int i;
234       xbt_dynar_t link_route_to_test =
235           xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
236       for (i = xbt_dynar_length(route->link_list); i > 0; i--) {
237         link_name = xbt_dynar_get_as(route->link_list, i - 1, char *);
238         void *link = Link::byName(link_name);
239         xbt_assert(link, "Link : '%s' doesn't exists.", link_name);
240         xbt_dynar_push(link_route_to_test, &link);
241       }
242       xbt_assert(!xbt_dynar_compare(TO_ROUTE_FULL(dst_net_elm->id(), src_net_elm->id())->link_list,
243           link_route_to_test,
244           full_pointer_resource_cmp),
245           "The route between \"%s\" and \"%s\" already exists", src,
246           dst);
247     } else {
248       if (!route->gw_dst && !route->gw_src)
249         XBT_DEBUG("Load Route from \"%s\" to \"%s\"", dst, src);
250       else
251         XBT_DEBUG("Load ASroute from \"%s(%s)\" to \"%s(%s)\"",
252             dst, route->gw_src->name(), src, route->gw_dst->name());
253       TO_ROUTE_FULL(dst_net_elm->id(), src_net_elm->id()) = newExtendedRoute(hierarchy_, route, 0);
254       xbt_dynar_shrink(TO_ROUTE_FULL(dst_net_elm->id(), src_net_elm->id())->link_list, 0);
255     }
256   }
257   xbt_dynar_free(&route->link_list);
258 }
259
260 }
261 }