Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill some dead code
[simgrid.git] / examples / s4u / platform-failures / s4u-platform-failures.cpp
1 /* Copyright (c) 2007-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 /* This example shows how to work with the state profile of an host or a link,
7  * specifying when the resource must be turned on or off.
8  *
9  * To set such a profile, the first way is to use a file in the XML, while the second is to use the programmatic
10  * interface. Once this profile is in place, the resource will automatically be turned on and off.
11  *
12  * The actors running on an host that is turned off will receive a simgrid::HostFailureException. Since we specified
13  * on_failure="RESTART" for each actors in the XML file, they will be automatically restarted when the host starts
14  * again.
15  *
16  * Communications using failed links will .. fail.
17  */
18
19 #include "simgrid/s4u.hpp"
20 #include "xbt/str.h"
21
22 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
23
24 static int master(int argc, char* argv[])
25 {
26   xbt_assert(argc == 5, "Expecting one parameter");
27
28   simgrid::s4u::Mailbox* mailbox;
29   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");
30   double comp_size     = xbt_str_parse_double(argv[2], "Invalid computational size: %s");
31   double comm_size     = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
32   long workers_count   = xbt_str_parse_int(argv[4], "Invalid amount of workers: %s");
33
34   XBT_INFO("Got %ld workers and %ld tasks to process", workers_count, number_of_tasks);
35
36   for (int i = 0; i < number_of_tasks; i++) {
37     mailbox         = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i % workers_count));
38     double* payload = new double(comp_size);
39     try {
40       XBT_INFO("Send a message to %s", mailbox->get_cname());
41       mailbox->put(payload, comm_size, 10.0);
42       XBT_INFO("Send to %s completed", mailbox->get_cname());
43     } catch (simgrid::TimeoutError& e) {
44       delete payload;
45       XBT_INFO("Mmh. Got timeouted while speaking to '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
46     } catch (xbt_ex& e) {
47       if (e.category != network_error)
48         xbt_die("Unexpected behavior");
49       XBT_INFO("Mmh. The communication with '%s' failed. Nevermind. Let's keep going!", mailbox->get_cname());
50       delete payload;
51     }
52   }
53
54   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
55   for (int i = 0; i < workers_count; i++) {
56     /* - Eventually tell all the workers to stop by sending a "finalize" task */
57     mailbox         = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i));
58     double* payload = new double(-1.0);
59     try {
60       mailbox->put(payload, 0, 1.0);
61     } catch (simgrid::TimeoutError& e) {
62       delete payload;
63       XBT_INFO("Mmh. Got timeouted while speaking to '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
64     } catch (xbt_ex& e) {
65       delete payload;
66       if (e.category != network_error)
67         xbt_die("Unexpected behavior");
68       XBT_INFO("Mmh. Something went wrong with '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
69     }
70   }
71
72   XBT_INFO("Goodbye now!");
73   return 0;
74 }
75
76 static int worker(int argc, char* argv[])
77 {
78   xbt_assert(argc == 2, "Expecting one parameter");
79   long id                          = xbt_str_parse_int(argv[1], "Invalid argument %s");
80   simgrid::s4u::Mailbox* mailbox   = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(id));
81   double* payload                  = nullptr;
82   double comp_size                 = -1;
83   while (1) {
84     try {
85       XBT_INFO("Waiting a message on %s", mailbox->get_cname());
86       payload   = static_cast<double*>(mailbox->get());
87       xbt_assert(payload != nullptr, "mailbox->get() failed");
88       comp_size = *payload;
89       delete payload;
90       if (comp_size < 0) { /* - Exit when -1.0 is received */
91         XBT_INFO("I'm done. See you!");
92         break;
93       }
94       /*  - Otherwise, process the task */
95       XBT_INFO("Start execution...");
96       simgrid::s4u::this_actor::execute(comp_size);
97       XBT_INFO("Execution complete.");
98     } catch (xbt_ex& e) {
99       if (e.category != network_error)
100         xbt_die("Unexpected behavior. Category: %s", xbt_ex_catname(e.category));
101       XBT_INFO("Mmh. Something went wrong. Nevermind. Let's keep going!");
102     }
103   }
104   return 0;
105 }
106
107 int main(int argc, char* argv[])
108 {
109   simgrid::s4u::Engine e(&argc, argv);
110   e.load_platform(argv[1]);
111   e.register_function("master", master);
112   e.register_function("worker", worker);
113   e.load_deployment(argv[2]);
114
115   e.run();
116
117   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
118   return 0;
119 }