Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Better split between the cleanups from self and the ones from the kernel (ie on maest...
[simgrid.git] / teshsuite / s4u / host-on-off-actors / host-on-off-actors.cpp
1 /* Copyright (c) 2010-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/s4u.hpp"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
10
11 int tasks_done = 0;
12
13 XBT_ATTRIB_NORETURN static void actor_daemon()
14 {
15   const simgrid::s4u::Host* host = simgrid::s4u::Host::current();
16   XBT_INFO("  Start daemon on %s (%f)", host->get_cname(), host->get_speed());
17   for (;;) {
18     XBT_INFO("  Execute daemon");
19     simgrid::s4u::this_actor::execute(host->get_speed());
20     tasks_done++;
21   }
22   xbt_die("  daemon done. See you!");
23 }
24
25 static void commTX()
26 {
27   XBT_INFO("  Start TX");
28   static std::string payload = "COMM";
29   simgrid::s4u::Mailbox::by_name("comm")->put_init(&payload, 100000000)->detach();
30   // We should wait a bit (if not the process will end before the communication, hence an exception on the other side).
31   try {
32     simgrid::s4u::this_actor::sleep_for(30);
33   } catch (const simgrid::HostFailureException&) {
34     XBT_INFO("The host has died ... as expected.");
35   }
36
37   XBT_INFO("  TX done");
38 }
39
40 static void commRX()
41 {
42   XBT_INFO("  Start RX");
43   try {
44     auto payload = simgrid::s4u::Mailbox::by_name("comm")->get<std::string>();
45     XBT_INFO("  Receive message: %s", payload->c_str());
46   } catch (const simgrid::HostFailureException&) {
47     XBT_INFO("  Receive message: HOST_FAILURE");
48   } catch (const simgrid::NetworkFailureException&) {
49     XBT_INFO("  Receive message: TRANSFER_FAILURE");
50   }
51
52   XBT_INFO("  RX Done");
53 }
54
55 static void test_launcher(int test_number)
56 {
57   simgrid::s4u::Host* jupiter = simgrid::s4u::Host::by_name("Jupiter");
58   simgrid::s4u::ActorPtr daemon;
59   simgrid::s4u::VirtualMachine* vm0 = nullptr;
60
61   switch (test_number) {
62     case 1:
63       // Create a process running a simple task on a host and turn the host off during the execution of the actor.
64       XBT_INFO("Test 1:");
65       XBT_INFO("  Create an actor on Jupiter");
66       simgrid::s4u::Actor::create("actor_daemon", jupiter, actor_daemon);
67       simgrid::s4u::this_actor::sleep_for(3);
68       XBT_INFO("  Turn off Jupiter");
69       jupiter->turn_off();
70       simgrid::s4u::this_actor::sleep_for(10);
71       XBT_INFO("Test 1 seems ok, cool !(#Actors: %zu, it should be 1; #tasks: %d)",
72                simgrid::s4u::Engine::get_instance()->get_actor_count(), tasks_done);
73       break;
74     case 2:
75       // Create an actor on an host that is turned off (this is not allowed)
76       XBT_INFO("Test 2:");
77       XBT_INFO("  Turn off Jupiter");
78       // adsein: Jupiter is already off, hence nothing should happen
79       // adsein: This can be one additional test, to check that you cannot shutdown twice a host
80       jupiter->turn_off();
81       try {
82         simgrid::s4u::Actor::create("actor_daemon", jupiter, actor_daemon);
83         simgrid::s4u::this_actor::sleep_for(10);
84         XBT_INFO("  Test 2 does crash as it should. This message will not be displayed.");
85       } catch (const simgrid::HostFailureException&) {
86         xbt_die("Could not launch a new actor on failed host %s.", jupiter->get_cname());
87       }
88       break;
89     case 3:
90       // Create an actor running successive sleeps on a host and turn the host off during the execution of the actor.
91       xbt_die("Test 3 is superseded by activity-lifecycle");
92       break;
93     case 4:
94       XBT_INFO("Test 4 (turn off src during a communication) : Create an actor/task to make a communication between "
95                "Jupiter and Tremblay and turn off Jupiter during the communication");
96       jupiter->turn_on();
97       simgrid::s4u::this_actor::sleep_for(10);
98       simgrid::s4u::Actor::create("commRX", simgrid::s4u::Host::by_name("Tremblay"), commRX);
99       simgrid::s4u::Actor::create("commTX", jupiter, commTX);
100       XBT_INFO("  number of actors: %zu", simgrid::s4u::Engine::get_instance()->get_actor_count());
101       simgrid::s4u::this_actor::sleep_for(10);
102       XBT_INFO("  Turn Jupiter off");
103       jupiter->turn_off();
104       simgrid::s4u::this_actor::sleep_for(1); // Allow some time to the other actors to die
105       XBT_INFO("Test 4 is ok.  (number of actors : %zu, it should be 1 or 2 if RX has not been satisfied)."
106                " An exception is raised when we turn off a node that has an actor sleeping",
107                simgrid::s4u::Engine::get_instance()->get_actor_count());
108       break;
109     case 5:
110       XBT_INFO("Test 5 (turn off dest during a communication : Create an actor/task to make a communication between "
111                "Tremblay and Jupiter and turn off Jupiter during the communication");
112       jupiter->turn_on();
113       simgrid::s4u::this_actor::sleep_for(10);
114       simgrid::s4u::Actor::create("commRX", jupiter, commRX);
115       simgrid::s4u::Actor::create("commTX", simgrid::s4u::Host::by_name("Tremblay"), commTX);
116       XBT_INFO("  number of actors: %zu", simgrid::s4u::Engine::get_instance()->get_actor_count());
117       simgrid::s4u::this_actor::sleep_for(10);
118       XBT_INFO("  Turn Jupiter off");
119       jupiter->turn_off();
120       simgrid::s4u::this_actor::sleep_for(1); // Allow some time to the other actors to die
121       XBT_INFO("Test 5 seems ok (number of actors: %zu, it should be 2)",
122                simgrid::s4u::Engine::get_instance()->get_actor_count());
123       break;
124     case 6:
125       XBT_INFO("Test 6: Turn on Jupiter, assign a VM on Jupiter, launch an actor inside the VM, and turn off the node");
126
127       // Create VM0
128       vm0 = jupiter->create_vm("vm0", 1);
129       vm0->start();
130
131       daemon = simgrid::s4u::Actor::create("actor_daemon", vm0, actor_daemon);
132       simgrid::s4u::Actor::create("actor_daemonJUPI", jupiter, actor_daemon);
133
134       daemon->suspend();
135       vm0->set_bound(90);
136       daemon->resume();
137
138       simgrid::s4u::this_actor::sleep_for(10);
139
140       XBT_INFO("  Turn Jupiter off");
141       jupiter->turn_off();
142       XBT_INFO("  Shutdown vm0");
143       vm0->shutdown();
144       XBT_INFO("  Destroy vm0");
145       vm0->destroy();
146       XBT_INFO("Test 6 is also weird: when the node Jupiter is turned off once again, the VM and its daemon are not "
147                "killed. However, the issue regarding the shutdown of hosted VMs can be seen a feature not a bug ;)");
148       break;
149     default:
150       xbt_die("Unknown test case.");
151   }
152
153   XBT_INFO("  Test done. See you!");
154 }
155
156 int main(int argc, char* argv[])
157 {
158   simgrid::s4u::Engine e(&argc, argv);
159   xbt_assert(argc == 3, "Usage: %s platform_file test_number\n\tExample: %s platform.xml 1\n", argv[0], argv[0]);
160
161   e.load_platform(argv[1]);
162
163   simgrid::s4u::Actor::create("test_launcher", e.host_by_name("Tremblay"), test_launcher, std::stoi(argv[2]));
164
165   e.run();
166
167   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
168
169   return 0;
170 }