Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make ns3 compile with new communicate (network_element_t)
[simgrid.git] / src / surf / surf_routing_full.c
1 /* Copyright (c) 2009, 2010, 2011. 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_private.h"
8
9 /* Global vars */
10 extern routing_global_t global_routing;
11 extern int surf_parse_lineno;
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_full, surf, "Routing part of surf");
14
15 #define TO_ROUTE_FULL(i,j) routing->routing_table[(i)+(j)*table_size]
16
17 /* Routing model structure */
18
19 typedef struct s_routing_component_full {
20   s_as_t generic_routing;
21   route_t *routing_table;
22 } s_routing_component_full_t, *routing_component_full_t;
23
24 /* Business methods */
25 static xbt_dynar_t full_get_onelink_routes(AS_t rc)
26 {
27   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
28   routing_component_full_t routing = (routing_component_full_t) rc;
29
30   int src,dst;
31   int table_size = xbt_dynar_length(rc->index_network_elm);
32
33   for(src=0; src < table_size; src++) {
34     for(dst=0; dst< table_size; dst++) {
35       route_t route = TO_ROUTE_FULL(src, dst);
36       if (route) {
37         if (xbt_dynar_length(route->link_list) == 1) {
38           void *link = *(void **) xbt_dynar_get_ptr(route->link_list, 0);
39           onelink_t onelink = xbt_new0(s_onelink_t, 1);
40           onelink->link_ptr = link;
41           if (rc->hierarchy == SURF_ROUTING_BASE) {
42             onelink->src = xbt_dynar_get_as(rc->index_network_elm,src,network_element_t);
43             onelink->src->id = src;
44             onelink->dst = xbt_dynar_get_as(rc->index_network_elm,dst,network_element_t);
45             onelink->dst->id = dst;
46           } else if (rc->hierarchy == SURF_ROUTING_RECURSIVE) {
47             onelink->src = route->src_gateway;
48             onelink->dst = route->dst_gateway;
49           }
50           xbt_dynar_push(ret, &onelink);
51           XBT_DEBUG("Push route from '%d' to '%d'",
52               src,
53               dst);
54         }
55       }
56     }
57   }
58   return ret;
59 }
60
61 static void full_get_route_and_latency(AS_t rc,
62     network_element_t src, network_element_t dst,
63                                        route_t res, double *lat)
64 {
65   XBT_DEBUG("full_get_route_and_latency from %s[%d] to %s[%d]",
66       src->name,
67       src->id,
68       dst->name,
69       dst->id  );
70
71   /* set utils vars */
72   routing_component_full_t routing = (routing_component_full_t) rc;
73   size_t table_size = xbt_dynar_length(routing->generic_routing.index_network_elm);
74
75   route_t e_route = NULL;
76   void *link;
77   unsigned int cpt = 0;
78
79   e_route = TO_ROUTE_FULL(src->id, dst->id);
80
81   if (e_route) {
82     res->src_gateway = e_route->src_gateway;
83     res->dst_gateway = e_route->dst_gateway;
84     xbt_dynar_foreach(e_route->link_list, cpt, link) {
85       xbt_dynar_push(res->link_list, &link);
86       if (lat)
87         *lat += surf_network_model->extension.network.get_link_latency(link);
88     }
89   }
90 }
91
92 static void full_finalize(AS_t rc)
93 {
94   routing_component_full_t routing = (routing_component_full_t) rc;
95   size_t table_size = xbt_dynar_length(routing->generic_routing.index_network_elm);
96   int i, j;
97   if (routing) {
98     /* Delete routing table */
99     for (i = 0; i < table_size; i++)
100       for (j = 0; j < table_size; j++)
101         generic_free_route(TO_ROUTE_FULL(i, j));
102     xbt_free(routing->routing_table);
103     model_generic_finalize(rc);
104   }
105 }
106
107 /* Creation routing model functions */
108
109 AS_t model_full_create(void)
110 {
111   routing_component_full_t new_component = (routing_component_full_t)
112       model_generic_create_sized(sizeof(s_routing_component_full_t));
113
114   new_component->generic_routing.parse_route = model_full_set_route;
115   new_component->generic_routing.parse_ASroute = model_full_set_route;
116   new_component->generic_routing.get_route_and_latency =
117       full_get_route_and_latency;
118   new_component->generic_routing.get_onelink_routes = full_get_onelink_routes;
119   new_component->generic_routing.finalize = full_finalize;
120
121   return (AS_t) new_component;
122 }
123
124 void model_full_end(AS_t current_routing)
125 {
126   unsigned int i;
127   route_t e_route;
128
129   /* set utils vars */
130   routing_component_full_t routing =
131       ((routing_component_full_t) current_routing);
132   size_t table_size = xbt_dynar_length(routing->generic_routing.index_network_elm);
133
134   /* Create table if necessary */
135   if (!routing->routing_table)
136     routing->routing_table = xbt_new0(route_t, table_size * table_size);
137
138   /* Add the loopback if needed */
139   if (global_routing->loopback && current_routing->hierarchy == SURF_ROUTING_BASE) {
140     for (i = 0; i < table_size; i++) {
141       e_route = TO_ROUTE_FULL(i, i);
142       if (!e_route) {
143         e_route = xbt_new0(s_route_t, 1);
144         e_route->src_gateway = NULL;
145         e_route->dst_gateway = NULL;
146         e_route->link_list = xbt_dynar_new(global_routing->size_of_link, NULL);
147         xbt_dynar_push(e_route->link_list, &global_routing->loopback);
148         TO_ROUTE_FULL(i, i) = e_route;
149       }
150     }
151   }
152 }
153
154 static int full_pointer_resource_cmp(const void *a, const void *b)
155 {
156   return a != b;
157 }
158
159 void model_full_set_route(AS_t rc, const char *src,
160                           const char *dst, route_t route)
161 {
162   network_element_t src_net_elm, dst_net_elm;
163
164   src_net_elm = (network_element_t)xbt_lib_get_or_null(host_lib, src, ROUTING_HOST_LEVEL);
165   dst_net_elm = (network_element_t)xbt_lib_get_or_null(host_lib, dst, ROUTING_HOST_LEVEL);
166   if(!src_net_elm) src_net_elm = (network_element_t)xbt_lib_get_or_null(as_router_lib, src, ROUTING_ASR_LEVEL);
167   if(!dst_net_elm) dst_net_elm = (network_element_t)xbt_lib_get_or_null(as_router_lib, dst, ROUTING_ASR_LEVEL);
168
169   xbt_assert(src_net_elm, "Network elements %s not found", src);
170   xbt_assert(dst_net_elm, "Network elements %s not found", dst);
171
172   routing_component_full_t routing = (routing_component_full_t) rc;
173   size_t table_size = xbt_dynar_length(routing->generic_routing.index_network_elm);
174
175   xbt_assert(!xbt_dynar_is_empty(route->link_list),
176              "Invalid count of links, must be greater than zero (%s,%s)",
177              src, dst);
178
179   if (!routing->routing_table)
180     routing->routing_table = xbt_new0(route_t, table_size * table_size);
181
182   if (TO_ROUTE_FULL(src_net_elm->id, dst_net_elm->id)) {
183     char *link_name;
184     unsigned int i;
185     xbt_dynar_t link_route_to_test =
186         xbt_dynar_new(global_routing->size_of_link, NULL);
187     xbt_dynar_foreach(route->link_list, i, link_name) {
188       void *link = xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
189       xbt_assert(link, "Link : '%s' doesn't exists.", link_name);
190       xbt_dynar_push(link_route_to_test, &link);
191     }
192     if (xbt_dynar_compare(TO_ROUTE_FULL(src_net_elm->id, dst_net_elm->id)->link_list,
193                           link_route_to_test, full_pointer_resource_cmp)) {
194       surf_parse_error("A route between \"%s\" and \"%s\" already exists "
195                        "with a different content. "
196                        "If you are trying to define a reverse route, "
197                        "you must set the symmetrical=no attribute to "
198                        "your routes tags.", src, dst);
199     } else {
200       surf_parse_warn("Ignoring the identical redefinition of the route "
201                       "between \"%s\" and \"%s\"", src, dst);
202     }
203   } else {
204     if (!route->dst_gateway && !route->src_gateway)
205       XBT_DEBUG("Load Route from \"%s\" to \"%s\"", src, dst);
206     else {
207 // FIXME We can call a gw wich is down the current AS (cf g5k.xml) but not upper.
208 //      AS_t subas = xbt_dict_get_or_null(rc->routing_sons, src);
209 //      if (subas == NULL)
210 //        surf_parse_error("The source of an ASroute must be a sub-AS "
211 //                         "declared within the current AS, "
212 //                         "but '%s' is not an AS within '%s'", src, rc->name);
213 //      if (subas->to_index
214 //          && xbt_dict_get_or_null(subas->to_index, route->src_gateway) == NULL)
215 //        surf_parse_error("In an ASroute, source gateway must be part of "
216 //                         "the source sub-AS (in particular, being in a "
217 //                         "sub-sub-AS is not allowed), "
218 //                         "but '%s' is not in '%s'.",
219 //                         route->src_gateway, subas->name);
220 //
221 //      subas = xbt_dict_get_or_null(rc->routing_sons, dst);
222 //      if (subas == NULL)
223 //        surf_parse_error("The destination of an ASroute must be a sub-AS "
224 //                         "declared within the current AS, "
225 //                         "but '%s' is not an AS within '%s'", dst, rc->name);
226 //      if (subas->to_index
227 //          && xbt_dict_get_or_null(subas->to_index, route->dst_gateway) == NULL)
228 //        surf_parse_error("In an ASroute, destination gateway must be "
229 //                         "part of the destination sub-AS (in particular, "
230 //                         "in a sub-sub-AS is not allowed), "
231 //                         "but '%s' is not in '%s'.",
232 //                         route->dst_gateway, subas->name);
233
234       XBT_DEBUG("Load ASroute from \"%s(%s)\" to \"%s(%s)\"",
235                 src, route->src_gateway->name, dst, route->dst_gateway->name);
236       if (route->dst_gateway->rc_type == SURF_NETWORK_ELEMENT_NULL)
237         xbt_die("The dst_gateway '%s' does not exist!", route->dst_gateway->name);
238       if (route->src_gateway->rc_type == SURF_NETWORK_ELEMENT_NULL)
239         xbt_die("The src_gateway '%s' does not exist!", route->src_gateway->name);
240     }
241     TO_ROUTE_FULL(src_net_elm->id, dst_net_elm->id) =
242         generic_new_extended_route(rc->hierarchy, route, 1);
243     xbt_dynar_shrink(TO_ROUTE_FULL(src_net_elm->id, dst_net_elm->id)->link_list, 0);
244   }
245
246   if (A_surfxml_route_symmetrical == A_surfxml_route_symmetrical_YES
247       || A_surfxml_ASroute_symmetrical == A_surfxml_ASroute_symmetrical_YES) {
248     if (route->dst_gateway && route->src_gateway) {
249       network_element_t gw_tmp;
250       gw_tmp = route->src_gateway;
251       route->src_gateway = route->dst_gateway;
252       route->dst_gateway = gw_tmp;
253     }
254     if (TO_ROUTE_FULL(dst_net_elm->id, src_net_elm->id)) {
255       char *link_name;
256       unsigned int i;
257       xbt_dynar_t link_route_to_test =
258           xbt_dynar_new(global_routing->size_of_link, NULL);
259       for (i = xbt_dynar_length(route->link_list); i > 0; i--) {
260         link_name = xbt_dynar_get_as(route->link_list, i - 1, void *);
261         void *link = xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
262         xbt_assert(link, "Link : '%s' doesn't exists.", link_name);
263         xbt_dynar_push(link_route_to_test, &link);
264       }
265       xbt_assert(!xbt_dynar_compare(TO_ROUTE_FULL(dst_net_elm->id, src_net_elm->id)->link_list,
266                                     link_route_to_test,
267                                     full_pointer_resource_cmp),
268                  "The route between \"%s\" and \"%s\" already exists", src,
269                  dst);
270     } else {
271       if (!route->dst_gateway && !route->src_gateway)
272         XBT_DEBUG("Load Route from \"%s\" to \"%s\"", dst, src);
273       else
274         XBT_DEBUG("Load ASroute from \"%s(%s)\" to \"%s(%s)\"",
275                   dst, route->src_gateway->name, src, route->dst_gateway->name);
276       TO_ROUTE_FULL(dst_net_elm->id, src_net_elm->id) =
277           generic_new_extended_route(rc->hierarchy, route, 0);
278       xbt_dynar_shrink(TO_ROUTE_FULL(dst_net_elm->id, src_net_elm->id)->link_list, 0);
279     }
280   }
281 }