Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
namespace cleanups
[simgrid.git] / src / kernel / routing / VivaldiZone.cpp
1 /* Copyright (c) 2013-2020. 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(int index, std::vector<double>* src, std::vector<double>* dst)
49 {
50   double src_coord = src->at(index);
51   double dst_coord = dst->at(index);
52
53   return (src_coord - dst_coord) * (src_coord - dst_coord);
54 }
55
56 static std::vector<double>* netpoint_get_coords(NetPoint* np)
57 {
58   vivaldi::Coords* coords = np->extension<vivaldi::Coords>();
59   xbt_assert(coords, "Please specify the Vivaldi coordinates of %s %s (%p)",
60              (np->is_netzone() ? "Netzone" : (np->is_host() ? "Host" : "Router")), np->get_cname(), np);
61   return &coords->coords;
62 }
63
64 VivaldiZone::VivaldiZone(NetZoneImpl* father, const std::string& name, resource::NetworkModel* netmodel)
65     : ClusterZone(father, name, netmodel)
66 {
67 }
68
69 void VivaldiZone::set_peer_link(NetPoint* netpoint, double bw_in, double bw_out, const std::string& coord)
70 {
71   xbt_assert(netpoint->get_englobing_zone() == this,
72              "Cannot add a peer link to a netpoint that is not in this netzone");
73
74   new vivaldi::Coords(netpoint, coord);
75
76   std::string link_up      = "link_" + netpoint->get_name() + "_UP";
77   std::string link_down    = "link_" + netpoint->get_name() + "_DOWN";
78   resource::LinkImpl* linkUp =
79       network_model_->create_link(link_up, std::vector<double>(1, bw_out), 0, s4u::Link::SharingPolicy::SHARED);
80   resource::LinkImpl* linkDown =
81       network_model_->create_link(link_down, std::vector<double>(1, bw_in), 0, s4u::Link::SharingPolicy::SHARED);
82   private_links_.insert({netpoint->id(), {linkUp, linkDown}});
83 }
84
85 void VivaldiZone::get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* route, double* lat)
86 {
87   XBT_DEBUG("vivaldi getLocalRoute from '%s'[%u] '%s'[%u]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
88
89   if (src->is_netzone()) {
90     std::string srcName = "router_" + src->get_name();
91     std::string dstName = "router_" + dst->get_name();
92     route->gw_src       = s4u::Engine::get_instance()->netpoint_by_name_or_null(srcName);
93     route->gw_dst       = s4u::Engine::get_instance()->netpoint_by_name_or_null(dstName);
94   }
95
96   /* Retrieve the private links */
97   auto src_link = private_links_.find(src->id());
98   if (src_link != private_links_.end()) {
99     std::pair<resource::LinkImpl*, resource::LinkImpl*> info = src_link->second;
100     if (info.first) {
101       route->link_list.push_back(info.first);
102       if (lat)
103         *lat += info.first->get_latency();
104     }
105   } else {
106     XBT_DEBUG("Source of private link (%u) doesn't exist", src->id());
107   }
108
109   auto dst_link = private_links_.find(dst->id());
110   if (dst_link != private_links_.end()) {
111     std::pair<resource::LinkImpl*, resource::LinkImpl*> info = dst_link->second;
112     if (info.second) {
113       route->link_list.push_back(info.second);
114       if (lat)
115         *lat += info.second->get_latency();
116     }
117   } else {
118     XBT_DEBUG("Destination of private link (%u) doesn't exist", dst->id());
119   }
120
121   /* Compute the extra latency due to the euclidean distance if needed */
122   if (lat) {
123     std::vector<double>* srcCoords = netpoint_get_coords(src);
124     std::vector<double>* dstCoords = netpoint_get_coords(dst);
125
126     double euclidean_dist =
127         sqrt(euclidean_dist_comp(0, srcCoords, dstCoords) + euclidean_dist_comp(1, srcCoords, dstCoords)) +
128         fabs(srcCoords->at(2)) + fabs(dstCoords->at(2));
129
130     XBT_DEBUG("Updating latency %f += %f", *lat, euclidean_dist);
131     *lat += euclidean_dist / 1000.0; // From .ms to .s
132   }
133 }
134 } // namespace routing
135 } // namespace kernel
136 } // namespace simgrid