Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
nicer API to the Netcard type
[simgrid.git] / src / surf / surf_routing_RoutedGraph.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 "surf_routing_RoutedGraph.hpp"
8
9 #include <cstdlib>
10
11 #include <algorithm>
12
13 #include "xbt/dict.h"
14 #include "xbt/log.h"
15 #include "xbt/sysdep.h"
16 #include "xbt/dynar.h"
17 #include "xbt/graph.h"
18
19 #include "network_interface.hpp"
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_routing_generic, surf_route, "Generic implementation of the surf routing");
22
23 void routing_route_free(sg_platf_route_cbarg_t route)
24 {
25   if (route) {
26     xbt_dynar_free(&route->link_list);
27     xbt_free(route);
28   }
29 }
30
31 namespace simgrid {
32 namespace surf {
33   
34 AsRoutedGraph::AsRoutedGraph(const char*name)
35   : As(name)
36 {
37 }
38
39 AsRoutedGraph::~AsRoutedGraph()
40 {
41 }
42
43
44 }
45 }
46
47 /* ************************************************************************** */
48 /* *********************** GENERIC BUSINESS METHODS ************************* */
49
50 static const char *instr_node_name(xbt_node_t node)
51 {
52   void *data = xbt_graph_node_get_data(node);
53   char *str = (char *) data;
54   return str;
55 }
56
57 xbt_node_t new_xbt_graph_node(xbt_graph_t graph, const char *name, xbt_dict_t nodes)
58 {
59   xbt_node_t ret = (xbt_node_t) xbt_dict_get_or_null(nodes, name);
60   if (ret)
61     return ret;
62
63   ret = xbt_graph_new_node(graph, xbt_strdup(name));
64   xbt_dict_set(nodes, name, ret, NULL);
65   return ret;
66 }
67
68 xbt_edge_t new_xbt_graph_edge(xbt_graph_t graph, xbt_node_t s, xbt_node_t d, xbt_dict_t edges)
69 {
70   const char *sn = instr_node_name(s);
71   const char *dn = instr_node_name(d);
72   int len = strlen(sn) + strlen(dn) + 1;
73   char *name = (char *) xbt_malloc(len * sizeof(char));
74
75
76   snprintf(name, len, "%s%s", sn, dn);
77   xbt_edge_t ret = (xbt_edge_t) xbt_dict_get_or_null(edges, name);
78   if (ret == NULL) {
79     snprintf(name, len, "%s%s", dn, sn);
80     ret = (xbt_edge_t) xbt_dict_get_or_null(edges, name);
81   }
82
83   if (ret == NULL) {
84     ret = xbt_graph_new_edge(graph, s, d, NULL);
85     xbt_dict_set(edges, name, ret, NULL);
86   }
87   free(name);
88   return ret;
89 }
90
91 namespace simgrid {
92 namespace surf {
93
94 void AsRoutedGraph::getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)
95 {
96   int src, dst;
97   int table_size = xbt_dynar_length(vertices_);
98
99
100   for (src = 0; src < table_size; src++) {
101     NetCard *my_src =
102         xbt_dynar_get_as(vertices_, src, NetCard*);
103     for (dst = 0; dst < table_size; dst++) {
104       if (src == dst)
105         continue;
106       NetCard *my_dst =
107           xbt_dynar_get_as(vertices_, dst, NetCard*);
108
109       sg_platf_route_cbarg_t route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
110       route->link_list = xbt_dynar_new(sizeof(Link*), NULL);
111
112       getRouteAndLatency(my_src, my_dst, route, NULL);
113
114       XBT_DEBUG ("get_route_and_latency %s -> %s", my_src->name(), my_dst->name());
115
116       unsigned int cpt;
117       void *link;
118
119       xbt_node_t current, previous;
120       const char *previous_name, *current_name;
121
122       if (route->gw_src) {
123         previous = new_xbt_graph_node(graph, route->gw_src->name(), nodes);
124         previous_name = route->gw_src->name();
125       } else {
126         previous = new_xbt_graph_node(graph, my_src->name(), nodes);
127         previous_name = my_src->name();
128       }
129
130       xbt_dynar_foreach(route->link_list, cpt, link) {
131         const char *link_name = static_cast<simgrid::surf::Resource*>(
132           link)->getName();
133         current = new_xbt_graph_node(graph, link_name, nodes);
134         current_name = link_name;
135         new_xbt_graph_edge(graph, previous, current, edges);
136         XBT_DEBUG ("  %s -> %s", previous_name, current_name);
137         previous = current;
138         previous_name = current_name;
139       }
140
141       if (route->gw_dst) {
142         current = new_xbt_graph_node(graph, route->gw_dst->name(), nodes);
143         current_name = route->gw_dst->name();
144       } else {
145         current = new_xbt_graph_node(graph, my_dst->name(), nodes);
146         current_name = my_dst->name();
147       }
148       new_xbt_graph_edge(graph, previous, current, edges);
149       XBT_DEBUG ("  %s -> %s", previous_name, current_name);
150
151       xbt_dynar_free (&(route->link_list));
152       xbt_free (route);
153     }
154   }
155 }
156
157
158 /* ************************************************************************** */
159 /* ************************* GENERIC AUX FUNCTIONS ************************** */
160 /* change a route containing link names into a route containing link entities */
161 sg_platf_route_cbarg_t AsRoutedGraph::newExtendedRoute(e_surf_routing_hierarchy_t hierarchy,
162       sg_platf_route_cbarg_t routearg, int change_order) {
163
164   sg_platf_route_cbarg_t result;
165   char *link_name;
166   unsigned int cpt;
167
168   result = xbt_new0(s_sg_platf_route_cbarg_t, 1);
169   result->link_list = xbt_dynar_new(sizeof(Link*), NULL);
170
171   xbt_assert(hierarchy == SURF_ROUTING_BASE
172       || hierarchy == SURF_ROUTING_RECURSIVE,
173       "The hierarchy of this AS is neither BASIC nor RECURSIVE, I'm lost here.");
174
175   if (hierarchy == SURF_ROUTING_RECURSIVE) {
176
177     xbt_assert(routearg->gw_src && routearg->gw_dst, "NULL is obviously a deficient gateway");
178
179     /* remember not erase the gateway names */
180     result->gw_src = routearg->gw_src;
181     result->gw_dst = routearg->gw_dst;
182   }
183
184   xbt_dynar_foreach(routearg->link_list, cpt, link_name) {
185
186     Link *link = Link::byName(link_name);
187     if (link) {
188       if (change_order)
189         xbt_dynar_push(result->link_list, &link);
190       else
191         xbt_dynar_unshift(result->link_list, &link);
192     } else
193       THROWF(mismatch_error, 0, "Link '%s' not found", link_name);
194   }
195
196   return result;
197 }
198
199 void AsRoutedGraph::getRouteCheckParams(NetCard *src, NetCard *dst)
200 {
201   xbt_assert(src,"Cannot find a route from NULL to %s", dst->name());
202   xbt_assert(dst,"Cannot find a route from %s to NULL", src->name());
203
204   As *src_as = src->containingAS();
205   As *dst_as = dst->containingAS();
206
207   xbt_assert(src_as == dst_as, "Internal error: %s@%s and %s@%s are not in the same AS as expected. Please report that bug.",
208         src->name(), src_as->name_, dst->name(), dst_as->name_);
209
210   xbt_assert(this == dst_as,
211       "Internal error: route destination %s@%s is not in AS %s as expected (route source: %s@%s). Please report that bug.",
212         src->name(), dst->name(),  src_as->name_, dst_as->name_,  name_);
213 }
214 void AsRoutedGraph::addRouteCheckParams(sg_platf_route_cbarg_t route) {
215   const char *srcName = route->src;
216   const char *dstName = route->dst;
217   NetCard *src = sg_netcard_by_name_or_null(srcName);
218   NetCard *dst = sg_netcard_by_name_or_null(dstName);
219
220   if(!route->gw_dst && !route->gw_src) {
221     XBT_DEBUG("Load Route from \"%s\" to \"%s\"", srcName, dstName);
222     xbt_assert(src, "Cannot add a route from %s to %s: %s does not exist.", srcName, dstName, srcName);
223     xbt_assert(dst, "Cannot add a route from %s to %s: %s does not exist.", srcName, dstName, dstName);
224     xbt_assert(!xbt_dynar_is_empty(route->link_list), "Empty route (between %s and %s) forbidden.", srcName, dstName);
225     xbt_assert(! src->isAS(), "When defining a route, src cannot be an AS such as '%s'. Did you meant to have an ASroute?", srcName);
226     xbt_assert(! dst->isAS(), "When defining a route, dst cannot be an AS such as '%s'. Did you meant to have an ASroute?", dstName);
227   } else {
228     XBT_DEBUG("Load ASroute from %s@%s to %s@%s", srcName, route->gw_src->name(), dstName, route->gw_dst->name());
229     xbt_assert(src->isAS(), "When defining an ASroute, src must be an AS but '%s' is not", srcName);
230     xbt_assert(dst->isAS(), "When defining an ASroute, dst must be an AS but '%s' is not", dstName);
231
232     xbt_assert(route->gw_src->isHost() || route->gw_src->isRouter(),
233         "When defining an ASroute, gw_src must be an host or a router but '%s' is not.", srcName);
234     xbt_assert(route->gw_dst->isHost() || route->gw_dst->isRouter(),
235         "When defining an ASroute, gw_dst must be an host or a router but '%s' is not.", dstName);
236
237     xbt_assert(route->gw_src != route->gw_dst, "Cannot define an ASroute from '%s' to itself", route->gw_src->name());
238
239     xbt_assert(src, "Cannot add a route from %s@%s to %s@%s: %s does not exist.",
240         srcName,route->gw_src->name(), dstName,route->gw_dst->name(), srcName);
241     xbt_assert(dst, "Cannot add a route from %s@%s to %s@%s: %s does not exist.",
242         srcName,route->gw_src->name(), dstName,route->gw_dst->name(), dstName);
243     xbt_assert(!xbt_dynar_is_empty(route->link_list), "Empty route (between %s@%s and %s@%s) forbidden.",
244         srcName,route->gw_src->name(), dstName,route->gw_dst->name());
245   }
246 }
247
248 }
249 }