Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Really fix the issue.
[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 xbt_dict_t host_list = nullptr; // 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   xbt_dict_set(host_list, name, this, nullptr);
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     xbt_dict_remove(host_list, name().c_str());
70     onDestruction(*this);
71     delete this;
72   }
73 }
74
75 Host* Host::by_name(std::string name)
76 {
77   Host* host = Host::by_name_or_null(name.c_str());
78   // TODO, raise an exception instead?
79   if (host == nullptr)
80     xbt_die("No such host: '%s'", name.c_str());
81   return host;
82 }
83 Host* Host::by_name_or_null(const char* name)
84 {
85   if (host_list == nullptr)
86     host_list = xbt_dict_new_homogeneous(nullptr);
87   return (Host*) xbt_dict_get_or_null(host_list, name);
88 }
89
90 Host *Host::current(){
91   smx_actor_t smx_proc = SIMIX_process_self();
92   if (smx_proc == nullptr)
93     xbt_die("Cannot call Host::current() from the maestro context");
94   return smx_proc->host;
95 }
96
97 void Host::turnOn() {
98   if (isOff()) {
99     simgrid::simix::kernelImmediate([&]{
100       this->extension<simgrid::simix::Host>()->turnOn();
101       this->pimpl_cpu->turnOn();
102     });
103   }
104 }
105
106 void Host::turnOff() {
107   if (isOn()) {
108     simgrid::simix::kernelImmediate(std::bind(SIMIX_host_off, this, SIMIX_process_self()));
109   }
110 }
111
112 bool Host::isOn() {
113   return this->pimpl_cpu->isOn();
114 }
115
116 int Host::pstatesCount() const {
117   return this->pimpl_cpu->getNbPStates();
118 }
119
120 boost::unordered_map<std::string, Storage*> const& Host::mountedStorages() {
121   if (mounts == nullptr) {
122     mounts = new boost::unordered_map<std::string, Storage*> ();
123
124     xbt_dict_t dict = this->mountedStoragesAsDict();
125
126     xbt_dict_cursor_t cursor;
127     char *mountname;
128     char *storagename;
129     xbt_dict_foreach(dict, cursor, mountname, storagename) {
130       mounts->insert({mountname, &Storage::byName(storagename)});
131     }
132     xbt_dict_free(&dict);
133   }
134
135   return *mounts;
136 }
137
138 /** Get the properties assigned to a host */
139 xbt_dict_t Host::properties() {
140   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getProperties(); });
141 }
142
143 /** Retrieve the property value (or nullptr if not set) */
144 const char*Host::property(const char*key) {
145   return this->pimpl_->getProperty(key);
146 }
147 void Host::setProperty(const char*key, const char *value){
148   simgrid::simix::kernelImmediate([&] { this->pimpl_->setProperty(key, value); });
149 }
150
151 /** Get the processes attached to the host */
152 xbt_swag_t Host::processes()
153 {
154   return simgrid::simix::kernelImmediate([&]() {
155     return this->extension<simgrid::simix::Host>()->process_list;
156   });
157 }
158
159 /** Get the peak power of a host */
160 double Host::getPstateSpeedCurrent()
161 {
162   return simgrid::simix::kernelImmediate([&] {
163     return this->pimpl_cpu->getPstateSpeedCurrent();
164   });
165 }
166
167 /** Get one power peak (in flops/s) of a host at a given pstate */
168 double Host::getPstateSpeed(int pstate_index)
169 {
170   return simgrid::simix::kernelImmediate([&] {
171     return this->pimpl_cpu->getPstateSpeed(pstate_index);
172   });
173 }
174
175 /** @brief Get the speed of the cpu associated to a host */
176 double Host::speed() {
177   return pimpl_cpu->getSpeed(1.0);
178 }
179 /** @brief Returns the number of core of the processor. */
180 int Host::coreCount() {
181   return pimpl_cpu->coreCount();
182 }
183
184 /** @brief Set the pstate at which the host should run */
185 void Host::setPstate(int pstate_index)
186 {
187   simgrid::simix::kernelImmediate(std::bind(
188       &simgrid::surf::Cpu::setPState, pimpl_cpu, pstate_index
189   ));
190 }
191 /** @brief Retrieve the pstate at which the host is currently running */
192 int Host::pstate()
193 {
194   return pimpl_cpu->getPState();
195 }
196
197 void Host::parameters(vm_params_t params)
198 {
199   simgrid::simix::kernelImmediate([&]() { this->pimpl_->getParams(params); });
200 }
201
202 void Host::setParameters(vm_params_t params)
203 {
204   simgrid::simix::kernelImmediate([&]() { this->pimpl_->setParams(params); });
205 }
206
207 /**
208  * \ingroup simix_storage_management
209  * \brief Returns the list of storages mounted on an host.
210  * \return a dict containing all storages mounted on the host
211  */
212 xbt_dict_t Host::mountedStoragesAsDict()
213 {
214   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getMountedStorageList(); });
215 }
216
217 /**
218  * \ingroup simix_storage_management
219  * \brief Returns the list of storages attached to an host.
220  * \return a dict containing all storages attached to the host
221  */
222 xbt_dynar_t Host::attachedStorages()
223 {
224   return simgrid::simix::kernelImmediate([&] { return this->pimpl_->getAttachedStorageList(); });
225 }
226
227 } // namespace simgrid
228 } // namespace s4u