Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Plug a memleak in barriers
[simgrid.git] / src / s4u / s4u_Actor.cpp
1 /* Copyright (c) 2006-2022. 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/actor.h>
8 #include <simgrid/modelchecker.h>
9 #include <simgrid/s4u/Actor.hpp>
10 #include <simgrid/s4u/Engine.hpp>
11 #include <simgrid/s4u/Exec.hpp>
12 #include <simgrid/s4u/VirtualMachine.hpp>
13
14 #include "src/include/mc/mc.h"
15 #include "src/kernel/EngineImpl.hpp"
16 #include "src/kernel/actor/ActorImpl.hpp"
17 #include "src/kernel/context/Context.hpp"
18 #include "src/mc/mc_replay.hpp"
19 #include "src/surf/HostImpl.hpp"
20
21 #include <algorithm>
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_actor, s4u, "S4U actors");
24
25 namespace simgrid {
26
27 template class xbt::Extendable<s4u::Actor>;
28
29 namespace s4u {
30
31 xbt::signal<void(Actor&)> s4u::Actor::on_creation;
32 xbt::signal<void(Actor const&)> s4u::Actor::on_suspend;
33 xbt::signal<void(Actor const&)> s4u::Actor::on_resume;
34 xbt::signal<void(Actor const&)> s4u::Actor::on_sleep;
35 xbt::signal<void(Actor const&)> s4u::Actor::on_wake_up;
36 xbt::signal<void(Actor const&, Host const& previous_location)> s4u::Actor::on_host_change;
37 xbt::signal<void(Actor const&)> s4u::Actor::on_termination;
38 xbt::signal<void(Actor const&)> s4u::Actor::on_destruction;
39
40 // ***** Actor creation *****
41 Actor* Actor::self()
42 {
43   const kernel::context::Context* self_context = kernel::context::Context::self();
44   if (self_context == nullptr)
45     return nullptr;
46
47   return self_context->get_actor()->get_ciface();
48 }
49
50 ActorPtr Actor::init(const std::string& name, s4u::Host* host)
51 {
52   const kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
53   kernel::actor::ActorImpl* actor =
54       kernel::actor::simcall_answered([self, &name, host] { return self->init(name, host).get(); });
55   return actor->get_iface();
56 }
57
58 /** Set a non-default stack size for this context (in Kb)
59  *
60  * This must be done before starting the actor, and it won't work with the thread factory. */
61 ActorPtr Actor::set_stacksize(unsigned stacksize)
62 {
63   pimpl_->set_stacksize(stacksize * 1024);
64   return this;
65 }
66
67 ActorPtr Actor::start(const std::function<void()>& code)
68 {
69   simgrid::kernel::actor::simcall_answered([this, &code] { pimpl_->start(code); });
70   return this;
71 }
72
73 ActorPtr Actor::create(const std::string& name, s4u::Host* host, const std::function<void()>& code)
74 {
75   const kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
76   kernel::actor::ActorImpl* actor =
77       kernel::actor::simcall_answered([self, &name, host, &code] { return self->init(name, host)->start(code); });
78
79   return actor->get_iface();
80 }
81
82 ActorPtr Actor::create(const std::string& name, s4u::Host* host, const std::string& function,
83                        std::vector<std::string> args)
84 {
85   const simgrid::kernel::actor::ActorCodeFactory& factory =
86       simgrid::kernel::EngineImpl::get_instance()->get_function(function);
87   return create(name, host, factory(std::move(args)));
88 }
89
90 void intrusive_ptr_add_ref(const Actor* actor)
91 {
92   intrusive_ptr_add_ref(actor->pimpl_);
93 }
94 void intrusive_ptr_release(const Actor* actor)
95 {
96   intrusive_ptr_release(actor->pimpl_);
97 }
98 int Actor::get_refcount() const
99 {
100   return pimpl_->get_refcount();
101 }
102
103 // ***** Actor methods *****
104
105 void Actor::join() const
106 {
107   join(-1);
108 }
109
110 void Actor::join(double timeout) const
111 {
112   kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self();
113   const kernel::actor::ActorImpl* target = pimpl_;
114   kernel::actor::simcall_blocking([issuer, target, timeout] {
115     if (target->finished_) {
116       // The joined actor is already finished, just wake up the issuer right away
117       issuer->simcall_answer();
118     } else {
119       kernel::activity::ActivityImplPtr sync = issuer->join(target, timeout);
120       sync->register_simcall(&issuer->simcall_);
121     }
122   });
123 }
124
125 Actor* Actor::set_auto_restart(bool autorestart)
126 {
127   kernel::actor::simcall_answered([this, autorestart]() {
128     xbt_assert(autorestart && not pimpl_->has_to_auto_restart()); // FIXME: handle all cases
129     pimpl_->set_auto_restart(autorestart);
130
131     auto* arg = new kernel::actor::ProcessArg(pimpl_->get_host(), pimpl_);
132     XBT_DEBUG("Adding %s to the actors_at_boot_ list of Host %s", arg->name.c_str(), arg->host->get_cname());
133     pimpl_->get_host()->get_impl()->add_actor_at_boot(arg);
134   });
135   return this;
136 }
137
138 void Actor::on_exit(const std::function<void(bool /*failed*/)>& fun) const
139 {
140   kernel::actor::simcall_answered([this, &fun] { pimpl_->on_exit->emplace_back(fun); });
141 }
142
143 void Actor::set_host(Host* new_host)
144 {
145   const s4u::Host* previous_location = get_host();
146
147   kernel::actor::simcall_answered([this, new_host]() {
148     for (auto const& activity : pimpl_->activities_) {
149       // FIXME: implement the migration of other kinds of activities
150       if (auto exec = boost::dynamic_pointer_cast<kernel::activity::ExecImpl>(activity))
151         exec->migrate(new_host);
152     }
153     this->pimpl_->set_host(new_host);
154   });
155
156   s4u::Actor::on_host_change(*this, *previous_location);
157 }
158
159 s4u::Host* Actor::get_host() const
160 {
161   return this->pimpl_->get_host();
162 }
163
164 Actor* Actor::daemonize()
165 {
166   kernel::actor::simcall_answered([this]() { pimpl_->daemonize(); });
167   return this;
168 }
169
170 bool Actor::is_daemon() const
171 {
172   return this->pimpl_->is_daemon();
173 }
174
175 bool Actor::is_maestro()
176 {
177   const auto* self = kernel::actor::ActorImpl::self();
178   return self == nullptr || kernel::EngineImpl::get_instance()->is_maestro(self);
179 }
180
181 const simgrid::xbt::string& Actor::get_name() const
182 {
183   return this->pimpl_->get_name();
184 }
185
186 const char* Actor::get_cname() const
187 {
188   return this->pimpl_->get_cname();
189 }
190
191 aid_t Actor::get_pid() const
192 {
193   return this->pimpl_->get_pid();
194 }
195
196 aid_t Actor::get_ppid() const
197 {
198   return this->pimpl_->get_ppid();
199 }
200
201 void Actor::suspend()
202 {
203   kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self();
204   kernel::actor::ActorImpl* target = pimpl_;
205   s4u::Actor::on_suspend(*this);
206   kernel::actor::simcall_blocking([issuer, target]() {
207     target->suspend();
208     if (target != issuer) {
209       /* If we are suspending ourselves, then just do not finish the simcall now */
210       issuer->simcall_answer();
211     }
212   });
213 }
214
215 void Actor::resume()
216 {
217   kernel::actor::simcall_answered([this] { pimpl_->resume(); });
218   s4u::Actor::on_resume(*this);
219 }
220
221 bool Actor::is_suspended() const
222 {
223   return pimpl_->is_suspended();
224 }
225
226 void Actor::set_kill_time(double kill_time)
227 {
228   kernel::actor::simcall_answered([this, kill_time] { pimpl_->set_kill_time(kill_time); });
229 }
230
231 /** @brief Get the kill time of an actor(or 0 if unset). */
232 double Actor::get_kill_time() const
233 {
234   return pimpl_->get_kill_time();
235 }
236
237 void Actor::kill()
238 {
239   const kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
240   kernel::actor::simcall_answered([this, self] { self->kill(pimpl_); });
241 }
242
243 // ***** Static functions *****
244
245 ActorPtr Actor::by_pid(aid_t pid)
246 {
247   kernel::actor::ActorImpl* actor = kernel::actor::ActorImpl::by_pid(pid);
248   if (actor != nullptr)
249     return actor->get_iface();
250   else
251     return ActorPtr();
252 }
253
254 void Actor::kill_all()
255 {
256   const kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
257   kernel::actor::simcall_answered([self] { self->kill_all(); });
258 }
259
260 const std::unordered_map<std::string, std::string>* Actor::get_properties() const
261 {
262   return pimpl_->get_properties();
263 }
264
265 /** Retrieve the property value (or nullptr if not set) */
266 const char* Actor::get_property(const std::string& key) const
267 {
268   return pimpl_->get_property(key);
269 }
270
271 void Actor::set_property(const std::string& key, const std::string& value)
272 {
273   kernel::actor::simcall_answered([this, &key, &value] { pimpl_->set_property(key, value); });
274 }
275
276 Actor* Actor::restart()
277 {
278   return kernel::actor::simcall_answered([this]() { return pimpl_->restart(); });
279 }
280
281 // ***** this_actor *****
282
283 namespace this_actor {
284
285 /** Returns true if run from the kernel mode, and false if run from a real actor
286  *
287  * Everything that is run out of any actor (simulation setup before the engine is run,
288  * computing the model evolutions as a result to the actors' action, etc) is run in
289  * kernel mode, just as in any operating systems.
290  *
291  * In SimGrid, the actor in charge of doing the stuff in kernel mode is called Maestro,
292  * because it is the one scheduling when the others should move or wait.
293  */
294 bool is_maestro()
295 {
296   return Actor::is_maestro();
297 }
298
299 void sleep_for(double duration)
300 {
301   xbt_assert(std::isfinite(duration), "duration is not finite!");
302
303   if (duration <= 0) /* that's a no-op */
304     return;
305
306   if (duration < sg_surf_precision) {
307     static unsigned int warned = 0; // At most 20 such warnings
308     warned++;
309     if (warned <= 20)
310       XBT_INFO("The parameter to sleep_for() is smaller than the SimGrid numerical accuracy (%g < %g). "
311                "Please refer to https://simgrid.org/doc/latest/Configuring_SimGrid.html#numerical-precision",
312                duration, sg_surf_precision);
313     if (warned == 20)
314       XBT_VERB("(further warnings about the numerical accuracy of sleep_for() will be omitted).");
315   }
316
317   kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self();
318   Actor::on_sleep(*issuer->get_ciface());
319
320   kernel::actor::simcall_blocking([issuer, duration]() {
321     if (MC_is_active() || MC_record_replay_is_active()) {
322       MC_process_clock_add(issuer, duration);
323       issuer->simcall_answer();
324       return;
325     }
326     kernel::activity::ActivityImplPtr sync = issuer->sleep(duration);
327     sync->register_simcall(&issuer->simcall_);
328   });
329
330   Actor::on_wake_up(*issuer->get_ciface());
331 }
332
333 void yield()
334 {
335   kernel::actor::simcall_answered([] { /* do nothing*/ });
336 }
337
338 XBT_PUBLIC void sleep_until(double wakeup_time)
339 {
340   double now = s4u::Engine::get_clock();
341   if (wakeup_time > now)
342     sleep_for(wakeup_time - now);
343 }
344
345 void execute(double flops)
346 {
347   execute(flops, 1.0 /* priority */);
348 }
349
350 void execute(double flops, double priority)
351 {
352   exec_init(flops)->set_priority(priority)->vetoable_start()->wait();
353 }
354
355 void parallel_execute(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
356                       const std::vector<double>& bytes_amounts)
357 {
358   exec_init(hosts, flops_amounts, bytes_amounts)->wait();
359 }
360
361 ExecPtr exec_init(double flops_amount)
362 {
363   return Exec::init()->set_flops_amount(flops_amount)->set_host(get_host());
364 }
365
366 ExecPtr exec_init(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
367                   const std::vector<double>& bytes_amounts)
368 {
369   xbt_assert(not hosts.empty(), "Your parallel executions must span over at least one host.");
370   xbt_assert(hosts.size() == flops_amounts.size() || flops_amounts.empty(),
371              "Host count (%zu) does not match flops_amount count (%zu).", hosts.size(), flops_amounts.size());
372   xbt_assert(hosts.size() * hosts.size() == bytes_amounts.size() || bytes_amounts.empty(),
373              "bytes_amounts must be a matrix of size host_count * host_count (%zu*%zu), but it's of size %zu.",
374              hosts.size(), hosts.size(), bytes_amounts.size());
375   /* Check that we are not mixing VMs and PMs in the parallel task */
376   bool is_a_vm = (nullptr != dynamic_cast<VirtualMachine*>(hosts.front()));
377   xbt_assert(std::all_of(hosts.begin(), hosts.end(),
378                          [is_a_vm](s4u::Host* elm) {
379                            bool tmp_is_a_vm = (nullptr != dynamic_cast<VirtualMachine*>(elm));
380                            return is_a_vm == tmp_is_a_vm;
381                          }),
382              "parallel_execute: mixing VMs and PMs is not supported (yet).");
383   /* checking for infinite values */
384   xbt_assert(std::all_of(flops_amounts.begin(), flops_amounts.end(), [](double elm) { return std::isfinite(elm); }),
385              "flops_amounts comprises infinite values!");
386   xbt_assert(std::all_of(bytes_amounts.begin(), bytes_amounts.end(), [](double elm) { return std::isfinite(elm); }),
387              "flops_amounts comprises infinite values!");
388
389   return Exec::init()->set_flops_amounts(flops_amounts)->set_bytes_amounts(bytes_amounts)->set_hosts(hosts);
390 }
391
392 ExecPtr exec_async(double flops)
393 {
394   ExecPtr res = exec_init(flops);
395   res->vetoable_start();
396   return res;
397 }
398
399 aid_t get_pid()
400 {
401   return simgrid::kernel::actor::ActorImpl::self()->get_pid();
402 }
403
404 aid_t get_ppid()
405 {
406   return simgrid::kernel::actor::ActorImpl::self()->get_ppid();
407 }
408
409 std::string get_name()
410 {
411   return simgrid::kernel::actor::ActorImpl::self()->get_name();
412 }
413
414 const char* get_cname()
415 {
416   return simgrid::kernel::actor::ActorImpl::self()->get_cname();
417 }
418
419 Host* get_host()
420 {
421   return simgrid::kernel::actor::ActorImpl::self()->get_host();
422 }
423
424 void suspend()
425 {
426   kernel::actor::ActorImpl* self = simgrid::kernel::actor::ActorImpl::self();
427   s4u::Actor::on_suspend(*self->get_ciface());
428   kernel::actor::simcall_blocking([self] { self->suspend(); });
429 }
430
431 void exit()
432 {
433   kernel::actor::ActorImpl* self = simgrid::kernel::actor::ActorImpl::self();
434   simgrid::kernel::actor::simcall_answered([self] { self->exit(); });
435   THROW_IMPOSSIBLE;
436 }
437
438 void on_exit(const std::function<void(bool)>& fun)
439 {
440   simgrid::kernel::actor::ActorImpl::self()->get_iface()->on_exit(fun);
441 }
442
443 /** @brief Moves the current actor to another host
444  *
445  * @see simgrid::s4u::Actor::migrate() for more information
446  */
447 void set_host(Host* new_host)
448 {
449   simgrid::kernel::actor::ActorImpl::self()->get_iface()->set_host(new_host);
450 }
451
452 } // namespace this_actor
453 } // namespace s4u
454 } // namespace simgrid
455
456 /* **************************** Public C interface *************************** */
457 size_t sg_actor_count()
458 {
459   return simgrid::s4u::Engine::get_instance()->get_actor_count();
460 }
461
462 sg_actor_t* sg_actor_list()
463 {
464   const simgrid::s4u::Engine* e = simgrid::s4u::Engine::get_instance();
465   size_t actor_count      = e->get_actor_count();
466   xbt_assert(actor_count > 0, "There is no actor!");
467   std::vector<simgrid::s4u::ActorPtr> actors = e->get_all_actors();
468
469   auto* res = xbt_new(sg_actor_t, actors.size());
470   for (size_t i = 0; i < actor_count; i++)
471     res[i] = actors[i].get();
472   return res;
473 }
474
475 sg_actor_t sg_actor_init(const char* name, sg_host_t host)
476 {
477   return simgrid::s4u::Actor::init(name, host).get();
478 }
479
480 void sg_actor_start_(sg_actor_t actor, xbt_main_func_t code, int argc, const char* const* argv)
481 {
482   simgrid::kernel::actor::ActorCode function;
483   if (code)
484     function = simgrid::xbt::wrap_main(code, argc, argv);
485   actor->start(function);
486 }
487
488 sg_actor_t sg_actor_create_(const char* name, sg_host_t host, xbt_main_func_t code, int argc, const char* const* argv)
489 {
490   simgrid::kernel::actor::ActorCode function = simgrid::xbt::wrap_main(code, argc, argv);
491   return simgrid::s4u::Actor::init(name, host)->start(function).get();
492 }
493
494 void sg_actor_set_stacksize(sg_actor_t actor, unsigned size)
495 {
496   actor->set_stacksize(size);
497 }
498
499 void sg_actor_exit()
500 {
501   simgrid::s4u::this_actor::exit();
502 }
503
504 /**
505  * @brief Returns the process ID of @a actor.
506  *
507  * This function checks whether @a actor is a valid pointer and return its PID (or 0 in case of problem).
508  */
509
510 aid_t sg_actor_get_pid(const_sg_actor_t actor)
511 {
512   /* Do not raise an exception here: this function is called by the logs
513    * and the exceptions, so it would be called back again and again */
514   if (actor == nullptr || actor->get_impl() == nullptr)
515     return 0;
516   return actor->get_pid();
517 }
518
519 /**
520  * @brief Returns the process ID of the parent of @a actor.
521  *
522  * This function checks whether @a actor is a valid pointer and return its parent's PID.
523  * Returns -1 if the actor has not been created by any other actor.
524  */
525 aid_t sg_actor_get_ppid(const_sg_actor_t actor)
526 {
527   return actor->get_ppid();
528 }
529
530 /**
531  * @brief Return a #sg_actor_t given its PID.
532  *
533  * This function search in the list of all the created sg_actor_t for a sg_actor_t  whose PID is equal to @a PID.
534  * If none is found, @c nullptr is returned.
535    Note that the PID are unique in the whole simulation, not only on a given host.
536  */
537 sg_actor_t sg_actor_by_pid(aid_t pid)
538 {
539   return simgrid::s4u::Actor::by_pid(pid).get();
540 }
541
542 /** @brief Return the name of an actor. */
543 const char* sg_actor_get_name(const_sg_actor_t actor)
544 {
545   return actor->get_cname();
546 }
547
548 sg_host_t sg_actor_get_host(const_sg_actor_t actor)
549 {
550   return actor->get_host();
551 }
552
553 /**
554  * @brief Returns the value of a given actor property
555  *
556  * @param actor an actor
557  * @param name a property name
558  * @return value of a property (or nullptr if the property is not set)
559  */
560 const char* sg_actor_get_property_value(const_sg_actor_t actor, const char* name)
561 {
562   return actor->get_property(name);
563 }
564
565 /**
566  * @brief Return the list of properties
567  *
568  * This function returns all the parameters associated with an actor
569  */
570 xbt_dict_t sg_actor_get_properties(const_sg_actor_t actor)
571 {
572   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
573   xbt_dict_t as_dict                        = xbt_dict_new_homogeneous(xbt_free_f);
574   const std::unordered_map<std::string, std::string>* props = actor->get_properties();
575   if (props == nullptr)
576     return nullptr;
577   for (auto const& kv : *props) {
578     xbt_dict_set(as_dict, kv.first.c_str(), xbt_strdup(kv.second.c_str()));
579   }
580   return as_dict;
581 }
582
583 /**
584  * @brief Suspend the actor.
585  *
586  * This function suspends the actor by suspending the task on which it was waiting for the completion.
587  */
588 void sg_actor_suspend(sg_actor_t actor)
589 {
590   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
591   actor->suspend();
592 }
593
594 /**
595  * @brief Resume a suspended actor.
596  *
597  * This function resumes a suspended actor by resuming the task on which it was waiting for the completion.
598  */
599 void sg_actor_resume(sg_actor_t actor)
600 {
601   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
602   actor->resume();
603 }
604
605 /**
606  * @brief Returns true if the actor is suspended .
607  *
608  * This checks whether an actor is suspended or not by inspecting the task on which it was waiting for the completion.
609  */
610 int sg_actor_is_suspended(const_sg_actor_t actor)
611 {
612   return actor->is_suspended();
613 }
614
615 /** @brief Restarts an actor from the beginning. */
616 sg_actor_t sg_actor_restart(sg_actor_t actor)
617 {
618   return actor->restart();
619 }
620
621 /**
622  * @brief Sets the "auto-restart" flag of the actor.
623  * If the flag is set to 1, the actor will be automatically restarted when its host comes back up.
624  */
625 void sg_actor_set_auto_restart(sg_actor_t actor, int auto_restart)
626 {
627   actor->set_auto_restart(auto_restart);
628 }
629
630 /** @brief This actor will be terminated automatically when the last non-daemon actor finishes */
631 void sg_actor_daemonize(sg_actor_t actor)
632 {
633   actor->daemonize();
634 }
635
636 /** Returns whether or not this actor has been daemonized or not */
637 int sg_actor_is_daemon(const_sg_actor_t actor)
638 {
639   return actor->is_daemon();
640 }
641
642 /**
643  * @brief Migrates an actor to another location.
644  *
645  * This function changes the value of the #sg_host_t on  which @a actor is running.
646  */
647 void sg_actor_set_host(sg_actor_t actor, sg_host_t host)
648 {
649   actor->set_host(host);
650 }
651
652 /**
653  * @brief Wait for the completion of a #sg_actor_t.
654  *
655  * @param actor the actor to wait for
656  * @param timeout wait until the actor is over, or the timeout expires
657  */
658 void sg_actor_join(const_sg_actor_t actor, double timeout)
659 {
660   actor->join(timeout);
661 }
662
663 void sg_actor_kill(sg_actor_t actor)
664 {
665   actor->kill();
666 }
667
668 void sg_actor_kill_all()
669 {
670   simgrid::s4u::Actor::kill_all();
671 }
672
673 /**
674  * @brief Set the kill time of an actor.
675  *
676  * @param actor an actor
677  * @param kill_time the time when the actor is killed.
678  */
679 void sg_actor_set_kill_time(sg_actor_t actor, double kill_time)
680 {
681   actor->set_kill_time(kill_time);
682 }
683
684 /** Yield the current actor; let the other actors execute first */
685 void sg_actor_yield()
686 {
687   simgrid::s4u::this_actor::yield();
688 }
689
690 void sg_actor_sleep_for(double duration)
691 {
692   simgrid::s4u::this_actor::sleep_for(duration);
693 }
694
695 void sg_actor_sleep_until(double wakeup_time)
696 {
697   simgrid::s4u::this_actor::sleep_until(wakeup_time);
698 }
699
700 sg_actor_t sg_actor_attach(const char* name, void* data, sg_host_t host, xbt_dict_t properties)
701 {
702   xbt_assert(host != nullptr, "Invalid parameters: host and code params must not be nullptr");
703   std::unordered_map<std::string, std::string> props;
704   xbt_dict_cursor_t cursor = nullptr;
705   char* key;
706   char* value;
707   xbt_dict_foreach (properties, cursor, key, value)
708     props[key] = value;
709   xbt_dict_free(&properties);
710
711   /* Let's create the actor: SIMIX may decide to start it right now, even before returning the flow control to us */
712   smx_actor_t actor = nullptr;
713   try {
714     actor = simgrid::kernel::actor::ActorImpl::attach(name, data, host).get();
715     actor->set_properties(props);
716   } catch (simgrid::HostFailureException const&) {
717     xbt_die("Could not attach");
718   }
719
720   simgrid::s4u::this_actor::yield();
721   return actor->get_ciface();
722 }
723
724 void sg_actor_detach()
725 {
726   simgrid::kernel::actor::ActorImpl::detach();
727 }
728
729 aid_t sg_actor_self_get_pid()
730 {
731   return simgrid::s4u::this_actor::get_pid();
732 }
733
734 aid_t sg_actor_self_get_ppid()
735 {
736   return simgrid::s4u::this_actor::get_ppid();
737 }
738
739 const char* sg_actor_self_get_name()
740 {
741   return simgrid::s4u::this_actor::get_cname();
742 }
743
744 void* sg_actor_self_get_data()
745 {
746   return simgrid::s4u::Actor::self()->get_data<void>();
747 }
748
749 void sg_actor_self_set_data(void* userdata)
750 {
751   simgrid::s4u::Actor::self()->set_data(userdata);
752 }
753
754 sg_actor_t sg_actor_self()
755 {
756   return simgrid::s4u::Actor::self();
757 }
758
759 void sg_actor_execute(double flops)
760 {
761   simgrid::s4u::this_actor::execute(flops);
762 }
763 void sg_actor_execute_with_priority(double flops, double priority)
764 {
765   simgrid::s4u::this_actor::exec_init(flops)->set_priority(priority)->wait();
766 }
767
768 void sg_actor_parallel_execute(int host_nb, sg_host_t* host_list, double* flops_amount, double* bytes_amount)
769 {
770   std::vector<simgrid::s4u::Host*> hosts(host_list, host_list + host_nb);
771   std::vector<double> flops;
772   std::vector<double> bytes;
773   if (flops_amount != nullptr)
774     flops = std::vector<double>(flops_amount, flops_amount + host_nb);
775   if (bytes_amount != nullptr)
776     bytes = std::vector<double>(bytes_amount, bytes_amount + host_nb * host_nb);
777
778   simgrid::s4u::this_actor::parallel_execute(hosts, flops, bytes);
779 }
780
781 /** @brief Take an extra reference on that actor to prevent it to be garbage-collected */
782 void sg_actor_ref(const_sg_actor_t actor)
783 {
784   intrusive_ptr_add_ref(actor);
785 }
786 /** @brief Release a reference on that actor so that it can get be garbage-collected */
787 void sg_actor_unref(const_sg_actor_t actor)
788 {
789   intrusive_ptr_release(actor);
790 }
791
792 /** @brief Return the user data of a #sg_actor_t */
793 void* sg_actor_get_data(const_sg_actor_t actor)
794 {
795   return actor->get_data<void>();
796 }
797
798 /** @brief Set the user data of a #sg_actor_t */
799 void sg_actor_set_data(sg_actor_t actor, void* userdata)
800 {
801   actor->set_data(userdata);
802 }
803
804 /** @brief Add a function to the list of "on_exit" functions for the current actor.
805  *  The on_exit functions are the functions executed when your actor is killed.
806  *  You should use them to free the data used by your actor.
807  */
808 void sg_actor_on_exit(void_f_int_pvoid_t fun, void* data)
809 {
810   simgrid::s4u::this_actor::on_exit([fun, data](bool failed) { fun(failed ? 1 /*FAILURE*/ : 0 /*SUCCESS*/, data); });
811 }
812
813 sg_exec_t sg_actor_exec_init(double computation_amount)
814 {
815   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(computation_amount);
816   exec->add_ref();
817   return exec.get();
818 }
819
820 sg_exec_t sg_actor_parallel_exec_init(int host_nb, const sg_host_t* host_list, double* flops_amount,
821                                       double* bytes_amount)
822 {
823   std::vector<simgrid::s4u::Host*> hosts(host_list, host_list + host_nb);
824   std::vector<double> flops;
825   std::vector<double> bytes;
826   if (flops_amount != nullptr)
827     flops = std::vector<double>(flops_amount, flops_amount + host_nb);
828   if (bytes_amount != nullptr)
829     bytes = std::vector<double>(bytes_amount, bytes_amount + host_nb * host_nb);
830
831   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(hosts, flops, bytes);
832   exec->add_ref();
833   return exec.get();
834 }
835
836 sg_exec_t sg_actor_exec_async(double computation_amount)
837 {
838   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_async(computation_amount);
839   exec->add_ref();
840   return exec.get();
841 }