X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/afb806d0615c22ac119575596b71691f4e2bc9d1..b51da37243dc16575499f4cb7729fe8bdd7fa514:/src/surf/plugins/energy.hpp diff --git a/src/surf/plugins/energy.hpp b/src/surf/plugins/energy.hpp index 389abd9112..2d9709c26d 100644 --- a/src/surf/plugins/energy.hpp +++ b/src/surf/plugins/energy.hpp @@ -8,8 +8,9 @@ #include -#include "src/surf/host_interface.hpp" -#include +#include + +#include "src/surf/HostImpl.hpp" #ifndef ENERGY_CALLBACK_HPP_ #define ENERGY_CALLBACK_HPP_ @@ -19,36 +20,31 @@ namespace energy { class XBT_PRIVATE HostEnergy; -extern XBT_PRIVATE std::map *surf_energy; - class HostEnergy { public: - HostEnergy(simgrid::surf::Host *ptr); + static simgrid::xbt::Extension EXTENSION_ID; + typedef std::pair power_range; + + explicit HostEnergy(simgrid::s4u::Host *ptr); ~HostEnergy(); double getCurrentWattsValue(double cpu_load); double getConsumedEnergy(); double getWattMinAt(int pstate); double getWattMaxAt(int pstate); + void update(); - xbt_dynar_t getWattsRangeList(); - xbt_dynar_t power_range_watts_list; /*< List of (min_power,max_power) pairs corresponding to each cpu pstate */ - double watts_off; /*< Consumption when the machine is turned off (shutdown) */ - double total_energy; /*< Total energy consumed by the host */ - double last_updated; /*< Timestamp of the last energy update event*/ - simgrid::surf::Host *host; - - void unref() {if (--refcount == 0) delete this;} - void ref() {refcount++;} - int refcount = 1; +private: + void initWattsRangeList(); + simgrid::s4u::Host *host = nullptr; + std::vector power_range_watts_list; /*< List of (min_power,max_power) pairs corresponding to each cpu pstate */ +public: + double watts_off = 0.0; /*< Consumption when the machine is turned off (shutdown) */ + double total_energy = 0.0; /*< Total energy consumed by the host */ + double last_updated; /*< Timestamp of the last energy update event*/ }; -XBT_PUBLIC(double) surf_host_get_wattmin_at(sg_host_t resource, int pstate); -XBT_PUBLIC(double) surf_host_get_wattmax_at(sg_host_t resource, int pstate); -XBT_PUBLIC(double) surf_host_get_consumed_energy(sg_host_t host); } } - - #endif /* ENERGY_CALLBACK_HPP_ */