Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sleep activities throw exception on host failure
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
1 /* Copyright (c) 2017-2018. 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 autostart()
18 {
19   simgrid::s4u::Host* host = simgrid::s4u::Host::by_name("Fafard");
20   XBT_INFO("starting a dummy process on %s ", host->get_cname());
21
22   simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy);
23   dummy_actor->set_auto_restart(true);
24
25   simgrid::s4u::this_actor::sleep_for(50);
26
27   XBT_INFO("powering off %s", host->get_cname());
28   host->turn_off();
29
30   simgrid::s4u::this_actor::sleep_for(10);
31
32   XBT_INFO("powering on %s", host->get_cname());
33   host->turn_on();
34   simgrid::s4u::this_actor::sleep_for(200);
35 }
36
37 int main(int argc, char* argv[])
38 {
39   simgrid::s4u::Engine e(&argc, argv);
40   e.load_platform(argv[1]);
41
42   simgrid::s4u::Actor::create("Autostart", simgrid::s4u::Host::by_name("Tremblay"), autostart);
43
44   e.run();
45   XBT_INFO("Simulation time %g", e.get_clock());
46
47   return 0;
48 }