Logo AND Algorithmique Numérique Distribuée

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