X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8bc85164acb335cf909052b966b2ee4932e06cd7..ffd004a13acd17db31f5d5df1bc2fc2dc696b9a9:/src/plugins/link_energy.cpp diff --git a/src/plugins/link_energy.cpp b/src/plugins/link_energy.cpp index 3d68a3bbc2..97aeb01e23 100644 --- a/src/plugins/link_energy.cpp +++ b/src/plugins/link_energy.cpp @@ -1,11 +1,13 @@ -/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/Exception.hpp" +#include "simgrid/host.h" #include "simgrid/plugins/energy.h" #include "simgrid/s4u/Engine.hpp" +#include "simgrid/simix.hpp" #include "src/surf/network_interface.hpp" #include "src/surf/surf_interface.hpp" #include "surf/surf.hpp" @@ -44,19 +46,6 @@ namespace simgrid { namespace plugin { class LinkEnergy { -public: - static simgrid::xbt::Extension EXTENSION_ID; - - explicit LinkEnergy(simgrid::s4u::Link* ptr) : link_(ptr), last_updated_(surf_get_clock()) {} - ~LinkEnergy() = default; - - void init_watts_range_list(); - double get_consumed_energy(); - void update(); - -private: - double get_power() const; - s4u::Link* link_{}; bool inited_{false}; @@ -65,6 +54,17 @@ private: double total_energy_{0.0}; double last_updated_{0.0}; /*< Timestamp of the last energy update event*/ + + double get_power() const; + +public: + static xbt::Extension EXTENSION_ID; + + explicit LinkEnergy(s4u::Link* ptr) : link_(ptr), last_updated_(surf_get_clock()) {} + + void init_watts_range_list(); + double get_consumed_energy(); + void update(); }; xbt::Extension LinkEnergy::EXTENSION_ID; @@ -151,12 +151,12 @@ using simgrid::plugin::LinkEnergy; static void on_communicate(const simgrid::kernel::resource::NetworkAction& action) { XBT_DEBUG("onCommunicate is called"); - for (simgrid::kernel::resource::LinkImpl* link : action.get_links()) { + for (auto const* link : action.get_links()) { if (link == nullptr || link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) continue; XBT_DEBUG("Update link %s", link->get_cname()); - LinkEnergy* link_energy = link->get_iface()->extension(); + auto* link_energy = link->get_iface()->extension(); link_energy->init_watts_range_list(); link_energy->update(); } @@ -167,7 +167,7 @@ static void on_simulation_end() std::vector links = simgrid::s4u::Engine::get_instance()->get_all_links(); double total_energy = 0.0; // Total dissipated energy (whole platform) - for (const auto link : links) { + for (auto const* link : links) { if (link == nullptr || link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI) continue; @@ -219,7 +219,7 @@ void sg_link_energy_plugin_init() simgrid::s4u::Link::on_communication_state_change.connect( [](simgrid::kernel::resource::NetworkAction const& action, simgrid::kernel::resource::Action::State /* previous */) { - for (simgrid::kernel::resource::LinkImpl* link : action.get_links()) { + for (auto const* link : action.get_links()) { if (link != nullptr && link->get_sharing_policy() != simgrid::s4u::Link::SharingPolicy::WIFI) link->get_iface()->extension()->update(); }