Logo AND Algorithmique Numérique Distribuée

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