Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplification
[simgrid.git] / src / kernel / routing / VivaldiZone.cpp
1 /* Copyright (c) 2013-2021. 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/VivaldiZone.hpp"
7 #include "simgrid/kernel/routing/NetPoint.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "src/surf/network_interface.hpp"
11 #include "src/surf/xml/platf_private.hpp"
12 #include "surf/surf.hpp"
13
14 #include <boost/algorithm/string.hpp>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_vivaldi, surf, "Routing part of surf");
17
18 namespace simgrid {
19 namespace kernel {
20 namespace routing {
21
22 namespace vivaldi {
23
24 xbt::Extension<NetPoint, Coords> Coords::EXTENSION_ID;
25
26 Coords::Coords(NetPoint* netpoint, const std::string& coordStr)
27 {
28   if (not Coords::EXTENSION_ID.valid())
29     Coords::EXTENSION_ID = NetPoint::extension_create<Coords>();
30
31   std::vector<std::string> string_values;
32   boost::split(string_values, coordStr, boost::is_any_of(" "));
33   xbt_assert(string_values.size() == 3, "Coordinates of %s must have 3 dimensions", netpoint->get_cname());
34
35   for (auto const& str : string_values)
36     try {
37       coords.push_back(std::stod(str));
38     } catch (std::invalid_argument const& ia) {
39       throw std::invalid_argument(std::string("Invalid coordinate: ") + ia.what());
40     }
41   coords.shrink_to_fit();
42
43   netpoint->extension_set<Coords>(this);
44   XBT_DEBUG("Coords of %s %p: %s", netpoint->get_cname(), netpoint, coordStr.c_str());
45 }
46 } // namespace vivaldi
47
48 static inline double euclidean_dist_comp(double src_coord, double dst_coord)
49 {
50   return (src_coord - dst_coord) * (src_coord - dst_coord);
51 }
52
53 static const std::vector<double>& netpoint_get_coords(NetPoint* np)
54 {
55   auto* coords = np->extension<vivaldi::Coords>();
56   xbt_assert(coords, "Please specify the Vivaldi coordinates of %s %s (%p)",
57              (np->is_netzone() ? "Netzone" : (np->is_host() ? "Host" : "Router")), np->get_cname(), np);
58   return coords->coords;
59 }
60
61 void VivaldiZone::set_peer_link(NetPoint* netpoint, double bw_in, double bw_out)
62 {
63   xbt_assert(netpoint->get_englobing_zone() == this,
64              "Cannot add a peer link to a netpoint that is not in this netzone");
65
66   std::string link_up        = "link_" + netpoint->get_name() + "_UP";
67   std::string link_down      = "link_" + netpoint->get_name() + "_DOWN";
68   auto* linkUp               = create_link(link_up, std::vector<double>{bw_out})->seal();
69   auto* linkDown             = create_link(link_down, std::vector<double>{bw_in})->seal();
70   add_route(netpoint, nullptr, nullptr, nullptr, {linkUp->get_impl()}, false);
71   add_route(nullptr, netpoint, nullptr, nullptr, {linkDown->get_impl()}, false);
72 }
73
74 void VivaldiZone::get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* route, double* lat)
75 {
76   XBT_DEBUG("vivaldi getLocalRoute from '%s'[%u] '%s'[%u]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
77
78   if (src->is_netzone()) {
79     std::string srcName = "router_" + src->get_name();
80     std::string dstName = "router_" + dst->get_name();
81     route->gw_src       = s4u::Engine::get_instance()->netpoint_by_name_or_null(srcName);
82     route->gw_dst       = s4u::Engine::get_instance()->netpoint_by_name_or_null(dstName);
83   }
84
85   StarZone::get_local_route(src, dst, route, lat);
86   /* Compute the extra latency due to the euclidean distance if needed */
87   if (lat) {
88     std::vector<double> srcCoords = netpoint_get_coords(src);
89     std::vector<double> dstCoords = netpoint_get_coords(dst);
90
91     double euclidean_dist =
92         sqrt(euclidean_dist_comp(srcCoords[0], dstCoords[0]) + euclidean_dist_comp(srcCoords[1], dstCoords[1])) +
93         fabs(srcCoords[2]) + fabs(dstCoords[2]);
94
95     XBT_DEBUG("Updating latency %f += %f", *lat, euclidean_dist);
96     *lat += euclidean_dist / 1000.0; // From .ms to .s
97   }
98 }
99
100 } // namespace routing
101 } // namespace kernel
102
103 namespace s4u {
104 NetZone* create_vivaldi_zone(const std::string& name)
105 {
106   return (new kernel::routing::VivaldiZone(name))->get_iface();
107 }
108 } // namespace s4u
109
110 } // namespace simgrid