Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'klement/simgrid-klement' into master
[simgrid.git] / src / s4u / s4u_Host.cpp
1 /* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/kernel/routing/NetPoint.hpp"
7 #include "simgrid/s4u/Actor.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "simgrid/s4u/VirtualMachine.hpp"
11 #include "src/plugins/vm/VirtualMachineImpl.hpp"
12 #include "src/surf/HostImpl.hpp"
13
14 #include <algorithm>
15 #include <string>
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_host, s4u, "Logging specific to the S4U hosts");
18 XBT_LOG_EXTERNAL_CATEGORY(surf_route);
19
20 namespace simgrid {
21
22 template class xbt::Extendable<s4u::Host>;
23
24 namespace s4u {
25
26 xbt::signal<void(Host&)> Host::on_creation;
27 xbt::signal<void(Host const&)> Host::on_destruction;
28 xbt::signal<void(Host const&)> Host::on_state_change;
29 xbt::signal<void(Host const&)> Host::on_speed_change;
30
31 Host::Host(const std::string& name) : name_(name)
32 {
33   xbt_assert(Host::by_name_or_null(name_) == nullptr, "Refusing to create a second host named '%s'.", get_cname());
34   Engine::get_instance()->host_register(name_, this);
35   new surf::HostImpl(this);
36 }
37
38 Host::~Host()
39 {
40   xbt_assert(currently_destroying_, "Please call h->destroy() instead of manually deleting it.");
41
42   delete pimpl_;
43   if (pimpl_netpoint_ != nullptr) // not removed yet by a children class
44     Engine::get_instance()->netpoint_unregister(pimpl_netpoint_);
45   delete pimpl_cpu;
46   delete mounts_;
47 }
48
49 /** @brief Fire the required callbacks and destroy the object
50  *
51  * Don't delete directly a host, call h->destroy() instead.
52  *
53  * This is cumbersome but this is the simplest solution to ensure that the on_destruction() callback receives a valid
54  * object (because of the destructor order in a class hierarchy).
55  */
56 void Host::destroy()
57 {
58   if (not currently_destroying_) {
59     currently_destroying_ = true;
60     on_destruction(*this);
61     Engine::get_instance()->host_unregister(std::string(name_));
62     delete this;
63   }
64 }
65
66 Host* Host::by_name(const std::string& name)
67 {
68   return Engine::get_instance()->host_by_name(name);
69 }
70 Host* Host::by_name_or_null(const std::string& name)
71 {
72   return Engine::get_instance()->host_by_name_or_null(name);
73 }
74
75 Host* Host::current()
76 {
77   kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
78   if (self == nullptr)
79     xbt_die("Cannot call Host::current() from the maestro context");
80   return self->get_host();
81 }
82
83 void Host::turn_on()
84 {
85   if (not is_on()) {
86     kernel::actor::simcall([this] {
87       this->pimpl_cpu->turn_on();
88       this->pimpl_->turn_on();
89       on_state_change(*this);
90     });
91   }
92 }
93
94 /** @brief Stop the host if it is on */
95 void Host::turn_off()
96 {
97   if (is_on()) {
98     kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
99     kernel::actor::simcall([this, self] {
100       for (VirtualMachine* const& vm : vm::VirtualMachineImpl::allVms_)
101         if (vm->get_pm() == this) {
102           vm->shutdown();
103           vm->turn_off();
104         }
105       this->pimpl_cpu->turn_off();
106       this->pimpl_->turn_off(self);
107
108       on_state_change(*this);
109     });
110   }
111 }
112
113 bool Host::is_on() const
114 {
115   return this->pimpl_cpu->is_on();
116 }
117
118 int Host::get_pstate_count() const
119 {
120   return this->pimpl_cpu->get_pstate_count();
121 }
122
123 /**
124  * @brief Return a copy of the list of actors that are executing on this host.
125  *
126  * Daemons and regular actors are all mixed in this list.
127  */
128 std::vector<ActorPtr> Host::get_all_actors() const
129 {
130   return pimpl_->get_all_actors();
131 }
132
133 /** @brief Returns how many actors (daemonized or not) have been launched on this host */
134 int Host::get_actor_count() const
135 {
136   return pimpl_->get_actor_count();
137 }
138
139 /**
140  * @brief Find a route toward another host
141  *
142  * @param dest [IN] where to
143  * @param links [OUT] where to store the list of links (must exist, cannot be nullptr).
144  * @param latency [OUT] where to store the latency experienced on the path (or nullptr if not interested)
145  *                It is the caller responsibility to initialize latency to 0 (we add to provided route)
146  * @pre links!=nullptr
147  *
148  * walk through the routing components tree and find a route between hosts
149  * by calling each "get_route" function in each routing component.
150  */
151 void Host::route_to(const Host* dest, std::vector<Link*>& links, double* latency) const
152 {
153   std::vector<kernel::resource::LinkImpl*> linkImpls;
154   this->route_to(dest, linkImpls, latency);
155   for (kernel::resource::LinkImpl* const& l : linkImpls)
156     links.push_back(l->get_iface());
157 }
158
159 /** @brief Just like Host::routeTo, but filling an array of link implementations */
160 void Host::route_to(const Host* dest, std::vector<kernel::resource::LinkImpl*>& links, double* latency) const
161 {
162   kernel::routing::NetZoneImpl::get_global_route(pimpl_netpoint_, dest->get_netpoint(), links, latency);
163   if (XBT_LOG_ISENABLED(surf_route, xbt_log_priority_debug)) {
164     XBT_CDEBUG(surf_route, "Route from '%s' to '%s' (latency: %f):", get_cname(), dest->get_cname(),
165                (latency == nullptr ? -1 : *latency));
166     for (auto const& link : links)
167       XBT_CDEBUG(surf_route, "  Link '%s'", link->get_cname());
168   }
169 }
170
171 /** @brief Returns the networking zone englobing that host */
172 NetZone* Host::get_englobing_zone()
173 {
174   return pimpl_netpoint_->get_englobing_zone()->get_iface();
175 }
176
177 void Host::sendto(Host* dest, double byte_amount)
178 {
179   sendto_async(dest, byte_amount)->wait();
180 }
181
182 ActivityPtr Host::sendto_async(Host* dest, double byte_amount)
183 {
184   std::vector<Host*> m_host_list   = {this, dest};
185   std::vector<double> flops_amount = {0, 0};
186   std::vector<double> bytes_amount = {0, byte_amount, 0, 0};
187   return this_actor::exec_init(m_host_list, flops_amount, bytes_amount)->start();
188 }
189
190 /** Get the properties assigned to a host */
191 const std::unordered_map<std::string, std::string>* Host::get_properties() const
192 {
193   return this->pimpl_->get_properties();
194 }
195
196 /** Retrieve the property value (or nullptr if not set) */
197 const char* Host::get_property(const std::string& key) const
198 {
199   return this->pimpl_->get_property(key);
200 }
201
202 void Host::set_property(const std::string& key, const std::string& value)
203 {
204   kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); });
205 }
206
207 void Host::set_properties(const std::unordered_map<std::string, std::string>& properties)
208 {
209   kernel::actor::simcall([this, &properties] { this->pimpl_->set_properties(properties); });
210 }
211
212 /** Specify a profile turning the host on and off according to a exhaustive list or a stochastic law.
213  * The profile must contain boolean values. */
214 void Host::set_state_profile(kernel::profile::Profile* p)
215 {
216   return kernel::actor::simcall([this, p] { pimpl_cpu->set_state_profile(p); });
217 }
218 /** Specify a profile modeling the external load according to a exhaustive list or a stochastic law.
219  *
220  * Each event of the profile represent a peak speed change that is due to external load. The values are given as a rate
221  * of the initial value. This means that the actual value is obtained by multiplying the initial value (the peek speed
222  * at this pstate level) by the rate coming from the profile.
223  */
224 void Host::set_speed_profile(kernel::profile::Profile* p)
225 {
226   return kernel::actor::simcall([this, p] { pimpl_cpu->set_speed_profile(p); });
227 }
228
229 /** @brief Get the peak processor speed (in flops/s), at the specified pstate  */
230 double Host::get_pstate_speed(int pstate_index) const
231 {
232   return this->pimpl_cpu->get_pstate_peak_speed(pstate_index);
233 }
234
235 double Host::get_speed() const
236 {
237   return this->pimpl_cpu->get_speed(1.0);
238 }
239 double Host::get_load() const
240 {
241   return this->pimpl_cpu->get_load();
242 }
243 double Host::get_available_speed() const
244 {
245   return this->pimpl_cpu->get_speed_ratio();
246 }
247
248 int Host::get_core_count() const
249 {
250   return this->pimpl_cpu->get_core_count();
251 }
252
253 /** @brief Set the pstate at which the host should run */
254 void Host::set_pstate(int pstate_index)
255 {
256   kernel::actor::simcall([this, pstate_index] { this->pimpl_cpu->set_pstate(pstate_index); });
257 }
258 /** @brief Retrieve the pstate at which the host is currently running */
259 int Host::get_pstate() const
260 {
261   return this->pimpl_cpu->get_pstate();
262 }
263
264 std::vector<Disk*> Host::get_disks() const
265 {
266   return kernel::actor::simcall([this] { return this->pimpl_->get_disks(); });
267 }
268
269 void Host::add_disk(Disk* disk)
270 {
271   kernel::actor::simcall([this, disk] { this->pimpl_->add_disk(disk); });
272 }
273
274 void Host::remove_disk(const std::string& disk_name)
275 {
276   kernel::actor::simcall([this, disk_name] { this->pimpl_->remove_disk(disk_name); });
277 }
278 /**
279  * @ingroup simix_storage_management
280  * @brief Returns the list of storages attached to a host.
281  * @return a vector containing all storages attached to the host
282  */
283 std::vector<const char*> Host::get_attached_storages() const
284 {
285   return kernel::actor::simcall([this] { return this->pimpl_->get_attached_storages(); });
286 }
287
288 std::unordered_map<std::string, Storage*> const& Host::get_mounted_storages()
289 {
290   kernel::actor::simcall([this] {
291     if (mounts_ == nullptr)
292       mounts_ = pimpl_->get_mounted_storages();
293   });
294   return *mounts_;
295 }
296
297 ExecPtr Host::exec_async(double flops) const
298 {
299   return this_actor::exec_init(flops);
300 }
301
302 void Host::execute(double flops) const
303 {
304   execute(flops, 1.0 /* priority */);
305 }
306
307 void Host::execute(double flops, double priority) const
308 {
309   this_actor::exec_init(flops)->set_priority(1 / priority)->start()->wait();
310 }
311
312 } // namespace s4u
313 } // namespace simgrid
314
315 /* **************************** Public C interface *************************** */
316 size_t sg_host_count()
317 {
318   return simgrid::s4u::Engine::get_instance()->get_host_count();
319 }
320 sg_host_t* sg_host_list()
321 {
322   const simgrid::s4u::Engine* e = simgrid::s4u::Engine::get_instance();
323   size_t host_count       = e->get_host_count();
324   xbt_assert(host_count > 0, "There is no host!");
325   std::vector<simgrid::s4u::Host*> hosts = e->get_all_hosts();
326
327   sg_host_t* res = xbt_new(sg_host_t, hosts.size());
328   memcpy(res, hosts.data(), sizeof(sg_host_t) * hosts.size());
329
330   return res;
331 }
332
333 const char* sg_host_get_name(const_sg_host_t host)
334 {
335   return host->get_cname();
336 }
337
338 void* sg_host_extension_get(const_sg_host_t host, size_t ext)
339 {
340   return host->extension(ext);
341 }
342
343 size_t sg_host_extension_create(void (*deleter)(void*))
344 {
345   return simgrid::s4u::Host::extension_create(deleter);
346 }
347
348 sg_host_t sg_host_by_name(const char* name)
349 {
350   return simgrid::s4u::Host::by_name_or_null(name);
351 }
352
353 xbt_dynar_t sg_hosts_as_dynar() // XBT_ATTRIB_DEPRECATED_v330
354 {
355   std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
356
357   auto last = std::remove_if(begin(list), end(list), [](const simgrid::s4u::Host* host) {
358     return not host || not host->get_netpoint() || not host->get_netpoint()->is_host();
359   });
360   std::sort(begin(list), last,
361             [](const simgrid::s4u::Host* a, const simgrid::s4u::Host* b) { return a->get_name() < b->get_name(); });
362
363   xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t), nullptr);
364   std::for_each(begin(list), last, [res](sg_host_t host) { xbt_dynar_push_as(res, sg_host_t, host); });
365   return res;
366 }
367
368 // ========= Layering madness ==============*
369
370 // ========== User data Layer ==========
371 void* sg_host_data(const_sg_host_t host)
372 {
373   return host->get_data();
374 }
375 void sg_host_data_set(sg_host_t host, void* userdata)
376 {
377   host->set_data(userdata);
378 }
379 void* sg_host_user(sg_host_t host) // deprecated
380 {
381   return host->get_data();
382 }
383 void sg_host_user_set(sg_host_t host, void* userdata) // deprecated
384 {
385   host->set_data(userdata);
386 }
387 void sg_host_user_destroy(sg_host_t host) // deprecated
388 {
389   host->set_data(nullptr);
390 }
391
392 // ========= storage related functions ============
393 void sg_host_disks(const_sg_host_t host, unsigned int* disk_count, sg_disk_t** disks)
394 {
395   std::vector<sg_disk_t> list = host->get_disks();
396   *disk_count                 = list.size();
397   *disks                      = static_cast<sg_disk_t*>(xbt_malloc(sizeof(sg_disk_t) * (*disk_count)));
398   for (size_t i = 0; i < *disk_count; i++)
399     (*disks)[i] = list[i];
400 }
401
402 xbt_dict_t sg_host_get_mounted_storage_list(sg_host_t host) // XBT_ATTRIB_DEPRECATED_v330
403 {
404   xbt_assert((host != nullptr), "Invalid parameters");
405   xbt_dict_t res = xbt_dict_new_homogeneous(nullptr);
406   for (auto const& elm : host->get_mounted_storages()) {
407     const char* mount_name = elm.first.c_str();
408     const simgrid::s4u::Storage* storage = elm.second;
409     xbt_dict_set(res, mount_name, (void*)storage->get_cname());
410   }
411
412   return res;
413 }
414
415 xbt_dynar_t sg_host_get_attached_storage_list(const_sg_host_t host)
416 {
417   xbt_dynar_t storage_dynar               = xbt_dynar_new(sizeof(const char*), nullptr);
418   std::vector<const char*> storage_vector = host->get_attached_storages();
419   for (auto const& name : storage_vector)
420     xbt_dynar_push(storage_dynar, &name);
421   return storage_dynar;
422 }
423
424 // =========== user-level functions ===============
425 // ================================================
426 /** @brief Returns the total speed of a host */
427 double sg_host_speed(const_sg_host_t host)
428 {
429   return host->get_speed();
430 }
431
432 /** @brief Return the speed of the processor (in flop/s) at a given pstate. See also @ref plugin_energy.
433  *
434  * @param  host host to test
435  * @param pstate_index pstate to test
436  * @return Returns the processor speed associated with pstate_index
437  */
438 double sg_host_get_pstate_speed(const_sg_host_t host, int pstate_index)
439 {
440   return host->get_pstate_speed(pstate_index);
441 }
442
443 /** @ingroup m_host_management
444  * @brief Return the number of cores.
445  *
446  * @param host a host
447  * @return the number of cores
448  */
449 int sg_host_core_count(const_sg_host_t host)
450 {
451   return host->get_core_count();
452 }
453
454 double sg_host_get_available_speed(const_sg_host_t host)
455 {
456   return host->get_available_speed();
457 }
458
459 /** @brief Returns the number of power states for a host.
460  *
461  *  See also @ref plugin_energy.
462  */
463 int sg_host_get_nb_pstates(const_sg_host_t host)
464 {
465   return host->get_pstate_count();
466 }
467
468 /** @brief Gets the pstate at which that host currently runs.
469  *
470  *  See also @ref plugin_energy.
471  */
472 int sg_host_get_pstate(const_sg_host_t host)
473 {
474   return host->get_pstate();
475 }
476 /** @brief Sets the pstate at which that host should run.
477  *
478  *  See also @ref plugin_energy.
479  */
480 void sg_host_set_pstate(sg_host_t host, int pstate)
481 {
482   host->set_pstate(pstate);
483 }
484
485 /** @ingroup m_host_management
486  *
487  * @brief Start the host if it is off
488  *
489  * See also #sg_host_is_on() to test the current state of the host and @ref plugin_energy
490  * for more info on DVFS.
491  */
492 void sg_host_turn_on(sg_host_t host)
493 {
494   host->turn_on();
495 }
496
497 /** @ingroup m_host_management
498  *
499  * @brief Stop the host if it is on
500  *
501  * See also #MSG_host_is_on() to test the current state of the host and @ref plugin_energy
502  * for more info on DVFS.
503  */
504 void sg_host_turn_off(sg_host_t host)
505 {
506   host->turn_off();
507 }
508
509 /** @ingroup m_host_management
510  * @brief Determine if a host is up and running.
511  *
512  * See also #sg_host_turn_on() and #sg_host_turn_off() to switch the host ON and OFF and @ref plugin_energy for more
513  * info on DVFS.
514  *
515  * @param host host to test
516  * @return Returns true if the host is up and running, and false if it's currently down
517  */
518 int sg_host_is_on(const_sg_host_t host)
519 {
520   return host->is_on();
521 }
522
523 /** @brief Get the properties of a host */
524 xbt_dict_t sg_host_get_properties(const_sg_host_t host)
525 {
526   xbt_dict_t as_dict = xbt_dict_new_homogeneous(xbt_free_f);
527   const std::unordered_map<std::string, std::string>* props = host->get_properties();
528   if (props == nullptr)
529     return nullptr;
530   for (auto const& elm : *props) {
531     xbt_dict_set(as_dict, elm.first.c_str(), xbt_strdup(elm.second.c_str()));
532   }
533   return as_dict;
534 }
535
536 /** @ingroup m_host_management
537  * @brief Returns the value of a given host property
538  *
539  * @param host a host
540  * @param name a property name
541  * @return value of a property (or nullptr if property not set)
542  */
543 const char* sg_host_get_property_value(const_sg_host_t host, const char* name)
544 {
545   return host->get_property(name);
546 }
547
548 void sg_host_set_property_value(sg_host_t host, const char* name, const char* value)
549 {
550   host->set_property(name, value);
551 }
552
553 /**
554  * @brief Find a route between two hosts
555  *
556  * @param from where from
557  * @param to where to
558  * @param links [OUT] where to store the list of links (must exist, cannot be nullptr).
559  */
560 void sg_host_route(const_sg_host_t from, const_sg_host_t to, xbt_dynar_t links)
561 {
562   std::vector<simgrid::s4u::Link*> vlinks;
563   from->route_to(to, vlinks, nullptr);
564   for (auto const& link : vlinks)
565     xbt_dynar_push(links, &link);
566 }
567 /**
568  * @brief Find the latency of the route between two hosts
569  *
570  * @param from where from
571  * @param to where to
572  */
573 double sg_host_route_latency(const_sg_host_t from, const_sg_host_t to)
574 {
575   std::vector<simgrid::s4u::Link*> vlinks;
576   double res = 0;
577   from->route_to(to, vlinks, &res);
578   return res;
579 }
580 /**
581  * @brief Find the bandwidth of the route between two hosts
582  *
583  * @param from where from
584  * @param to where to
585  */
586 double sg_host_route_bandwidth(const_sg_host_t from, const_sg_host_t to)
587 {
588   double min_bandwidth = -1.0;
589
590   std::vector<simgrid::s4u::Link*> vlinks;
591   from->route_to(to, vlinks, nullptr);
592   for (auto const& link : vlinks) {
593     double bandwidth = link->get_bandwidth();
594     if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
595       min_bandwidth = bandwidth;
596   }
597   return min_bandwidth;
598 }
599
600 void sg_host_sendto(sg_host_t from, sg_host_t to, double byte_amount)
601 {
602   from->sendto(to, byte_amount);
603 }
604
605 /** @brief Displays debugging information about a host */
606 void sg_host_dump(const_sg_host_t host)
607 {
608   XBT_INFO("Displaying host %s", host->get_cname());
609   XBT_INFO("  - speed: %.0f", host->get_speed());
610   XBT_INFO("  - available speed: %.2f", sg_host_get_available_speed(host));
611   const std::unordered_map<std::string, std::string>* props = host->get_properties();
612
613   if (not props->empty()) {
614     XBT_INFO("  - properties:");
615     for (auto const& elm : *props) {
616       XBT_INFO("    %s->%s", elm.first.c_str(), elm.second.c_str());
617     }
618   }
619 }
620
621 /** @brief Return the list of actors attached to a host.
622  *
623  * @param host a host
624  * @param whereto a dynar in which we should push actors living on that host
625  */
626 void sg_host_get_actor_list(const_sg_host_t host, xbt_dynar_t whereto)
627 {
628   auto const actors = host->get_all_actors();
629   for (auto const& actor : actors)
630     xbt_dynar_push(whereto, &actor);
631 }
632
633 sg_host_t sg_host_self()
634 {
635   return SIMIX_is_maestro() ? nullptr : simgrid::kernel::actor::ActorImpl::self()->get_host();
636 }
637
638 /* needs to be public and without simcall for exceptions and logging events */
639 const char* sg_host_self_get_name()
640 {
641   const char* res = "";
642   if (not SIMIX_is_maestro()) {
643     const simgrid::s4u::Host* host = simgrid::kernel::actor::ActorImpl::self()->get_host();
644     if (host != nullptr)
645       res = host->get_cname();
646   }
647   return res;
648 }
649
650 double sg_host_load(const_sg_host_t host)
651 {
652   return host->get_load();
653 }