Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / kernel / resource / WifiLinkImpl.cpp
1 /* Copyright (c) 2019-2022. 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/s4u/Host.hpp>
7
8 #include "src/kernel/resource/WifiLinkImpl.hpp"
9 #include "src/surf/surf_interface.hpp"
10
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_network);
12
13 namespace simgrid::kernel::resource {
14
15 /************
16  * Resource *
17  ************/
18
19 WifiLinkImpl::WifiLinkImpl(const std::string& name, const std::vector<double>& bandwidths, lmm::System* system)
20     : StandardLinkImpl(name)
21 {
22   this->set_constraint(system->constraint_new(this, 1));
23   for (auto bandwidth : bandwidths)
24     bandwidths_.push_back({bandwidth, 1.0, nullptr});
25 }
26
27 void WifiLinkImpl::set_host_rate(const s4u::Host* host, int rate_level)
28 {
29   host_rates_[host->get_name()] = rate_level;
30
31   // Each time we add a host, we refresh the decay model
32   refresh_decay_bandwidths();
33 }
34
35 double WifiLinkImpl::get_host_rate(const s4u::Host* host) const
36 {
37   auto host_rates_it = host_rates_.find(host->get_name());
38
39   if (host_rates_it == host_rates_.end())
40     return -1;
41
42   int rate_id = host_rates_it->second;
43   xbt_assert(rate_id >= 0,
44              "Negative host wifi rate levels are invalid but host '%s' uses %d as a rate level on link '%s'",
45              host->get_cname(), rate_id, this->get_cname());
46   xbt_assert(rate_id < (int)bandwidths_.size(),
47              "Link '%s' only has %zu wifi rate levels, so the provided level %d is invalid for host '%s'.",
48              this->get_cname(), bandwidths_.size(), rate_id, host->get_cname());
49
50   Metric rate = use_decay_model_ ? decay_bandwidths_[rate_id] : bandwidths_[rate_id];
51   return rate.peak * rate.scale;
52 }
53
54 s4u::Link::SharingPolicy WifiLinkImpl::get_sharing_policy() const
55 {
56   return s4u::Link::SharingPolicy::WIFI;
57 }
58
59 size_t WifiLinkImpl::get_host_count() const
60 {
61   return host_rates_.size();
62 }
63
64 void WifiLinkImpl::refresh_decay_bandwidths()
65 {
66   // Compute number of STAtion on the Access Point
67   const auto nSTA_minus_1 = static_cast<double>(get_host_count() - 1);
68
69   std::vector<Metric> new_bandwidths;
70   for (auto const& bandwidth : bandwidths_) {
71     // Instantiate decay model relatively to the actual bandwidth
72     double max_bw     = bandwidth.peak;
73     double min_bw     = bandwidth.peak - (wifi_max_rate_ - wifi_min_rate_);
74     double model_rate = bandwidth.peak - (wifi_max_rate_ - model_rate_);
75
76     double N0     = max_bw - min_bw;
77     double lambda = (-log(model_rate - min_bw) + log(N0)) / model_n_;
78     // Since decay model start at 0 we should use (nSTA-1)
79     double new_peak = N0 * exp(-lambda * nSTA_minus_1) + min_bw;
80     new_bandwidths.push_back({new_peak, 1.0, nullptr});
81   }
82   decay_bandwidths_ = new_bandwidths;
83 }
84
85 bool WifiLinkImpl::toggle_decay_model()
86 {
87   use_decay_model_ = not use_decay_model_;
88   return use_decay_model_;
89 }
90
91 void WifiLinkImpl::set_latency(double value)
92 {
93   xbt_assert(value == 0, "Latency cannot be set for WiFi Links.");
94 }
95 } // namespace simgrid::kernel::resource