Logo AND Algorithmique Numérique Distribuée

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