Logo AND Algorithmique Numérique Distribuée

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