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

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