X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6c6e9129b8c8a2404310f460327314afa3fb9b8b..232df979b87bc271f4fbb61a2059c6539bc23012:/include/simgrid/s4u/host.hpp diff --git a/include/simgrid/s4u/host.hpp b/include/simgrid/s4u/host.hpp index fa24695481..2f5ef50fdc 100644 --- a/include/simgrid/s4u/host.hpp +++ b/include/simgrid/s4u/host.hpp @@ -57,34 +57,32 @@ public: * All actors on that host which were marked autorestart will be restarted automatically. * This call does nothing if the host is already on. */ - void turnOn(); + void turn_on(); /** Turns that host off. All actors are forcefully stopped. */ - void turnOff(); + void turn_off(); /** Returns if that host is currently up and running */ - bool isOn(); - bool isOff() { return !isOn(); } - - double getSpeed(); - int getCoreAmount(); - xbt_dict_t getProperties(); - xbt_swag_t getProcessList(); - double getCurrentPowerPeak(); - double getPowerPeakAt(int pstate_index); - void setPState(int pstate_index); - int getNbPStates() const; - int getPState(); - void getParams(vm_params_t params); - void setParams(vm_params_t params); - xbt_dict_t getMountedStorageList(); - xbt_dynar_t getAttachedStorageList(); + bool is_on(); + bool is_off() { return !is_on(); } + + double speed(); + int core_count(); + xbt_dict_t properties(); + xbt_swag_t processes(); + double current_power_peak(); + double power_peak_at(int pstate_index); + void set_pstate(int pstate_index); + int pstates_count() const; + int pstate(); + void get_parameters(vm_params_t params); + void set_parameters(vm_params_t params); + xbt_dict_t mounted_storages_as_dict(); // HACK + xbt_dynar_t attached_storages(); /** Get an associative list [mount point]->[Storage] off all local mount points. * * This is defined in the platform file, and cannot be modified programatically (yet). - * - * Do not change the returned value in any way. */ - boost::unordered_map &mountedStorages(); + boost::unordered_map const &mounted_storages(); private: simgrid::xbt::string name_ = "noname"; @@ -93,6 +91,7 @@ private: public: // FIXME: these should be protected, but it leads to many errors // Use the extensions stuff for this? Go through simgrid::surf::Host? + // TODO, this could be a unique_ptr surf::Cpu *pimpl_cpu = nullptr; surf::NetCard *pimpl_netcard = nullptr;