Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[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   auto* payload = new std::string("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   delete payload;
37
38   XBT_INFO("  TX done");
39 }
40
41 static void commRX()
42 {
43   XBT_INFO("  Start RX");
44   try {
45     auto payload = simgrid::s4u::Mailbox::by_name("comm")->get_unique<std::string>();
46     XBT_INFO("  Receive message: %s", payload->c_str());
47   } catch (const simgrid::HostFailureException&) {
48     XBT_INFO("  Receive message: HOST_FAILURE");
49   } catch (const simgrid::NetworkFailureException&) {
50     XBT_INFO("  Receive message: TRANSFER_FAILURE");
51   }
52
53   XBT_INFO("  RX Done");
54 }
55
56 static void test_launcher(int test_number)
57 {
58   simgrid::s4u::Host* jupiter = simgrid::s4u::Host::by_name("Jupiter");
59   simgrid::s4u::ActorPtr daemon;
60   simgrid::s4u::VirtualMachine* vm0 = nullptr;
61
62   switch (test_number) {
63     case 1:
64       // Create a process running a simple task on a host and turn the host off during the execution of the actor.
65       XBT_INFO("Test 1:");
66       XBT_INFO("  Create an actor on Jupiter");
67       simgrid::s4u::Actor::create("actor_daemon", jupiter, actor_daemon);
68       simgrid::s4u::this_actor::sleep_for(3);
69       XBT_INFO("  Turn off Jupiter");
70       jupiter->turn_off();
71       simgrid::s4u::this_actor::sleep_for(10);
72       XBT_INFO("Test 1 seems ok, cool !(#Actors: %zu, it should be 1; #tasks: %d)",
73                simgrid::s4u::Engine::get_instance()->get_actor_count(), tasks_done);
74       break;
75     case 2:
76       // Create an actorthat on a host that is turned off (this is not allowed)
77       XBT_INFO("Test 2:");
78       XBT_INFO("  Turn off Jupiter");
79       // adsein: Jupiter is already off, hence nothing should happen
80       // adsein: This can be one additional test, to check that you cannot shutdown twice a host
81       jupiter->turn_off();
82       try {
83         simgrid::s4u::Actor::create("actor_daemon", jupiter, actor_daemon);
84         simgrid::s4u::this_actor::sleep_for(10);
85         XBT_INFO("  Test 2 does crash as it should. This message will not be displayed.");
86       } catch (const simgrid::HostFailureException&) {
87         xbt_die("Could not launch a new actor on failed host %s.", jupiter->get_cname());
88       }
89       break;
90     case 3:
91       // Create an actor running successive sleeps on a host and turn the host off during the execution of the actor.
92       xbt_die("Test 3 is superseded by activity-lifecycle");
93       break;
94     case 4:
95       XBT_INFO("Test 4 (turn off src during a communication) : Create an actor/task to make a communication between "
96                "Jupiter and Tremblay and turn off Jupiter during the communication");
97       jupiter->turn_on();
98       simgrid::s4u::this_actor::sleep_for(10);
99       simgrid::s4u::Actor::create("commRX", simgrid::s4u::Host::by_name("Tremblay"), commRX);
100       simgrid::s4u::Actor::create("commTX", jupiter, commTX);
101       XBT_INFO("  number of actors: %zu", simgrid::s4u::Engine::get_instance()->get_actor_count());
102       simgrid::s4u::this_actor::sleep_for(10);
103       XBT_INFO("  Turn Jupiter off");
104       jupiter->turn_off();
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       XBT_INFO("Test 5 seems ok (number of actors: %zu, it should be 2)",
121                simgrid::s4u::Engine::get_instance()->get_actor_count());
122       break;
123     case 6:
124       XBT_INFO("Test 6: Turn on Jupiter, assign a VM on Jupiter, launch an actor inside the VM, and turn off the node");
125
126       // Create VM0
127       vm0 = jupiter->create_vm("vm0", 1);
128       vm0->start();
129
130       daemon = simgrid::s4u::Actor::create("actor_daemon", vm0, actor_daemon);
131       simgrid::s4u::Actor::create("actor_daemonJUPI", jupiter, actor_daemon);
132
133       daemon->suspend();
134       vm0->set_bound(90);
135       daemon->resume();
136
137       simgrid::s4u::this_actor::sleep_for(10);
138
139       XBT_INFO("  Turn Jupiter off");
140       jupiter->turn_off();
141       XBT_INFO("  Shutdown vm0");
142       vm0->shutdown();
143       XBT_INFO("  Destroy vm0");
144       vm0->destroy();
145       XBT_INFO("Test 6 is also weird: when the node Jupiter is turned off once again, the VM and its daemon are not "
146                "killed. However, the issue regarding the shutdown of hosted VMs can be seen a feature not a bug ;)");
147       break;
148     default:
149       xbt_die("Unknown test case.");
150   }
151
152   XBT_INFO("  Test done. See you!");
153 }
154
155 int main(int argc, char* argv[])
156 {
157   simgrid::s4u::Engine e(&argc, argv);
158   xbt_assert(argc == 3, "Usage: %s platform_file test_number\n\tExample: %s platform.xml 1\n", argv[0], argv[0]);
159
160   e.load_platform(argv[1]);
161
162   simgrid::s4u::Actor::create("test_launcher", e.host_by_name("Tremblay"), test_launcher, std::stoi(argv[2]));
163
164   e.run();
165
166   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
167
168   return 0;
169 }