Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5f599912a6dfbcb5be5bc407305246a67fa0e139
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
1 /* Copyright (c) 2017-2019. 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   try {
14     simgrid::s4u::this_actor::sleep_for(200);
15     XBT_INFO("I stop");
16   } catch (simgrid::HostFailureException& e) {
17     XBT_DEBUG("The host has died ... as expected. This actor silently stops");
18   }
19 }
20
21 static void autostart()
22 {
23   simgrid::s4u::Host* host = simgrid::s4u::Host::by_name("Fafard");
24   XBT_INFO("starting a dummy process on %s ", host->get_cname());
25
26   simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy);
27   dummy_actor->on_exit([](bool failed) { XBT_INFO("On_exit callback set before autorestart"); });
28   dummy_actor->set_auto_restart(true);
29   dummy_actor->on_exit([](bool failed) { XBT_INFO("On_exit callback set after autorestart"); });
30
31   simgrid::s4u::this_actor::sleep_for(50);
32
33   XBT_INFO("powering off %s", host->get_cname());
34   host->turn_off();
35
36   simgrid::s4u::this_actor::sleep_for(10);
37
38   XBT_INFO("powering on %s", host->get_cname());
39   host->turn_on();
40   simgrid::s4u::this_actor::sleep_for(200);
41 }
42
43 int main(int argc, char* argv[])
44 {
45   simgrid::s4u::Engine e(&argc, argv);
46   e.load_platform(argv[1]);
47
48   simgrid::s4u::Actor::create("Autostart", simgrid::s4u::Host::by_name("Tremblay"), autostart);
49
50   e.run();
51   XBT_INFO("Simulation time %g", e.get_clock());
52
53   return 0;
54 }