Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix the last test after the recent change in MSG_hosts_as_dynar order
[simgrid.git] / src / s4u / s4u_host.cpp
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <string>
8 #include <functional>
9 #include <stdexcept>
10
11 #include <unordered_map>
12
13 #include "simgrid/simix.hpp"
14 #include "src/surf/HostImpl.hpp"
15 #include "xbt/log.h"
16 #include "src/msg/msg_private.h"
17 #include "src/simix/ActorImpl.hpp"
18 #include "src/simix/smx_private.h"
19 #include "src/surf/cpu_interface.hpp"
20 #include "simgrid/s4u/host.hpp"
21 #include "simgrid/s4u/storage.hpp"
22
23 std::unordered_map<simgrid::xbt::string, simgrid::s4u::Host*> host_list; // FIXME: move it to Engine
24
25 int MSG_HOST_LEVEL = -1;
26 int USER_HOST_LEVEL = -1;
27
28 namespace simgrid {
29
30 namespace xbt {
31 template class Extendable<simgrid::s4u::Host>;
32 }
33
34 namespace s4u {
35
36 simgrid::xbt::signal<void(Host&)> Host::onCreation;
37 simgrid::xbt::signal<void(Host&)> Host::onDestruction;
38 simgrid::xbt::signal<void(Host&)> Host::onStateChange;
39
40 Host::Host(const char* name)
41   : name_(name)
42 {
43   xbt_assert(sg_host_by_name(name) == nullptr, "Refusing to create a second host named '%s'.", name);
44   host_list[name_] = this;
45 }
46
47 Host::~Host()
48 {
49   xbt_assert(currentlyDestroying_, "Please call h->destroy() instead of manually deleting it.");
50
51   delete pimpl_;
52   delete pimpl_cpu;
53   delete pimpl_netcard;
54   delete mounts;
55 }
56
57 /** @brief Fire the required callbacks and destroy the object
58  *
59  * Don't delete directly an Host, call h->destroy() instead.
60  *
61  * This is cumbersome but this is the simplest solution to ensure that the
62  * onDestruction() callback receives a valid object (because of the destructor
63  * order in a class hierarchy).
64  */
65 void Host::destroy()
66 {
67   if (!currentlyDestroying_) {
68     currentlyDestroying_ = true;
69     onDestruction(*this);
70     host_list.erase(name_);
71     delete this;
72   }
73 }
74
75 Host* Host::by_name(std::string name)
76 {
77   return host_list.at(name); // Will raise a std::out_of_range if the host does not exist
78 }
79 Host* Host::by_name_or_null(const char* name)
80 {
81   try {
82     return host_list.at(name);
83   } catch (std::out_of_range& e) {
84     return nullptr;
85   }
86 }
87
88 Host *Host::current(){
89   smx_actor_t smx_proc = SIMIX_process_self();
90   if (smx_proc == nullptr)
91     xbt_die("Cannot call Host::current() from the maestro context");
92   return smx_proc->host;
93 }
94
95 void Host::turnOn() {
96   if (isOff()) {
97     simgrid::simix::kernelImmediate([&]{
98       this->extension<simgrid::simix::Host>()->turnOn();
99       this->pimpl_cpu->turnOn();
100     });
101   }
102 }
103
104 void Host::turnOff() {
105   if (isOn()) {
106     simgrid::simix::kernelImmediate(std::bind(SIMIX_host_off, this, SIMIX_process_self()));
107   }
108 }
109
110 bool Host::isOn() {
111   return this->pimpl_cpu->isOn();
112 }
113
114 int Host::pstatesCount() const {
115   return this->pimpl_cpu->getNbPStates();
116 }
117
118 boost::unordered_map<std::string, Storage*> const& Host::mountedStorages() {
119   if (mounts == nullptr) {
120     mounts = new boost::unordered_map<std::string, Storage*> ();
121
122     xbt_dict_t dict = this->mountedStoragesAsDict();
123
124     xbt_dict_cursor_t cursor;
125     char *mountname;
126     char *storagename;
127     xbt_dict_foreach(dict, cursor, mountname, storagename) {
128       mounts->insert({mountname, &Storage::byName(storagename)});
129     }
130     xbt_dict_free(&dict);
131   }
132
133   return *mounts;
134 }
135
136 /** Get the properties assigned to a host */
137 xbt_dict_t Host::properties() {
138   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getProperties(); });
139 }
140
141 /** Retrieve the property value (or nullptr if not set) */
142 const char*Host::property(const char*key) {
143   return this->pimpl_->getProperty(key);
144 }
145 void Host::setProperty(const char*key, const char *value){
146   simgrid::simix::kernelImmediate([&] { this->pimpl_->setProperty(key, value); });
147 }
148
149 /** Get the processes attached to the host */
150 xbt_swag_t Host::processes()
151 {
152   return simgrid::simix::kernelImmediate([&]() {
153     return this->extension<simgrid::simix::Host>()->process_list;
154   });
155 }
156
157 /** Get the peak power of a host */
158 double Host::getPstateSpeedCurrent()
159 {
160   return simgrid::simix::kernelImmediate([&] {
161     return this->pimpl_cpu->getPstateSpeedCurrent();
162   });
163 }
164
165 /** Get one power peak (in flops/s) of a host at a given pstate */
166 double Host::getPstateSpeed(int pstate_index)
167 {
168   return simgrid::simix::kernelImmediate([&] {
169     return this->pimpl_cpu->getPstateSpeed(pstate_index);
170   });
171 }
172
173 /** @brief Get the speed of the cpu associated to a host */
174 double Host::speed() {
175   return pimpl_cpu->getSpeed(1.0);
176 }
177 /** @brief Returns the number of core of the processor. */
178 int Host::coreCount() {
179   return pimpl_cpu->coreCount();
180 }
181
182 /** @brief Set the pstate at which the host should run */
183 void Host::setPstate(int pstate_index)
184 {
185   simgrid::simix::kernelImmediate(std::bind(
186       &simgrid::surf::Cpu::setPState, pimpl_cpu, pstate_index
187   ));
188 }
189 /** @brief Retrieve the pstate at which the host is currently running */
190 int Host::pstate()
191 {
192   return pimpl_cpu->getPState();
193 }
194
195 /**
196  * \ingroup simix_storage_management
197  * \brief Returns the list of storages mounted on an host.
198  * \return a dict containing all storages mounted on the host
199  */
200 xbt_dict_t Host::mountedStoragesAsDict()
201 {
202   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getMountedStorageList(); });
203 }
204
205 /**
206  * \ingroup simix_storage_management
207  * \brief Returns the list of storages attached to an host.
208  * \return a dict containing all storages attached to the host
209  */
210 xbt_dynar_t Host::attachedStorages()
211 {
212   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getAttachedStorageList(); });
213 }
214
215 } // namespace simgrid
216 } // namespace s4u