X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4775ee0f232bccc4978dfbfb8153b7593be7dd77..12ad1e7c01058fada33cecf2d4c4cb8bf9874f9e:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index cd083646d2..82d6d66ca2 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -14,9 +14,9 @@ #include "simgrid/s4u/Storage.hpp" #include "simgrid/simix.hpp" #include "src/kernel/routing/NetPoint.hpp" -#include "src/msg/msg_private.h" +#include "src/msg/msg_private.hpp" #include "src/simix/ActorImpl.hpp" -#include "src/simix/smx_private.h" +#include "src/simix/smx_private.hpp" #include "src/surf/HostImpl.hpp" #include "src/surf/cpu_interface.hpp" #include "xbt/log.h" @@ -81,17 +81,18 @@ Host* Host::by_name(std::string name) { return host_list.at(name); // Will raise a std::out_of_range if the host does not exist } +Host* Host::by_name(const char* name) +{ + return host_list.at(std::string(name)); // Will raise a std::out_of_range if the host does not exist +} Host* Host::by_name_or_null(const char* name) { return by_name_or_null(std::string(name)); } Host* Host::by_name_or_null(std::string name) { - try { - return host_list.at(name); - } catch (std::out_of_range& unfound) { - return nullptr; - } + auto host = host_list.find(name); + return host == host_list.end() ? nullptr : host->second; } Host *Host::current(){ @@ -137,10 +138,8 @@ int Host::getPstatesCount() const */ void Host::actorList(std::vector* whereto) { - smx_actor_t actor = NULL; - xbt_swag_foreach(actor, this->extension()->process_list) - { - whereto->push_back(actor->ciface()); + for (auto& actor : this->extension()->process_list) { + whereto->push_back(actor.ciface()); } } @@ -156,23 +155,23 @@ void Host::actorList(std::vector* whereto) * walk through the routing components tree and find a route between hosts * by calling each "get_route" function in each routing component. */ -void Host::routeTo(Host* dest, std::vector* links, double* latency) +void Host::routeTo(Host* dest, std::vector& links, double* latency) { std::vector linkImpls; - this->routeTo(dest, &linkImpls, latency); - for (surf::LinkImpl* l : linkImpls) - links->push_back(&l->piface_); + this->routeTo(dest, linkImpls, latency); + for (surf::LinkImpl* const& l : linkImpls) + links.push_back(&l->piface_); } /** @brief Just like Host::routeTo, but filling an array of link implementations */ -void Host::routeTo(Host* dest, std::vector* links, double* latency) +void Host::routeTo(Host* dest, std::vector& links, double* latency) { simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(pimpl_netpoint, dest->pimpl_netpoint, links, latency); if (XBT_LOG_ISENABLED(surf_route, xbt_log_priority_debug)) { XBT_CDEBUG(surf_route, "Route from '%s' to '%s' (latency: %f):", getCname(), dest->getCname(), (latency == nullptr ? -1 : *latency)); - for (auto link : *links) - XBT_CDEBUG(surf_route, "Link %s", link->cname()); + for (auto const& link : links) + XBT_CDEBUG(surf_route, "Link %s", link->getCname()); } } @@ -196,9 +195,8 @@ void Host::setProperty(std::string key, std::string value) /** Get the processes attached to the host */ void Host::getProcesses(std::vector* list) { - smx_actor_t actor = NULL; - xbt_swag_foreach(actor, this->extension()->process_list) { - list->push_back(actor->iface()); + for (auto& actor : this->extension()->process_list) { + list->push_back(actor.iface()); } } @@ -251,12 +249,26 @@ std::unordered_map const& Host::getMountedStorages() { if (mounts == nullptr) { mounts = new std::unordered_map(); - for (auto m : this->pimpl_->storage_) { + for (auto const& m : this->pimpl_->storage_) { mounts->insert({m.first, &m.second->piface_}); } } return *mounts; } +void Host::execute(double flops) +{ + Host* host_list[1] = {this}; + double flops_list[1] = {flops}; + smx_activity_t s = simcall_execution_parallel_start(nullptr /*name*/, 1, host_list, flops_list, + nullptr /*comm_sizes */, -1.0, -1 /*timeout*/); + simcall_execution_wait(s); +} + +double Host::getLoad() +{ + return this->pimpl_cpu->getLoad(); +} + } // namespace simgrid } // namespace s4u