Logo AND Algorithmique Numérique Distribuée

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