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

Private GIT Repository
d7d9963ad1792894e334f0ce1668361b6546b057
[loba.git] / main.cpp
1 #include <cstring>
2 #include <iostream>
3 #include <stdexcept>
4 #include <msg/msg.h>
5 #include <xbt/log.h>
6
7 // Creates log categories
8 XBT_LOG_NEW_CATEGORY(simu, "Root of simulation messages");
9 XBT_LOG_NEW_SUBCATEGORY(main, simu, "Messages from global infrastructure");
10 XBT_LOG_NEW_SUBCATEGORY(depl, main, "Messages from auto deployment");
11 XBT_LOG_NEW_SUBCATEGORY(comm, simu, "Messages from asynchronous pipes");
12 XBT_LOG_NEW_SUBCATEGORY(proc, simu, "Messages from base process class");
13 XBT_LOG_NEW_SUBCATEGORY(loba, simu, "Messages from load-balancer");
14 XBT_LOG_NEW_SUBCATEGORY(thrd, simu, "Messages from thread wrapper class");
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
17
18 #include "deployment.h"
19 #include "hostdata.h"
20 #include "misc.h"
21 #include "options.h"
22 #include "process.h"
23 #include "statistics.h"
24 #include "synchro.h"
25 #include "timer.h"
26 #include "tracing.h"
27 #include "version.h"
28
29 namespace {
30     // Failure exit status
31     enum {
32         EXIT_NO_FAILURE    = 0x00,  // no error
33         EXIT_FAILURE_ARGS  = 0x01,  // bad arguments
34         EXIT_FAILURE_INIT  = 0x02,  // failed to initialize simulator
35         EXIT_FAILURE_SIMU  = 0x04,  // simulation failed
36         EXIT_FAILURE_CLEAN = 0x08,  // error at cleanup
37     };
38
39     mutex_t proc_mutex;
40     condition_t proc_cond;
41     unsigned proc_counter = 0;
42
43     statistics comps;
44     statistics loads;
45
46 }
47
48 static int simulation_main(int argc, char* argv[])
49 {
50     int result;
51     process* proc;
52     try {
53         proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
54
55         proc_mutex.acquire();
56         ++proc_counter;
57         proc_mutex.release();
58
59         result = proc->run();
60
61         proc_mutex.acquire();
62         comps.push(proc->get_comp());
63         loads.push(proc->get_real_load());
64
65         // Synchronization barrier...
66         // The goal is to circumvent a limitation in SimGrid (at least
67         // in version 3.5): a process must be alive when another one
68         // destroys a communication they had together.
69
70         --proc_counter;
71         proc_cond.broadcast();
72         while (proc_counter > 0)
73             proc_cond.wait(proc_mutex);
74         proc_mutex.release();
75
76         delete proc;
77     }
78     catch (const std::invalid_argument& e) {
79         THROW1(arg_error, 0, "%s", e.what());
80     }
81     catch (const std::exception& e) {
82         THROW1(0, 0, "%s", e.what());
83     }
84     return result;
85 }
86
87 static void check_for_lost_load()
88 {
89     double total_init = process::get_total_load_init();
90     double total_exit = process::get_total_load_exit();
91     double lost = total_init - total_exit;
92     double lost_ratio = 100.0 * lost / total_init;
93     if (lost_ratio < -opt::load_ratio_threshold)
94         XBT_ERROR("Gained load at exit! %g (%g%%) <============",
95                   -lost, -lost_ratio);
96     else if (lost_ratio > opt::load_ratio_threshold)
97         XBT_ERROR("Lost load at exit! %g (%g%%) <============",
98                   lost, lost_ratio);
99     else
100         XBT_VERB("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);
101
102     double total_running = process::get_total_load_running();
103     double running_ratio = 100.0 * total_running / total_init;
104     if (running_ratio < -opt::load_ratio_threshold)
105         XBT_ERROR("Negative running load at exit! %g (%g%%) <============",
106                   total_running, running_ratio);
107     else if (running_ratio > opt::load_ratio_threshold)
108         XBT_ERROR("Remaining running load at exit! %g (%g%%) <============",
109                   total_running, running_ratio);
110     else
111         XBT_VERB("Running load at exit looks good: %g (%g%%)",
112                  total_running, running_ratio);
113 }
114
115 #define PR_STATS(descr, st)                                             \
116     XBT_INFO("| %.*s: %g / %g / %g", 39,                                \
117              descr " total/avg./stddev. at exit.........................", \
118              st.get_sum(), st.get_mean(), st.get_stddev())
119
120 int main(int argc, char* argv[])
121 {
122     // Note: variables used after THROW must be declared as volatile.
123     volatile int exit_status = 0;   // global exit status
124     volatile double simulated_time = -1.0;
125     timestamp simulation_time;
126     xbt_ex_t ex;
127     MSG_error_t res;
128
129     simulation_time.start();
130
131     // Set default logging parameters
132     bool do_log_control_set = true;
133     for (int i = 1 ; do_log_control_set && i < argc ; i++)
134         do_log_control_set = !(argv[i][0] == '-' && argv[i][1] != '-' &&
135                                strchr(argv[i] + 1, 'v'));
136     if (do_log_control_set) {
137         // xbt_log_control_set("simu.thres:verbose");
138         xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
139         xbt_log_control_set("main.fmt:'[%c/%p] %m%n'");
140     }
141
142     // Initialize some MSG internal data.
143     // Note: MSG_global_init() may throw an exception, but it seems
144     // impossible to catch it correctly :-(
145     MSG_global_init(&argc, argv);
146
147     // Parse global parameters
148     bool parse_res = opt::parse_args(&argc, argv);
149     if (!parse_res
150         || opt::version_requested || opt::help_requested) {
151         if (opt::version_requested)
152             std::clog << version::name << " (" << opt::program_name << ")"
153                       << " version " << version::num << "\n"
154                       << version::copyright << "\n"
155                 "Compiled on " << version::date << "\n\n";
156         if (!parse_res || opt::help_requested)
157             opt::usage();
158         MSG_clean();
159         exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
160     }
161     XBT_INFO("%s v%s (%s)", opt::program_name.c_str(), version::num.c_str(),
162           version::date.c_str());
163     opt::print();
164
165     TRY {
166         exit_status = EXIT_FAILURE_INIT; // =====
167
168         // Register the default function of an agent
169         // MSG_function_register("simulation_main", simulation_main);
170         MSG_function_register_default(simulation_main);
171
172         // Create the platform and the application.
173         MSG_create_environment(opt::platform_file.c_str());
174         hostdata::create();
175         if (opt::auto_depl::enabled) {
176             if (!opt::auto_depl::nhosts)
177                 opt::auto_depl::nhosts = hostdata::size();
178             if (opt::auto_depl::nhosts > hostdata::size()) {
179                 XBT_WARN("%u hosts is too much: limiting to %zu",
180                          opt::auto_depl::nhosts, hostdata::size());
181                 opt::auto_depl::nhosts = hostdata::size();
182             }
183             if (!opt::auto_depl::load)
184                 opt::auto_depl::load = opt::auto_depl::nhosts;
185             MY_launch_application(); // it is already opt::* aware...
186         } else {
187             MSG_launch_application(opt::deployment_file.c_str());
188         }
189
190         // Register tracing categories
191         TRACE_category(TRACE_CAT_COMP);
192         TRACE_category(TRACE_CAT_CTRL);
193         TRACE_category(TRACE_CAT_DATA);
194
195         exit_status = EXIT_FAILURE_SIMU; // =====
196
197         // Launch the MSG simulation.
198         XBT_INFO("Starting simulation at %f...", MSG_get_clock());
199         res = MSG_main();
200         simulated_time = MSG_get_clock();
201         XBT_INFO("Simulation ended at %f.", simulated_time);
202
203         if (res != MSG_OK)
204             THROW1(0, 0, "MSG_main() failed with status %#x", res);
205
206         exit_status = EXIT_NO_FAILURE; // =====
207     }
208     CATCH (ex) {
209         int len = strlen(ex.msg);
210         if (len > 0 && ex.msg[len - 1] == '\n')
211             ex.msg[len - 1] = '\0'; // strip the ending '\n'
212         XBT_ERROR("%s", ex.msg);
213         XBT_DEBUG("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
214         xbt_ex_free(ex);
215     }
216
217     // Clean the MSG simulation.
218     hostdata::destroy();
219     res = MSG_clean();
220     if (res != MSG_OK) {
221         XBT_ERROR("MSG_clean() failed with status %#x", res);
222         exit_status |= EXIT_FAILURE_CLEAN;
223     }
224
225     // Report final simulation status.
226     if (simulated_time >= 0.0) {
227         simulation_time.stop();
228         check_for_lost_load();
229         XBT_INFO(",----[ Results ]");
230         PR_STATS("Load", loads);
231         PR_STATS("Computation", comps);
232         XBT_INFO("| Total simulated time...................: %g",
233                  simulated_time);
234         XBT_INFO("| Total simulation time..................: %g",
235                  simulation_time.duration());
236         XBT_INFO("`----");
237     }
238     if (exit_status)
239         XBT_ERROR("Simulation failed (%#x).", exit_status);
240     else
241         XBT_INFO("Simulation succeeded.");
242
243     return exit_status;
244 }
245
246 // Local variables:
247 // mode: c++
248 // End: