Logo AND Algorithmique Numérique Distribuée

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