Logo AND Algorithmique Numérique Distribuée

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