Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Move some code in a simgrid::surf namespace
[simgrid.git] / src / surf / plugins / energy.hpp
index f3d700c..a1ee85c 100644 (file)
@@ -6,20 +6,23 @@
 
 #include <xbt/base.h>
 
-#include "../cpu_interface.hpp"
+#include "../host_interface.hpp"
 #include <map>
 
 #ifndef ENERGY_CALLBACK_HPP_
 #define ENERGY_CALLBACK_HPP_
 
-class XBT_PRIVATE CpuEnergy;
+namespace simgrid {
+namespace energy {
 
-extern XBT_PRIVATE std::map<Cpu*, CpuEnergy*> *surf_energy;
+class XBT_PRIVATE HostEnergy;
 
-class CpuEnergy {
+extern XBT_PRIVATE std::map<simgrid::surf::Host*, HostEnergy*> *surf_energy;
+
+class HostEnergy {
 public:
-  CpuEnergy(Cpu *ptr);
-  ~CpuEnergy();
+  HostEnergy(simgrid::surf::Host *ptr);
+  ~HostEnergy();
 
   double getCurrentWattsValue(double cpu_load);
   double getConsumedEnergy();
@@ -31,11 +34,14 @@ public:
   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*/
-  Cpu *cpu;
+  simgrid::surf::Host *host;
 
   void unref() {if (--refcount == 0) delete this;}
   void ref() {refcount++;}
   int refcount = 1;
 };
 
+}
+}
+
 #endif /* ENERGY_CALLBACK_HPP_ */