Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
22c4d24280328834d25945fd96c2c3ac648ac854
[simgrid.git] / examples / s4u / platform-failures / s4u-platform-failures.cpp
1 /* Copyright (c) 2007-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 #include "xbt/str.h"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
10
11 static int master(int argc, char* argv[])
12 {
13   xbt_assert(argc == 5, "Expecting one parameter");
14
15   simgrid::s4u::MailboxPtr mailbox;
16   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");
17   double comp_size     = xbt_str_parse_double(argv[2], "Invalid computational size: %s");
18   double comm_size     = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
19   long workers_count   = xbt_str_parse_int(argv[4], "Invalid amount of workers: %s");
20
21   XBT_INFO("Got %ld workers and %ld tasks to process", workers_count, number_of_tasks);
22
23   for (int i = 0; i < number_of_tasks; i++) {
24     mailbox         = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i % workers_count));
25     double* payload = new double(comp_size);
26     try {
27       XBT_INFO("Send a message to %s", mailbox->get_cname());
28       mailbox->put(payload, comm_size, 10.0);
29       XBT_INFO("Send to %s completed", mailbox->get_cname());
30     } catch (xbt_ex& e) {
31       switch (e.category) {
32         case host_error:
33           XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!");
34           return -1;
35           break;
36         case network_error:
37           XBT_INFO("Mmh. Something went wrong with '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
38           break;
39         case timeout_error:
40           XBT_INFO("Mmh. Got timeouted while speaking to '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
41           break;
42         default:
43           xbt_die("Unexpected behavior");
44       }
45       delete payload;
46     }
47   }
48
49   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
50   for (int i = 0; i < workers_count; i++) {
51     /* - Eventually tell all the workers to stop by sending a "finalize" task */
52     mailbox         = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(i));
53     double* payload = new double(-1.0);
54     try {
55       mailbox->put(payload, 0, 1.0);
56     } catch (xbt_ex& e) {
57       delete payload;
58       switch (e.category) {
59         case host_error:
60           XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!");
61           break;
62         case network_error:
63           XBT_INFO("Mmh. Something went wrong with '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
64           break;
65         case timeout_error:
66           XBT_INFO("Mmh. Got timeouted while speaking to '%s'. Nevermind. Let's keep going!", mailbox->get_cname());
67           break;
68         default:
69           xbt_die("Unexpected behavior");
70       }
71     }
72   }
73
74   XBT_INFO("Goodbye now!");
75   return 0;
76 }
77
78 static int worker(int argc, char* argv[])
79 {
80   xbt_assert(argc == 2, "Expecting one parameter");
81   long id                          = xbt_str_parse_int(argv[1], "Invalid argument %s");
82   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::by_name(std::string("worker-") + std::to_string(id));
83   double* payload                  = nullptr;
84   double comp_size                 = -1;
85   while (1) {
86     try {
87       XBT_INFO("Waiting a message on %s", mailbox->get_cname());
88       payload   = static_cast<double*>(mailbox->get());
89       comp_size = *payload;
90       xbt_assert(payload != nullptr, "mailbox->get() failed");
91       if (comp_size < 0) { /* - Exit when -1.0 is received */
92         XBT_INFO("I'm done. See you!");
93         delete payload;
94         break;
95       }
96       /*  - Otherwise, process the task */
97       try {
98         XBT_INFO("Start execution...");
99         simgrid::s4u::this_actor::execute(comp_size);
100         XBT_INFO("Execution complete.");
101         delete payload;
102       } catch (xbt_ex& e) {
103         if (e.category == host_error) {
104           XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!");
105           delete payload;
106           return -1;
107         } else
108           xbt_die("Unexpected behavior");
109       }
110     } catch (xbt_ex& e) {
111       switch (e.category) {
112         case host_error:
113           XBT_INFO("Gloups. The cpu on which I'm running just turned off!. See you!");
114           delete payload;
115           return -1;
116         case network_error:
117           XBT_INFO("Mmh. Something went wrong. Nevermind. Let's keep going!");
118           break;
119         default:
120           xbt_die("Unexpected behavior");
121       }
122     }
123   }
124   return 0;
125 }
126
127 int main(int argc, char* argv[])
128 {
129   simgrid::s4u::Engine e(&argc, argv);
130   e.load_platform(argv[1]);
131   e.register_function("master", master);
132   e.register_function("worker", worker);
133   e.load_deployment(argv[2]);
134
135   e.run();
136
137   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
138   return 0;
139 }