Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use std:: instead of fixed size vectors. C is over.
[simgrid.git] / src / kernel / routing / AsImpl.cpp
1 /* Copyright (c) 2006-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/log.h"
7
8 #include "simgrid/s4u/host.hpp"
9 #include "src/kernel/routing/AsImpl.hpp"
10 #include "src/surf/network_interface.hpp" // Link FIXME: move to proper header
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(AsImpl,surf, "Implementation of S4U autonomous systems");
13
14 namespace simgrid {
15   namespace kernel {
16   namespace routing {
17
18   AsImpl::AsImpl(As* father, const char* name) : As(father, name)
19   {
20     xbt_assert(nullptr == xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL),
21                "Refusing to create a second AS called '%s'.", name);
22
23     netcard_ = new NetCardImpl(name, NetCard::Type::As, static_cast<AsImpl*>(father));
24     xbt_lib_set(as_router_lib, name, ROUTING_ASR_LEVEL, static_cast<void*>(netcard_));
25     XBT_DEBUG("AS '%s' created with the id '%d'", name, netcard_->id());
26   }
27   AsImpl::~AsImpl() = default;
28
29   void AsImpl::attachHost(s4u::Host* host)
30   {
31     if (hierarchy_ == RoutingMode::unset)
32       hierarchy_ = RoutingMode::base;
33
34     host->pimpl_netcard = new NetCardImpl(host->name().c_str(), NetCard::Type::Host, this);
35   }
36
37   xbt_dynar_t AsImpl::getOneLinkRoutes()
38   {
39     return nullptr;
40   }
41
42   /** @brief Get the common ancestor and its first children in each line leading to src and dst
43    *
44    * In the recursive case, this sets common_ancestor, src_ancestor and dst_ancestor are set as follows.
45    * @verbatim
46    *         platform root
47    *               |
48    *              ...                <- possibly long path
49    *               |
50    *         common_ancestor
51    *           /        \
52    *          /          \
53    *         /            \          <- direct links
54    *        /              \
55    *       /                \
56    *  src_ancestor     dst_ancestor  <- must be different in the recursive case
57    *      |                   |
58    *     ...                 ...     <-- possibly long pathes (one hop or more)
59    *      |                   |
60    *     src                 dst
61    *  @endverbatim
62    *
63    *  In the base case (when src and dst are in the same AS), things are as follows:
64    *  @verbatim
65    *                  platform root
66    *                        |
67    *                       ...                      <-- possibly long path
68    *                        |
69    * common_ancestor==src_ancestor==dst_ancestor    <-- all the same value
70    *                   /        \
71    *                  /          \                  <-- direct links (exactly one hop)
72    *                 /            \
73    *              src              dst
74    *  @endverbatim
75    *
76    * A specific recursive case occurs when src is the ancestor of dst. In this case,
77    * the base case routing should be used so the common_ancestor is specifically set
78    * to src_ancestor==dst_ancestor.
79    * Naturally, things are completely symmetrical if dst is the ancestor of src.
80    * @verbatim
81    *            platform root
82    *                  |
83    *                 ...                <-- possibly long path
84    *                  |
85    *  src == src_ancestor==dst_ancestor==common_ancestor <-- same value
86    *                  |
87    *                 ...                <-- possibly long path (one hop or more)
88    *                  |
89    *                 dst
90    *  @endverbatim
91    */
92   static void find_common_ancestors(NetCard* src, NetCard* dst,
93                                     /* OUT */ AsImpl** common_ancestor, AsImpl** src_ancestor, AsImpl** dst_ancestor)
94   {
95     /* Deal with the easy base case */
96     if (src->containingAS() == dst->containingAS()) {
97       *common_ancestor = src->containingAS();
98       *src_ancestor    = *common_ancestor;
99       *dst_ancestor    = *common_ancestor;
100       return;
101     }
102
103     /* engage the full recursive search */
104
105     /* (1) find the path to root of src and dst*/
106     AsImpl* src_as = src->containingAS();
107     AsImpl* dst_as = dst->containingAS();
108
109     xbt_assert(src_as, "Host %s must be in an AS", src->name());
110     xbt_assert(dst_as, "Host %s must be in an AS", dst->name());
111
112     /* (2) find the path to the root routing component */
113     std::vector<AsImpl*> path_src;
114     AsImpl* current = src->containingAS();
115     while (current != nullptr) {
116       path_src.push_back(current);
117       current = static_cast<AsImpl*>(current->father());
118     }
119     std::vector<AsImpl*> path_dst;
120     current = dst->containingAS();
121     while (current != nullptr) {
122       path_dst.push_back(current);
123       current = static_cast<AsImpl*>(current->father());
124     }
125
126     /* (3) find the common father.
127      * Before that, index_src and index_dst may be different, they both point to nullptr in path_src/path_dst
128      * So we move them down simultaneously as long as they point to the same content.
129      *
130      * This works because all SimGrid platform have a unique root element (that is the last element of both paths).
131      */
132     AsImpl* father = nullptr; // the AS we dropped on the previous loop iteration
133     while (path_src.size() > 1 && path_dst.size() > 1 &&
134            path_src.at(path_src.size() - 1) == path_dst.at(path_dst.size() - 1)) {
135       father = path_src.at(path_src.size() - 1);
136       path_src.pop_back();
137       path_dst.pop_back();
138     }
139
140     /* (4) we found the difference at least. Finalize the returned values */
141     *src_ancestor = path_src.at(path_src.size() - 1); /* the first different father of src */
142     *dst_ancestor = path_dst.at(path_dst.size() - 1); /* the first different father of dst */
143     if (*src_ancestor == *dst_ancestor) {             // src is the ancestor of dst, or the contrary
144       *common_ancestor = *src_ancestor;
145     } else {
146       *common_ancestor = father;
147     }
148   }
149
150   /* PRECONDITION: this is the common ancestor of src and dst */
151   bool AsImpl::getBypassRoute(routing::NetCard* src, routing::NetCard* dst,
152                               /* OUT */ std::vector<surf::Link*>* links, double* latency)
153   {
154     // If never set a bypass route return nullptr without any further computations
155     XBT_DEBUG("generic_get_bypassroute from %s to %s", src->name(), dst->name());
156     if (bypassRoutes_.empty())
157       return false;
158
159     /* Base case, no recursion is needed */
160     if (dst->containingAS() == this && src->containingAS() == this) {
161       if (bypassRoutes_.find({src->name(), dst->name()}) != bypassRoutes_.end()) {
162         std::vector<surf::Link*>* bypassedRoute = bypassRoutes_.at({src->name(), dst->name()});
163         for (surf::Link* link : *bypassedRoute) {
164           links->push_back(link);
165           if (latency)
166             *latency += link->latency();
167         }
168         XBT_DEBUG("Found a bypass route with %zu links", bypassedRoute->size());
169         return true;
170       }
171       return false;
172     }
173
174     /* Engage recursive search */
175
176     std::vector<surf::Link*>* bypassedRoute = nullptr;
177
178     /* (1) find the path to the root routing component */
179     std::vector<As*> path_src;
180     As* current = src->containingAS();
181     while (current != nullptr) {
182       path_src.push_back(current);
183       current = current->father_;
184     }
185
186     std::vector<As*> path_dst;
187     current = dst->containingAS();
188     while (current != nullptr) {
189       path_dst.push_back(current);
190       current = current->father_;
191     }
192
193     /* (2) find the common father */
194     while (path_src.size() > 1 && path_dst.size() > 1 &&
195            path_src.at(path_src.size() - 1) == path_dst.at(path_dst.size() - 1)) {
196       path_src.pop_back();
197       path_dst.pop_back();
198     }
199
200     int max_index_src = path_src.size() - 1;
201     int max_index_dst = path_dst.size() - 1;
202
203     int max_index = std::max(max_index_src, max_index_dst);
204
205     for (int max = 0; max <= max_index; max++) {
206       for (int i = 0; i < max; i++) {
207         if (i <= max_index_src && max <= max_index_dst) {
208           const std::pair<std::string, std::string> key = {path_src.at(i)->name(), path_dst.at(max)->name()};
209           if (bypassRoutes_.find(key) != bypassRoutes_.end()) {
210             bypassedRoute = bypassRoutes_.at(key);
211             break;
212           }
213         }
214         if (max <= max_index_src && i <= max_index_dst) {
215           const std::pair<std::string, std::string> key = {path_src.at(max)->name(), path_dst.at(i)->name()};
216           if (bypassRoutes_.find(key) != bypassRoutes_.end()) {
217             bypassedRoute = bypassRoutes_.at(key);
218             break;
219           }
220         }
221       }
222
223       if (bypassedRoute)
224         break;
225
226       if (max <= max_index_src && max <= max_index_dst) {
227         const std::pair<std::string, std::string> key = {path_src.at(max)->name(), path_dst.at(max)->name()};
228         if (bypassRoutes_.find(key) != bypassRoutes_.end()) {
229           bypassedRoute = bypassRoutes_.at(key);
230           break;
231         }
232       }
233     }
234
235     if (bypassedRoute) {
236       for (surf::Link* link : *bypassedRoute) {
237         links->push_back(link);
238         if (latency)
239           *latency += link->latency();
240       }
241       return true;
242     }
243     return false;
244     }
245
246     /**
247      * \brief Recursive function for getRouteAndLatency
248      *
249      * \param src the source host
250      * \param dst the destination host
251      * \param links Where to store the links and the gw information
252      * \param latency If not nullptr, the latency of all links will be added in it
253      */
254     void AsImpl::getRouteRecursive(routing::NetCard *src, routing::NetCard *dst,
255         /* OUT */ std::vector<surf::Link*> * links, double *latency)
256     {
257       s_sg_platf_route_cbarg_t route;
258       memset(&route,0,sizeof(route));
259
260       XBT_DEBUG("Solve route/latency \"%s\" to \"%s\"", src->name(), dst->name());
261
262       /* Find how src and dst are interconnected */
263       AsImpl *common_ancestor, *src_ancestor, *dst_ancestor;
264       find_common_ancestors(src, dst, &common_ancestor, &src_ancestor, &dst_ancestor);
265       XBT_DEBUG("elements_father: common ancestor '%s' src ancestor '%s' dst ancestor '%s'",
266           common_ancestor->name(), src_ancestor->name(), dst_ancestor->name());
267
268       /* Check whether a direct bypass is defined. If so, use it and bail out */
269       if (common_ancestor->getBypassRoute(src, dst, links, latency))
270         return;
271
272       /* If src and dst are in the same AS, life is good */
273       if (src_ancestor == dst_ancestor) {       /* SURF_ROUTING_BASE */
274         route.link_list = links;
275         common_ancestor->getRouteAndLatency(src, dst, &route, latency);
276         return;
277       }
278
279       /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
280
281       route.link_list = new std::vector<surf::Link*>();
282
283       common_ancestor->getRouteAndLatency(src_ancestor->netcard_, dst_ancestor->netcard_, &route, latency);
284       xbt_assert((route.gw_src != nullptr) && (route.gw_dst != nullptr),
285           "bad gateways for route from \"%s\" to \"%s\"", src->name(), dst->name());
286
287       /* If source gateway is not our source, we have to recursively find our way up to this point */
288       if (src != route.gw_src)
289         getRouteRecursive(src, route.gw_src, links, latency);
290       for (auto link: *route.link_list)
291         links->push_back(link);
292       delete route.link_list;
293
294       /* If dest gateway is not our destination, we have to recursively find our way from this point */
295       if (route.gw_dst != dst)
296         getRouteRecursive(route.gw_dst, dst, links, latency);
297
298     }
299
300 }}} // namespace