]> AND Private Git Repository - loba.git/blob - main.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Adding extract-all and extract-all-inv bash scripts that create latex tabular data...
[loba.git] / main.cpp
1 #include <cerrno>
2 #include <cstring>              // strchr
3 #include <iostream>
4 #include <signal.h>
5 #include <stdexcept>
6 #include <msg/msg.h>
7 #include <xbt/log.h>
8
9 // Creates log categories
10 XBT_LOG_NEW_CATEGORY(simu, "Root of simulation messages");
11 XBT_LOG_NEW_SUBCATEGORY(main, simu, "Messages from global infrastructure");
12 XBT_LOG_NEW_SUBCATEGORY(depl, main, "Messages from auto deployment");
13 XBT_LOG_NEW_SUBCATEGORY(comm, simu, "Messages from asynchronous pipes");
14 XBT_LOG_NEW_SUBCATEGORY(proc, simu, "Messages from base process class");
15 XBT_LOG_NEW_SUBCATEGORY(loba, simu, "Messages from load-balancer");
16 XBT_LOG_NEW_SUBCATEGORY(thrd, simu, "Messages from thread wrapper class");
17
18 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
19
20 #include "deployment.h"
21 #include "hostdata.h"
22 #include "misc.h"
23 #include "options.h"
24 #include "process.h"
25 #include "statistics.h"
26 #include "synchro.h"
27 #include "timer.h"
28 #include "tracing.h"
29 #include "version.h"
30
31 #define DATA_DESCR_WIDTH 37
32
33 namespace {
34     // Failure exit status
35     enum {
36         EXIT_NO_FAILURE    = 0x00,  // no error
37         EXIT_FAILURE_ARGS  = 0x01,  // bad arguments
38         EXIT_FAILURE_INIT  = 0x02,  // failed to initialize simulator
39         EXIT_FAILURE_SIMU  = 0x04,  // simulation failed
40         EXIT_FAILURE_CLEAN = 0x08,  // error at cleanup
41         EXIT_FAILURE_OTHER = 0x10,  // other error
42     };
43
44     // Cannot be globally initialized...
45     mutex_t* proc_mutex;
46     condition_t* proc_cond;
47     unsigned proc_counter = 0;
48
49     statistics loads;
50     statistics comps;
51     statistics data_send_amount;
52     statistics data_recv_amount;
53     statistics data_send_count;
54     statistics data_recv_count;
55     statistics ctrl_send_amount;
56     statistics ctrl_recv_amount;
57     statistics ctrl_send_count;
58     statistics ctrl_recv_count;
59
60 }
61
62 static int simulation_main(int argc, char* argv[])
63 {
64     int result;
65     process* proc;
66     try {
67         proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
68
69         proc_mutex->acquire();
70         ++proc_counter;
71         proc_mutex->release();
72
73         result = proc->run();
74
75         proc_mutex->acquire();
76         loads.push(proc->get_real_load());
77         comps.push(proc->get_comp_amount());
78         data_send_amount.push(proc->get_data_send_amount());
79         data_recv_amount.push(proc->get_data_recv_amount());
80         data_send_count.push(proc->get_data_send_count());
81         data_recv_count.push(proc->get_data_recv_count());
82         ctrl_send_amount.push(proc->get_ctrl_send_amount());
83         ctrl_recv_amount.push(proc->get_ctrl_recv_amount());
84         ctrl_send_count.push(proc->get_ctrl_send_count());
85         ctrl_recv_count.push(proc->get_ctrl_recv_count());
86
87         // Synchronization barrier...
88         // The goal is to circumvent a limitation in SimGrid (at least
89         // in version 3.5): a process must be alive when another one
90         // destroys a communication they had together.
91
92         --proc_counter;
93         proc_cond->broadcast();
94         while (proc_counter > 0)
95             proc_cond->wait(*proc_mutex);
96         proc_mutex->release();
97
98         delete proc;
99     }
100     catch (const std::invalid_argument& e) {
101         THROWF(arg_error, 0, "%s", e.what());
102     }
103     catch (const std::exception& e) {
104         THROWF(0, 0, "%s", e.what());
105     }
106     return result;
107 }
108
109 static void check_for_lost_load()
110 {
111     double total_init = process::get_total_load_init();
112     double total_exit = process::get_total_load_exit();
113     double lost = total_init - total_exit;
114     double lost_ratio = 100.0 * lost / total_init;
115     if (lost_ratio < -opt::load_ratio_threshold)
116         XBT_ERROR("Gained load at exit! %g (%g%%) <============",
117                   -lost, -lost_ratio);
118     else if (lost_ratio > opt::load_ratio_threshold)
119         XBT_ERROR("Lost load at exit! %g (%g%%) <============",
120                   lost, lost_ratio);
121     else
122         XBT_VERB("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);
123
124     double total_running = process::get_total_load_running();
125     double running_ratio = 100.0 * total_running / total_init;
126     if (running_ratio < -opt::load_ratio_threshold)
127         XBT_ERROR("Negative running load at exit! %g (%g%%) <============",
128                   total_running, running_ratio);
129     else if (running_ratio > opt::load_ratio_threshold)
130         XBT_ERROR("Remaining running load at exit! %g (%g%%) <============",
131                   total_running, running_ratio);
132     else
133         XBT_VERB("Running load at exit looks good: %g (%g%%)",
134                  total_running, running_ratio);
135 }
136
137 static void signal_handler(int /*sig*/)
138 {
139     if (!opt::exit_request) {
140         XBT_CRITICAL(">>>>>>>>>>"
141                      " caught CTRL-C: global exit requested "
142                      "<<<<<<<<<<");
143         opt::exit_request = true;
144     }
145 }
146
147 static void install_signal_handler()
148 {
149     struct sigaction action;
150     action.sa_handler = signal_handler;
151     sigemptyset(&action.sa_mask);
152     action.sa_flags = SA_RESTART;
153     if (sigaction (SIGINT, &action, NULL) == -1) {
154         std::cerr << "sigaction: " << strerror(errno) << "\n";
155         exit(EXIT_FAILURE_OTHER);
156     }
157 }
158
159 #define PR_STATS(descr, st)                                             \
160     XBT_INFO("| %.*s: %g / %g / %g", DATA_DESCR_WIDTH,                  \
161              descr " (total/avg./stddev)................................", \
162              st.get_sum(), st.get_mean(), st.get_stddev())
163
164 int main(int argc, char* argv[])
165 {
166     // Note: variables used after THROW must be declared as volatile.
167     volatile int exit_status = 0;   // global exit status
168     volatile double simulated_time = -1.0;
169     timestamp elapsed_time(timestamp::wallclock_time);
170     timestamp simulation_time(timestamp::cpu_time);
171     xbt_ex_t ex;
172     MSG_error_t res;
173
174     elapsed_time.start();
175     simulation_time.start();
176
177     // Set default logging parameters
178     bool do_log_control_set = true;
179     for (int i = 1 ; do_log_control_set && i < argc ; i++)
180         do_log_control_set = !(argv[i][0] == '-' && argv[i][1] != '-' &&
181                                strchr(argv[i] + 1, 'v'));
182     if (do_log_control_set) {
183         // xbt_log_control_set("simu.thres:verbose");
184         xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
185         xbt_log_control_set("main.fmt:'[%c/%p] %m%n'");
186     }
187
188     // Initialize some MSG internal data.
189     // Note: MSG_global_init() may throw an exception, but it seems
190     // impossible to catch it correctly :-(
191     MSG_global_init(&argc, argv);
192     install_signal_handler();
193
194     // Parse global parameters
195     bool parse_res = opt::parse_args(&argc, argv);
196     if (!parse_res
197         || opt::version_requested || opt::help_requested) {
198         if (opt::version_requested)
199             std::clog << version::name << " (" << opt::program_name << ")"
200                       << " version " << version::num << "\n"
201                       << version::copyright << "\n"
202                 "Compiled on " << version::date << "\n\n";
203         if (!parse_res || opt::help_requested)
204             opt::usage();
205         MSG_clean();
206         exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
207     }
208     XBT_INFO("%s v%s (%s)", opt::program_name.c_str(), version::num.c_str(),
209           version::date.c_str());
210     opt::print();
211
212     TRY {
213         exit_status = EXIT_FAILURE_INIT; // =====
214
215         // Register the default function of an agent
216         // MSG_function_register("simulation_main", simulation_main);
217         MSG_function_register_default(simulation_main);
218
219         // Create the platform and the application.
220         XBT_DEBUG("Loading platform file...");
221         MSG_create_environment(opt::platform_file.c_str());
222         XBT_DEBUG("Creating hostdata...");
223         hostdata::create();
224         XBT_DEBUG("Deploying processes...");
225         if (opt::auto_depl::enabled) {
226             if (!opt::auto_depl::nhosts)
227                 opt::auto_depl::nhosts = hostdata::size();
228             if (opt::auto_depl::nhosts > hostdata::size()) {
229                 XBT_WARN("%u hosts is too much: limiting to %zu",
230                          opt::auto_depl::nhosts, hostdata::size());
231                 opt::auto_depl::nhosts = hostdata::size();
232             }
233             if (!opt::auto_depl::load)
234                 opt::auto_depl::load = opt::auto_depl::nhosts;
235             MY_launch_application(); // it is already opt::* aware...
236         } else {
237             MSG_launch_application(opt::deployment_file.c_str());
238         }
239
240         // Register tracing categories
241         TRACE_category_with_color(TRACE_CAT_COMP, TRACE_COLOR_COMP);
242         TRACE_category_with_color(TRACE_CAT_CTRL, TRACE_COLOR_CTRL);
243         TRACE_category_with_color(TRACE_CAT_DATA, TRACE_COLOR_DATA);
244
245         exit_status = EXIT_FAILURE_SIMU; // =====
246
247         proc_mutex = new mutex_t();
248         proc_cond = new condition_t();
249
250         // Launch the MSG simulation.
251         XBT_INFO("Starting simulation at %f...", MSG_get_clock());
252         res = MSG_main();
253         simulated_time = MSG_get_clock();
254         XBT_INFO("Simulation ended at %f.", simulated_time);
255
256         delete proc_cond;
257         delete proc_mutex;
258
259         if (res != MSG_OK)
260             THROWF(0, 0, "MSG_main() failed with status %#x", res);
261
262         exit_status = EXIT_NO_FAILURE; // =====
263     }
264     CATCH (ex) {
265         int len = strlen(ex.msg);
266         if (len > 0 && ex.msg[len - 1] == '\n')
267             ex.msg[len - 1] = '\0'; // strip the ending '\n'
268         XBT_ERROR("%s", ex.msg);
269         XBT_DEBUG("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
270         xbt_ex_free(ex);
271     }
272
273     // Clean the MSG simulation.
274     hostdata::destroy();
275     res = MSG_clean();
276     if (res != MSG_OK) {
277         XBT_ERROR("MSG_clean() failed with status %#x", res);
278         exit_status |= EXIT_FAILURE_CLEAN;
279     }
280
281     // Report final simulation status.
282     if (simulated_time >= 0.0) {
283         simulation_time.stop();
284         elapsed_time.stop();
285         check_for_lost_load();
286         XBT_INFO(",----[ Results ]");
287         PR_STATS("Load", loads);
288         PR_STATS("Computation", comps);
289         PR_STATS("Data send amount", data_send_amount);
290         PR_STATS("Data recv amount", data_recv_amount);
291         PR_STATS("Data send count", data_send_count);
292         PR_STATS("Data recv count", data_recv_count);
293         PR_STATS("Ctrl send amount", ctrl_send_amount);
294         PR_STATS("Ctrl recv amount", ctrl_recv_amount);
295         PR_STATS("Ctrl send count", ctrl_send_count);
296         PR_STATS("Ctrl recv count", ctrl_recv_count);
297         XBT_INFO("| %.*s: %g", DATA_DESCR_WIDTH,
298                  "Total simulated time..................................",
299                  simulated_time);
300         XBT_INFO("| %.*s: %g", DATA_DESCR_WIDTH,
301                  "Total simulation time.................................",
302                  simulation_time.duration());
303         XBT_INFO("| %.*s: %g", DATA_DESCR_WIDTH,
304                  "Elapsed (wall clock) time.............................",
305                  elapsed_time.duration());
306         XBT_INFO("`----");
307     }
308     if (exit_status)
309         XBT_ERROR("Simulation failed (%#x).", exit_status);
310     else
311         XBT_INFO("Simulation succeeded.");
312
313     return exit_status;
314 }
315
316 // Local variables:
317 // mode: c++
318 // End: