Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
let *Zones use their own network_model_ instead of the global surf_network_model
[simgrid.git] / src / kernel / routing / FullZone.cpp
1 /* Copyright (c) 2009-2018. 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 "simgrid/kernel/routing/FullZone.hpp"
7 #include "simgrid/kernel/routing/NetPoint.hpp"
8 #include "src/surf/network_interface.hpp"
9 #include "src/surf/xml/platf_private.hpp"
10 #include "surf/surf.hpp"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_full, surf, "Routing part of surf");
13
14 #define TO_ROUTE_FULL(i, j) routing_table_[(i) + (j)*table_size]
15
16 namespace simgrid {
17 namespace kernel {
18 namespace routing {
19 FullZone::FullZone(NetZoneImpl* father, std::string name, resource::NetworkModel* netmodel)
20     : RoutedZone(father, name, netmodel)
21 {
22 }
23
24 void FullZone::seal()
25 {
26   unsigned int table_size = get_table_size();
27
28   /* Create table if needed */
29   if (not routing_table_)
30     routing_table_ = new RouteCreationArgs*[table_size * table_size]();
31
32   /* Add the loopback if needed */
33   if (network_model_->loopback_ && hierarchy_ == RoutingMode::base) {
34     for (unsigned int i = 0; i < table_size; i++) {
35       RouteCreationArgs* route = TO_ROUTE_FULL(i, i);
36       if (not route) {
37         route = new RouteCreationArgs();
38         route->link_list.push_back(network_model_->loopback_);
39         TO_ROUTE_FULL(i, i) = route;
40       }
41     }
42   }
43 }
44
45 FullZone::~FullZone()
46 {
47   if (routing_table_) {
48     unsigned int table_size = get_table_size();
49     /* Delete routing table */
50     for (unsigned int i = 0; i < table_size; i++)
51       for (unsigned int j = 0; j < table_size; j++)
52         delete TO_ROUTE_FULL(i, j);
53     delete[] routing_table_;
54   }
55 }
56
57 void FullZone::get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* res, double* lat)
58 {
59   XBT_DEBUG("full getLocalRoute from %s[%u] to %s[%u]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
60
61   unsigned int table_size        = get_table_size();
62   RouteCreationArgs* e_route     = TO_ROUTE_FULL(src->id(), dst->id());
63
64   if (e_route != nullptr) {
65     res->gw_src = e_route->gw_src;
66     res->gw_dst = e_route->gw_dst;
67     for (auto const& link : e_route->link_list) {
68       res->link_list.push_back(link);
69       if (lat)
70         *lat += link->get_latency();
71     }
72   }
73 }
74
75 void FullZone::add_route(NetPoint* src, NetPoint* dst, NetPoint* gw_src, NetPoint* gw_dst,
76                          std::vector<resource::LinkImpl*>& link_list, bool symmetrical)
77 {
78   add_route_check_params(src, dst, gw_src, gw_dst, link_list, symmetrical);
79
80   unsigned int table_size = get_table_size();
81
82   if (not routing_table_)
83     routing_table_ = new RouteCreationArgs*[table_size * table_size]();
84
85   /* Check that the route does not already exist */
86   if (gw_dst) // inter-zone route (to adapt the error message, if any)
87     xbt_assert(nullptr == TO_ROUTE_FULL(src->id(), dst->id()),
88                "The route between %s@%s and %s@%s already exists (Rq: routes are symmetrical by default).",
89                src->get_cname(), gw_src->get_cname(), dst->get_cname(), gw_dst->get_cname());
90   else
91     xbt_assert(nullptr == TO_ROUTE_FULL(src->id(), dst->id()),
92                "The route between %s and %s already exists (Rq: routes are symmetrical by default).", src->get_cname(),
93                dst->get_cname());
94
95   /* Add the route to the base */
96   TO_ROUTE_FULL(src->id(), dst->id()) =
97       new_extended_route(hierarchy_, src, dst, gw_src, gw_dst, link_list, symmetrical, true);
98
99   if (symmetrical == true && src != dst) {
100     if (gw_dst && gw_src) {
101       NetPoint* gw_tmp = gw_src;
102       gw_src           = gw_dst;
103       gw_dst           = gw_tmp;
104     }
105     if (gw_dst && gw_src) // inter-zone route (to adapt the error message, if any)
106       xbt_assert(
107           nullptr == TO_ROUTE_FULL(dst->id(), src->id()),
108           "The route between %s@%s and %s@%s already exists. You should not declare the reverse path as symmetrical.",
109           dst->get_cname(), gw_dst->get_cname(), src->get_cname(), gw_src->get_cname());
110     else
111       xbt_assert(nullptr == TO_ROUTE_FULL(dst->id(), src->id()),
112                  "The route between %s and %s already exists. You should not declare the reverse path as symmetrical.",
113                  dst->get_cname(), src->get_cname());
114
115     TO_ROUTE_FULL(dst->id(), src->id()) =
116         new_extended_route(hierarchy_, src, dst, gw_src, gw_dst, link_list, symmetrical, false);
117   }
118 }
119 }
120 }
121 } // namespace