Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] add debug messages to debug graph extraction in network models
[simgrid.git] / src / surf / surf_routing_generic.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 "simgrid/platf_interface.h"    // platform creation API internal interface
8
9 #include "surf_routing_private.h"
10 #include "surf/surf_routing.h"
11 #include "surf/surfxml_parse_values.h"
12 #include "xbt/graph.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_routing_generic, surf_route, "Generic implementation of the surf routing");
15
16 static int no_bypassroute_declared = 1;
17
18 AS_t model_generic_create_sized(size_t childsize) {
19   AS_t new_component = model_none_create_sized(childsize);
20
21   new_component->parse_PU = generic_parse_PU;
22   new_component->parse_AS = generic_parse_AS;
23   new_component->parse_route = NULL;
24   new_component->parse_ASroute = NULL;
25   new_component->parse_bypassroute = generic_parse_bypassroute;
26   new_component->get_route_and_latency = NULL;
27   new_component->get_onelink_routes = NULL;
28   new_component->get_bypass_route =
29       generic_get_bypassroute;
30   new_component->finalize = model_generic_finalize;
31   new_component->bypassRoutes = xbt_dict_new_homogeneous((void (*)(void *)) generic_free_route);
32
33   return new_component;
34 }
35 void model_generic_finalize(AS_t as) {
36   xbt_dict_free(&as->bypassRoutes);
37   model_none_finalize(as);
38 }
39
40 int generic_parse_PU(AS_t as, sg_routing_edge_t elm)
41 {
42   XBT_DEBUG("Load process unit \"%s\"", elm->name);
43   xbt_dynar_push_as(as->index_network_elm,sg_routing_edge_t,elm);
44   return xbt_dynar_length(as->index_network_elm)-1;
45 }
46
47 int generic_parse_AS(AS_t as, sg_routing_edge_t elm)
48 {
49   XBT_DEBUG("Load Autonomous system \"%s\"", elm->name);
50   xbt_dynar_push_as(as->index_network_elm,sg_routing_edge_t,elm);
51   return xbt_dynar_length(as->index_network_elm)-1;
52 }
53
54 void generic_parse_bypassroute(AS_t rc, sg_platf_route_cbarg_t e_route)
55 {
56   char *src = (char*)(e_route->src);
57   char *dst = (char*)(e_route->dst);
58
59   if(e_route->gw_dst)
60     XBT_DEBUG("Load bypassASroute from \"%s\" to \"%s\"", src, dst);
61   else
62     XBT_DEBUG("Load bypassRoute from \"%s\" to \"%s\"", src, dst);
63   xbt_dict_t dict_bypassRoutes = rc->bypassRoutes;
64   char *route_name;
65
66   route_name = bprintf("%s#%s", src, dst);
67   xbt_assert(!xbt_dynar_is_empty(e_route->link_list),
68       "Invalid count of links, must be greater than zero (%s,%s)",
69       src, dst);
70   xbt_assert(!xbt_dict_get_or_null(dict_bypassRoutes, route_name),
71       "The bypass route between \"%s\"(\"%s\") and \"%s\"(\"%s\") already exists",
72       src, e_route->gw_src->name, dst, e_route->gw_dst->name);
73
74   sg_platf_route_cbarg_t new_e_route = NULL;
75   if(e_route->gw_dst)
76     new_e_route =  generic_new_extended_route(SURF_ROUTING_RECURSIVE, e_route, 1);
77   else
78     new_e_route =  generic_new_extended_route(SURF_ROUTING_BASE, e_route, 1);
79
80   xbt_dynar_free(&(e_route->link_list));
81
82   xbt_dict_set(dict_bypassRoutes, route_name, new_e_route, NULL);
83   no_bypassroute_declared = 0;
84   xbt_free(route_name);
85 }
86
87 /* ************************************************************************** */
88 /* *********************** GENERIC BUSINESS METHODS ************************* */
89
90 xbt_dynar_t generic_get_onelink_routes(AS_t rc) { // FIXME: kill that stub
91   xbt_die("\"generic_get_onelink_routes\" not implemented yet");
92   return NULL;
93 }
94
95 static const char *instr_node_name(xbt_node_t node)
96 {
97   void *data = xbt_graph_node_get_data(node);
98   char *str = (char *) data;
99   return str;
100 }
101
102 xbt_node_t new_xbt_graph_node(xbt_graph_t graph, const char *name,
103                               xbt_dict_t nodes)
104 {
105   xbt_node_t ret = xbt_dict_get_or_null(nodes, name);
106   if (ret)
107     return ret;
108
109   ret = xbt_graph_new_node(graph, xbt_strdup(name));
110   xbt_dict_set(nodes, name, ret, NULL);
111   return ret;
112 }
113
114 xbt_edge_t new_xbt_graph_edge(xbt_graph_t graph, xbt_node_t s, xbt_node_t d,
115                               xbt_dict_t edges)
116 {
117   xbt_edge_t ret;
118
119   const char *sn = instr_node_name(s);
120   const char *dn = instr_node_name(d);
121   int len = strlen(sn) + strlen(dn) + 1;
122   char *name = (char *) xbt_malloc(len * sizeof(char));
123
124
125   snprintf(name, len, "%s%s", sn, dn);
126   ret = xbt_dict_get_or_null(edges, name);
127   if (ret == NULL) {
128     snprintf(name, len, "%s%s", dn, sn);
129     ret = xbt_dict_get_or_null(edges, name);
130   }
131
132   if (ret == NULL) {
133     ret = xbt_graph_new_edge(graph, s, d, NULL);
134     xbt_dict_set(edges, name, ret, NULL);
135   }
136   free(name);
137   return ret;
138 }
139
140 void generic_get_graph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges,
141                        AS_t rc)
142 {
143   int src, dst;
144   int table_size = xbt_dynar_length(rc->index_network_elm);
145
146   sg_platf_route_cbarg_t route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
147   route->link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
148
149   for (src = 0; src < table_size; src++) {
150     sg_routing_edge_t my_src =
151         xbt_dynar_get_as(rc->index_network_elm, src, sg_routing_edge_t);
152     for (dst = 0; dst < table_size; dst++) {
153       if (src == dst)
154         continue;
155       sg_routing_edge_t my_dst =
156           xbt_dynar_get_as(rc->index_network_elm, dst, sg_routing_edge_t);
157
158       rc->get_route_and_latency(rc, my_src, my_dst, route, NULL);
159
160       XBT_DEBUG ("get_route_and_latency %s -> %s", my_src->name, my_dst->name);
161
162       if (route) {
163         unsigned int cpt;
164         void *link;
165
166         xbt_node_t current, previous;
167         const char *previous_name, *current_name;
168
169         if (route->gw_src) {
170           previous = new_xbt_graph_node(graph, route->gw_src->name, nodes);
171           previous_name = route->gw_src->name;
172         } else {
173           previous = new_xbt_graph_node(graph, my_src->name, nodes);
174           previous_name = my_src->name;
175         }
176
177         xbt_dynar_foreach(route->link_list, cpt, link) {
178           char *link_name = ((surf_resource_t) link)->name;
179           current = new_xbt_graph_node(graph, link_name, nodes);
180           current_name = link_name;
181           new_xbt_graph_edge(graph, previous, current, edges);
182           XBT_DEBUG ("  %s -> %s", previous_name, current_name);
183           previous = current;
184           previous_name = current_name;
185         }
186
187         if (route->gw_dst) {
188           current = new_xbt_graph_node(graph, route->gw_dst->name, nodes);
189           current_name = route->gw_dst->name;
190         } else {
191           current = new_xbt_graph_node(graph, my_dst->name, nodes);
192           current_name = my_dst->name;
193         }
194         new_xbt_graph_edge(graph, previous, current, edges);
195         XBT_DEBUG ("  %s -> %s", previous_name, current_name);
196       }
197     }
198   }
199 }
200
201 sg_platf_route_cbarg_t generic_get_bypassroute(AS_t rc, sg_routing_edge_t src,
202                                                sg_routing_edge_t dst,
203                                                double *lat)
204 {
205   // If never set a bypass route return NULL without any further computations
206   XBT_DEBUG("generic_get_bypassroute from %s to %s", src->name, dst->name);
207   if (no_bypassroute_declared)
208     return NULL;
209
210   sg_platf_route_cbarg_t e_route_bypass = NULL;
211   xbt_dict_t dict_bypassRoutes = rc->bypassRoutes;
212
213   if(dst->rc_component == rc && src->rc_component == rc ){
214     char *route_name = bprintf("%s#%s", src->name, dst->name);
215     e_route_bypass = xbt_dict_get_or_null(dict_bypassRoutes, route_name);
216     if(e_route_bypass)
217       XBT_DEBUG("Find bypass route with %ld links",xbt_dynar_length(e_route_bypass->link_list));
218     free(route_name);
219   }
220   else{
221     AS_t src_as, dst_as;
222     int index_src, index_dst;
223     xbt_dynar_t path_src = NULL;
224     xbt_dynar_t path_dst = NULL;
225     AS_t current = NULL;
226     AS_t *current_src = NULL;
227     AS_t *current_dst = NULL;
228
229     if (src == NULL || dst == NULL)
230       xbt_die("Ask for route \"from\"(%s) or \"to\"(%s) no found at AS \"%s\"",
231           src->name, dst->name, rc->name);
232
233     src_as = src->rc_component;
234     dst_as = dst->rc_component;
235
236     /* (2) find the path to the root routing component */
237     path_src = xbt_dynar_new(sizeof(AS_t), NULL);
238     current = src_as;
239     while (current != NULL) {
240       xbt_dynar_push(path_src, &current);
241       current = current->routing_father;
242     }
243     path_dst = xbt_dynar_new(sizeof(AS_t), NULL);
244     current = dst_as;
245     while (current != NULL) {
246       xbt_dynar_push(path_dst, &current);
247       current = current->routing_father;
248     }
249
250     /* (3) find the common father */
251     index_src = path_src->used - 1;
252     index_dst = path_dst->used - 1;
253     current_src = xbt_dynar_get_ptr(path_src, index_src);
254     current_dst = xbt_dynar_get_ptr(path_dst, index_dst);
255     while (index_src >= 0 && index_dst >= 0 && *current_src == *current_dst) {
256       xbt_dynar_pop_ptr(path_src);
257       xbt_dynar_pop_ptr(path_dst);
258       index_src--;
259       index_dst--;
260       current_src = xbt_dynar_get_ptr(path_src, index_src);
261       current_dst = xbt_dynar_get_ptr(path_dst, index_dst);
262     }
263
264     int max_index_src = path_src->used - 1;
265     int max_index_dst = path_dst->used - 1;
266
267     int max_index = max(max_index_src, max_index_dst);
268     int i, max;
269
270     for (max = 0; max <= max_index; max++) {
271       for (i = 0; i < max; i++) {
272         if (i <= max_index_src && max <= max_index_dst) {
273           char *route_name = bprintf("%s#%s",
274               (*(AS_t *)
275                   (xbt_dynar_get_ptr(path_src, i)))->name,
276                   (*(AS_t *)
277                       (xbt_dynar_get_ptr(path_dst, max)))->name);
278           e_route_bypass = xbt_dict_get_or_null(dict_bypassRoutes, route_name);
279           xbt_free(route_name);
280         }
281         if (e_route_bypass)
282           break;
283         if (max <= max_index_src && i <= max_index_dst) {
284           char *route_name = bprintf("%s#%s",
285               (*(AS_t *)
286                   (xbt_dynar_get_ptr(path_src, max)))->name,
287                   (*(AS_t *)
288                       (xbt_dynar_get_ptr(path_dst, i)))->name);
289           e_route_bypass = xbt_dict_get_or_null(dict_bypassRoutes, route_name);
290           xbt_free(route_name);
291         }
292         if (e_route_bypass)
293           break;
294       }
295
296       if (e_route_bypass)
297         break;
298
299       if (max <= max_index_src && max <= max_index_dst) {
300         char *route_name = bprintf("%s#%s",
301             (*(AS_t *)
302                 (xbt_dynar_get_ptr(path_src, max)))->name,
303                 (*(AS_t *)
304                     (xbt_dynar_get_ptr(path_dst, max)))->name);
305         e_route_bypass = xbt_dict_get_or_null(dict_bypassRoutes, route_name);
306         xbt_free(route_name);
307       }
308       if (e_route_bypass)
309         break;
310     }
311
312     xbt_dynar_free(&path_src);
313     xbt_dynar_free(&path_dst);
314   }
315
316   sg_platf_route_cbarg_t new_e_route = NULL;
317   if (e_route_bypass) {
318     void *link;
319     unsigned int cpt = 0;
320     new_e_route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
321     new_e_route->gw_src = e_route_bypass->gw_src;
322     new_e_route->gw_dst = e_route_bypass->gw_dst;
323     new_e_route->link_list =
324         xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
325     xbt_dynar_foreach(e_route_bypass->link_list, cpt, link) {
326       xbt_dynar_push(new_e_route->link_list, &link);
327       if (lat)
328         *lat += surf_network_model->extension.network.get_link_latency(link);
329     }
330   }
331
332   return new_e_route;
333 }
334
335 /* ************************************************************************** */
336 /* ************************* GENERIC AUX FUNCTIONS ************************** */
337 /* change a route containing link names into a route containing link entities */
338 sg_platf_route_cbarg_t
339 generic_new_extended_route(e_surf_routing_hierarchy_t hierarchy,
340     sg_platf_route_cbarg_t routearg, int change_order) {
341
342   sg_platf_route_cbarg_t result;
343   char *link_name;
344   unsigned int cpt;
345
346   result = xbt_new0(s_sg_platf_route_cbarg_t, 1);
347   result->link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
348
349   xbt_assert(hierarchy == SURF_ROUTING_BASE
350       || hierarchy == SURF_ROUTING_RECURSIVE,
351       "The hierarchy of this AS is neither BASIC nor RECURSIVE, I'm lost here.");
352
353   if (hierarchy == SURF_ROUTING_RECURSIVE) {
354
355     xbt_assert(routearg->gw_src && routearg->gw_dst,
356         "NULL is obviously a bad gateway");
357
358     /* remeber not erase the gateway names */
359     result->gw_src = routearg->gw_src;
360     result->gw_dst = routearg->gw_dst;
361   }
362
363   xbt_dynar_foreach(routearg->link_list, cpt, link_name) {
364
365     void *link = xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
366     if (link) {
367       if (change_order)
368         xbt_dynar_push(result->link_list, &link);
369       else
370         xbt_dynar_unshift(result->link_list, &link);
371     } else
372       THROWF(mismatch_error, 0, "Link %s not found", link_name);
373   }
374
375   return result;
376 }
377
378 void generic_free_route(sg_platf_route_cbarg_t route)
379 {
380   if (route) {
381     xbt_dynar_free(&route->link_list);
382     xbt_free(route);
383   }
384 }
385
386 static AS_t generic_as_exist(AS_t find_from,
387     AS_t to_find)
388 {
389   //return to_find; // FIXME: BYPASSERROR OF FOREACH WITH BREAK
390   xbt_dict_cursor_t cursor = NULL;
391   char *key;
392   int found = 0;
393   AS_t elem;
394   xbt_dict_foreach(find_from->routing_sons, cursor, key, elem) {
395     if (to_find == elem || generic_as_exist(elem, to_find)) {
396       found = 1;
397       break;
398     }
399   }
400   if (found)
401     return to_find;
402   return NULL;
403 }
404
405 AS_t
406 generic_autonomous_system_exist(AS_t rc, char *element)
407 {
408   //return rc; // FIXME: BYPASSERROR OF FOREACH WITH BREAK
409   AS_t element_as, result, elem;
410   xbt_dict_cursor_t cursor = NULL;
411   char *key;
412   element_as = ((sg_routing_edge_t)
413       xbt_lib_get_or_null(as_router_lib, element,
414           ROUTING_ASR_LEVEL))->rc_component;
415   result = ((AS_t) - 1);
416   if (element_as != rc)
417     result = generic_as_exist(rc, element_as);
418
419   int found = 0;
420   if (result) {
421     xbt_dict_foreach(element_as->routing_sons, cursor, key, elem) {
422       found = !strcmp(elem->name, element);
423       if (found)
424         break;
425     }
426     if (found)
427       return element_as;
428   }
429   return NULL;
430 }
431
432 AS_t
433 generic_processing_units_exist(AS_t rc, char *element)
434 {
435   AS_t element_as;
436   element_as = ((sg_routing_edge_t)
437       xbt_lib_get_or_null(host_lib,
438           element, ROUTING_HOST_LEVEL))->rc_component;
439   if (element_as == rc)
440     return element_as;
441   return generic_as_exist(rc, element_as);
442 }
443
444 void generic_src_dst_check(AS_t rc, sg_routing_edge_t src,
445     sg_routing_edge_t dst)
446 {
447
448   sg_routing_edge_t src_data = src;
449   sg_routing_edge_t dst_data = dst;
450
451   if (src_data == NULL || dst_data == NULL)
452     xbt_die("Ask for route \"from\"(%s) or \"to\"(%s) no found at AS \"%s\"",
453         src->name,
454         dst->name,
455         rc->name);
456
457   AS_t src_as =
458       (src_data)->rc_component;
459   AS_t dst_as =
460       (dst_data)->rc_component;
461
462   if (src_as != dst_as)
463     xbt_die("The src(%s in %s) and dst(%s in %s) are in differents AS",
464         src->name, src_as->name,
465         dst->name, dst_as->name);
466
467   if (rc != dst_as)
468     xbt_die
469     ("The routing component of src'%s' and dst'%s' is not the same as the network elements belong (%s?=%s?=%s)",
470         src->name,
471         dst->name,
472         src_as->name,
473         dst_as->name,
474         rc->name);
475 }