Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup in log categories
[simgrid.git] / src / plugins / link_energy_wifi.cpp
1 /* Copyright (c) 2017-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/plugins/energy.h>
7 #include <simgrid/s4u/Engine.hpp>
8 #include <simgrid/s4u/Link.hpp>
9
10 #include "src/kernel/activity/CommImpl.hpp"
11 #include "src/kernel/resource/StandardLinkImpl.hpp"
12 #include "src/kernel/resource/WifiLinkImpl.hpp"
13
14 #include <boost/algorithm/string/classification.hpp>
15 #include <boost/algorithm/string/split.hpp>
16
17 SIMGRID_REGISTER_PLUGIN(link_energy_wifi, "Energy wifi test", &sg_wifi_energy_plugin_init);
18 /** @defgroup plugin_link_energy_wifi Plugin WiFi energy
19  *
20  * This is the WiFi energy plugin, accounting for the dissipated energy of WiFi links.
21  */
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(link_energy_wifi, kernel, "Logging specific to the link energy wifi plugin");
24
25 namespace simgrid {
26 namespace plugin {
27
28 class XBT_PRIVATE LinkEnergyWifi {
29   // associative array keeping size of data already sent for a given flow (required for interleaved actions)
30   std::map<kernel::resource::WifiLinkAction*, std::pair<int, double>> flowTmp{};
31
32   // WiFi link the plugin instance is attached to
33   s4u::Link* link_{};
34
35   // dynamic energy accumulated since the simulation start (active durations consumption)
36   double eDyn_{0.0};
37   // static energy (no activity consumption)
38   double eStat_{0.0};
39
40   // duration since previous energy update
41   double prev_update_{0.0};
42
43   // Same energy calibration values as ns3 by default
44   // https://www.nsnam.org/docs/release/3.30/doxygen/classns3_1_1_wifi_radio_energy_model.html#details
45   double pIdle_{0.82};
46   double pTx_{1.14};
47   double pRx_{0.94};
48   double pSleep_{0.10};
49
50   // constant taking beacons into account (can be specified by the user)
51   double control_duration_{0.0036};
52
53   // Measurements for report
54   double dur_TxRx_{0}; // Duration of transmission
55   double dur_idle_{0}; // Duration of idle time
56   bool valuesInit_{false};
57
58 public:
59   static xbt::Extension<simgrid::s4u::Link, LinkEnergyWifi> EXTENSION_ID;
60
61   explicit LinkEnergyWifi(s4u::Link* ptr) : link_(ptr) {}
62   LinkEnergyWifi()  = delete;
63
64   /** Update the energy consumed by link_ when transmissions start or end */
65   void update();
66
67   /** Update the energy consumed when link_ is destroyed */
68   void update_destroy();
69
70   /**
71    * Fetches energy consumption values from the platform file.
72    * The user can specify:
73    *  - wifi_watt_values: energy consumption in each state (IDLE:Tx:Rx:SLEEP)
74    *      default: 0.82:1.14:0.94:0.10
75    *  - controlDuration: duration of active beacon transmissions per second
76    *      default: 0.0036
77    */
78   void init_watts_range_list();
79
80   double get_consumed_energy(void) const { return eDyn_ + eStat_; }
81   /** Get the dynamic part of the energy for this link */
82   double get_energy_dynamic(void) const { return eDyn_; }
83   double get_energy_static(void) const { return eStat_; }
84   double get_duration_comm(void) const { return dur_TxRx_; }
85   double get_duration_idle(void) const { return dur_idle_; }
86
87   /** Set the power consumed by this link while idle */
88   void set_power_idle(double value) { pIdle_ = value; }
89   /** Set the power consumed by this link while transmitting */
90   void set_power_tx(double value) { pTx_ = value; }
91   /** Set the power consumed by this link while receiving */
92   void set_power_rx(double value) { pRx_ = value; }
93   /** Set the power consumed by this link while sleeping */
94   void set_power_sleep(double value) { pSleep_ = value; }
95 };
96
97 xbt::Extension<s4u::Link, LinkEnergyWifi> LinkEnergyWifi::EXTENSION_ID;
98
99 void LinkEnergyWifi::update_destroy()
100 {
101   auto const* wifi_link = static_cast<kernel::resource::WifiLinkImpl*>(link_->get_impl());
102   double duration       = simgrid::s4u::Engine::get_clock() - prev_update_;
103   prev_update_          = simgrid::s4u::Engine::get_clock();
104
105   dur_idle_ += duration;
106
107   // add IDLE energy usage, as well as beacons consumption since previous update
108   eDyn_ += duration * control_duration_ * wifi_link->get_host_count() * pRx_;
109   eStat_ += (duration - (duration * control_duration_)) * pIdle_ * (wifi_link->get_host_count() + 1);
110
111   XBT_DEBUG("finish eStat_ += %f * %f * (%d+1) | eStat = %f", duration, pIdle_, wifi_link->get_host_count(), eStat_);
112 }
113
114 void LinkEnergyWifi::update()
115 {
116   init_watts_range_list();
117
118   double duration = simgrid::s4u::Engine::get_clock() - prev_update_;
119   prev_update_    = simgrid::s4u::Engine::get_clock();
120
121   // we don't update for null durations
122   if(duration < 1e-6)
123     return;
124
125   auto const* wifi_link = static_cast<kernel::resource::WifiLinkImpl*>(link_->get_impl());
126
127   const kernel::lmm::Element* elem = nullptr;
128
129   /**
130    * We update the energy consumed by each flow active on the link since the previous update.
131    *
132    * To do this, we need to know how much time each flow has been effectively sending data on the WiFi link since the
133    * previous update (durUsage).  We compute this value using the size of the flow, the amount of data already spent
134    * (using flowTmp), as well as the bandwidth used by the flow since the previous update (using LMM variables).  Since
135    * flows are sharing the medium, the total active duration on the link is equal to the transmission/reception duration
136    * used by the flow with the longest active time since the previous update
137    */
138   double durUsage = 0;
139   while (const auto* var = wifi_link->get_constraint()->get_variable(&elem)) {
140     auto* action = static_cast<kernel::resource::WifiLinkAction*>(var->get_id());
141     XBT_DEBUG("cost: %f action value: %f link rate 1: %f link rate 2: %f", action->get_cost(), action->get_rate(),
142               wifi_link->get_host_rate(&action->get_src()), wifi_link->get_host_rate(&action->get_dst()));
143
144     if (action->get_rate() != 0.0) {
145       auto it = flowTmp.find(action);
146
147       // if the flow has not been registered, initialize it: 0 bytes sent, and not updated since its creation timestamp
148       if(it == flowTmp.end())
149         flowTmp[action] = std::pair<int,double>(0, action->get_start_time());
150
151       it = flowTmp.find(action);
152
153       /**
154        * The active duration of the link is equal to the amount of data it had to send divided by the bandwidth on the link.
155        * If this is longer than the duration since the previous update, active duration = now - previous_update
156        */
157       double du = // durUsage on the current flow
158           (action->get_cost() - it->second.first) / action->get_rate();
159
160       if (du > simgrid::s4u::Engine::get_clock() - it->second.second)
161         du = simgrid::s4u::Engine::get_clock() - it->second.second;
162
163       // if the flow has been more active than the others
164       if(du > durUsage)
165         durUsage = du;
166
167       // update the amount of data already sent by the flow
168       it->second.first += du * action->get_rate();
169       it->second.second = simgrid::s4u::Engine::get_clock();
170
171       // important: if the transmission finished, remove it (needed for performance and multi-message flows)
172       if(it->second.first >= action->get_cost())
173         flowTmp.erase (it);
174     }
175   }
176
177   XBT_DEBUG("durUsage: %f", durUsage);
178
179   // beacons cost
180   eDyn_ += duration * control_duration_ * wifi_link->get_host_count() * pRx_;
181
182   /**
183    * Same principle as ns3:
184    *  - if tx or rx, update P_{dyn}
185    *  - if idle i.e. get_usage = 0, update P_{stat}
186    * P_{tot} = P_{dyn}+P_{stat}
187    */
188   if (link_->get_usage() != 0.0) {
189     eDyn_ += /*duration * */ durUsage * ((wifi_link->get_host_count() * pRx_) + pTx_);
190     eStat_ += (duration - durUsage) * pIdle_ * (wifi_link->get_host_count() + 1);
191     XBT_DEBUG("eDyn +=  %f * ((%d * %f) + %f) | eDyn = %f (durusage =%f)", durUsage, wifi_link->get_host_count(), pRx_,
192               pTx_, eDyn_, durUsage);
193     dur_TxRx_ += duration;
194   } else {
195     dur_idle_ += duration;
196     eStat_ += (duration - (duration * control_duration_)) * pIdle_ * (wifi_link->get_host_count() + 1);
197   }
198
199   XBT_DEBUG("eStat_ += %f * %f * (%d+1) | eStat = %f", duration, pIdle_, wifi_link->get_host_count(), eStat_);
200 }
201
202 void LinkEnergyWifi::init_watts_range_list()
203 {
204   if (valuesInit_)
205     return;
206   valuesInit_                      = true;
207
208   /* beacons factor
209   Set to 0 if you do not want to compute beacons,
210   otherwise to the duration of beacons transmissions per second
211   */
212   const char* beacons_factor = this->link_->get_property("control_duration");
213   if(beacons_factor != nullptr) {
214     try {
215       control_duration_ = std::stod(beacons_factor);
216     } catch (const std::invalid_argument&) {
217       throw std::invalid_argument(std::string("Invalid beacons factor value for link ") + this->link_->get_cname());
218     }
219   }
220
221   const char* all_power_values_str = this->link_->get_property("wifi_watt_values");
222   if (all_power_values_str != nullptr)
223   {
224     std::vector<std::string> all_power_values;
225     boost::split(all_power_values, all_power_values_str, boost::is_any_of(","));
226
227     for (auto current_power_values_str : all_power_values) {
228       /* retrieve the power values associated */
229       std::vector<std::string> current_power_values;
230       boost::split(current_power_values, current_power_values_str, boost::is_any_of(":"));
231       xbt_assert(current_power_values.size() == 4,
232                 "Power properties incorrectly defined - could not retrieve idle, Tx, Rx, Sleep power values for link %s",
233                 this->link_->get_cname());
234
235       /* min_power corresponds to the idle power (link load = 0) */
236       /* max_power is the power consumed at 100% link load       */
237       try {
238         pSleep_ = std::stod(current_power_values.at(3));
239       } catch (const std::invalid_argument&) {
240         throw std::invalid_argument(std::string("Invalid idle power value for link ") + this->link_->get_cname());
241       }
242       try {
243         pRx_ = std::stod(current_power_values.at(2));
244       } catch (const std::invalid_argument&) {
245         throw std::invalid_argument(std::string("Invalid idle power value for link ") + this->link_->get_cname());
246       }
247       try {
248         pTx_ = std::stod(current_power_values.at(1));
249       } catch (const std::invalid_argument&) {
250         throw std::invalid_argument(std::string("Invalid idle power value for link ") + this->link_->get_cname());
251       }
252       try {
253         pIdle_ = std::stod(current_power_values.at(0));
254       } catch (const std::invalid_argument&) {
255         throw std::invalid_argument(std::string("Invalid busy power value for link ") + this->link_->get_cname());
256       }
257
258       XBT_DEBUG("Values aa initialized with: pSleep=%f pIdle=%f pTx=%f pRx=%f", pSleep_, pIdle_, pTx_, pRx_);
259     }
260   }
261 }
262
263 } // namespace plugin
264 } // namespace simgrid
265
266 using simgrid::plugin::LinkEnergyWifi;
267 /* **************************** events  callback *************************** */
268 static void on_communication(const simgrid::kernel::activity::CommImpl& comm)
269 {
270   for (const auto* link : comm.get_traversed_links()) {
271     if (link != nullptr && link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) {
272       auto* link_energy = link->extension<LinkEnergyWifi>();
273       XBT_DEBUG("Update %s on Comm Start/End", link->get_cname());
274       link_energy->update();
275     }
276   }
277 }
278
279 void sg_wifi_energy_plugin_init()
280 {
281   if (LinkEnergyWifi::EXTENSION_ID.valid())
282     return;
283
284   XBT_INFO("Activating the wifi_energy plugin.");
285   LinkEnergyWifi::EXTENSION_ID = simgrid::s4u::Link::extension_create<LinkEnergyWifi>();
286
287   /**
288    * Attaching to events:
289    * - Link::on_creation to initialize the plugin
290    * - Link::on_destruction to produce final energy results
291    * - Link::on_communication_state_change: to account for the energy when communications are updated
292    * - CommImpl::on_start and CommImpl::on_completion: to account for the energy during communications
293    */
294   simgrid::s4u::Link::on_creation_cb([](simgrid::s4u::Link& link) {
295     // verify the link is appropriate to WiFi energy computations
296     if (link.get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) {
297       XBT_DEBUG("Wifi Link: %s, initialization of wifi energy plugin", link.get_cname());
298       auto* plugin = new LinkEnergyWifi(&link);
299       link.extension_set(plugin);
300     } else {
301       XBT_DEBUG("Not Wifi Link: %s, wifi energy on link not computed", link.get_cname());
302     }
303   });
304
305   simgrid::s4u::Link::on_destruction_cb([](simgrid::s4u::Link const& link) {
306     // output energy values if WiFi link
307     if (link.get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) {
308       link.extension<LinkEnergyWifi>()->update_destroy();
309       XBT_INFO(
310           "Link %s destroyed, consumed: %f J dyn: %f stat: %f durIdle: %f durTxRx: %f", link.get_cname(),
311           link.extension<LinkEnergyWifi>()->get_consumed_energy(),
312           link.extension<LinkEnergyWifi>()->get_energy_dynamic(), link.extension<LinkEnergyWifi>()->get_energy_static(),
313           link.extension<LinkEnergyWifi>()->get_duration_idle(), link.extension<LinkEnergyWifi>()->get_duration_comm());
314     }
315   });
316
317   simgrid::s4u::Link::on_communication_state_change_cb([](simgrid::kernel::resource::NetworkAction const& action,
318                                                           simgrid::kernel::resource::Action::State /* previous */) {
319     // update WiFi links encountered during the communication
320     for (auto const* link : action.get_links()) {
321       if (link != nullptr && link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) {
322         link->get_iface()->extension<LinkEnergyWifi>()->update();
323       }
324     }
325   });
326
327   simgrid::kernel::activity::CommImpl::on_start.connect(&on_communication);
328   simgrid::kernel::activity::CommImpl::on_completion.connect(&on_communication);
329 }