Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'add_remaining_comm_sync_bindings' into 'master'
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
1 /* Copyright (c) 2017-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/s4u.hpp"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
9
10 static void dummy()
11 {
12   XBT_INFO("I start");
13   simgrid::s4u::this_actor::sleep_for(200);
14   XBT_INFO("I stop");
15 }
16
17 static void dummy_daemon()
18 {
19   while (simgrid::s4u::this_actor::get_host()->is_on()) {
20     XBT_INFO("Hello from the infinite loop");
21     simgrid::s4u::this_actor::sleep_for(80.0);
22   }
23 }
24
25 static void autostart()
26 {
27   simgrid::s4u::Host* host = simgrid::s4u::Host::by_name("Fafard");
28
29   XBT_INFO("starting a dummy process on %s", host->get_cname());
30   simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy);
31   dummy_actor->on_exit([](bool failed) { XBT_INFO("Dummy actor %s.", failed ? "failed" : "terminating"); });
32   dummy_actor->set_auto_restart(true);
33   dummy_actor->on_exit([](bool) { XBT_INFO("On_exit callback set after autorestart"); });
34
35   XBT_INFO("starting a daemon process on %s", host->get_cname());
36   simgrid::s4u::ActorPtr daemon_actor = simgrid::s4u::Actor::create("Daemon", host, dummy_daemon);
37   daemon_actor->on_exit([](bool failed) { XBT_INFO("Daemon actor %s.", failed ? "failed" : "terminating"); });
38   daemon_actor->daemonize()->set_auto_restart(true);
39   daemon_actor->on_exit([](bool) { XBT_INFO("On_exit callback set after autorestart"); });
40
41   simgrid::s4u::this_actor::sleep_for(50);
42
43   XBT_INFO("powering off %s", host->get_cname());
44   host->turn_off();
45
46   simgrid::s4u::this_actor::sleep_for(10);
47
48   XBT_INFO("powering on %s", host->get_cname());
49   host->turn_on();
50   simgrid::s4u::this_actor::sleep_for(200);
51 }
52
53 int main(int argc, char* argv[])
54 {
55   simgrid::s4u::Engine e(&argc, argv);
56   e.load_platform(argv[1]);
57
58   simgrid::s4u::Actor::create("Autostart", e.host_by_name("Tremblay"), autostart);
59
60   e.run();
61   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
62
63   return 0;
64 }