X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/90f32f7c90becc16c9d62c3e2aee19b904698b3d..322392d9d7d8ff2e78b6ae12998ca8693fa09b38:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index a75aea9657..ce44cd7cdf 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -20,6 +20,8 @@ #include "simgrid/s4u/host.hpp" #include "simgrid/s4u/storage.hpp" +xbt_dict_t host_list = nullptr; // FIXME: move it to Engine + int MSG_HOST_LEVEL = -1; int USER_HOST_LEVEL = -1; @@ -38,6 +40,7 @@ simgrid::xbt::signal Host::onStateChange; Host::Host(const char* name) : name_(name) { + xbt_dict_set(host_list, name, this, nullptr); } Host::~Host() { @@ -55,15 +58,20 @@ Host *Host::by_name(std::string name) { } Host* Host::by_name_or_null(const char* name) { + if (host_list == nullptr) + host_list = xbt_dict_new_homogeneous([](void*p) { + simgrid::s4u::Host* host = static_cast(p); + simgrid::s4u::Host::onDestruction(*host); + delete host; + }); return (Host*) xbt_dict_get_or_null(host_list, name); } Host* Host::by_name_or_create(const char* name) { Host* host = by_name_or_null(name); - if (host == nullptr) { + if (host == nullptr) host = new Host(name); - xbt_dict_set(host_list, name, host, nullptr); - } + return host; } @@ -75,11 +83,18 @@ Host *Host::current(){ } void Host::turnOn() { - simgrid::simix::kernelImmediate(std::bind(SIMIX_host_on, this)); + if (isOff()) { + simgrid::simix::kernelImmediate([&]{ + this->extension()->turnOn(); + this->extension()->turnOn(); + }); + } } void Host::turnOff() { - simgrid::simix::kernelImmediate(std::bind(SIMIX_host_off, this, SIMIX_process_self())); + if (isOn()) { + simgrid::simix::kernelImmediate(std::bind(SIMIX_host_off, this, SIMIX_process_self())); + } } bool Host::isOn() { @@ -157,8 +172,8 @@ double Host::speed() { return pimpl_cpu->getSpeed(1.0); } /** @brief Returns the number of core of the processor. */ -int Host::coresCount() { - return pimpl_cpu->getCore(); +int Host::coreCount() { + return pimpl_cpu->coreCount(); } /** @brief Set the pstate at which the host should run */