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

Private GIT Repository
Use bool for return type of parse_args().
[loba.git] / main.cpp
1 #include <cmath>
2 #include <cstring>
3 #include <iostream>
4 #include <numeric>
5 #include <stdexcept>
6 #include <vector>
7 #include <msg/msg.h>
8 #include <xbt/log.h>
9
10 // Creates log categories
11 XBT_LOG_NEW_CATEGORY(simu, "Root of simulation messages");
12 XBT_LOG_NEW_SUBCATEGORY(main, simu, "Messages from global infrastructure");
13 XBT_LOG_NEW_SUBCATEGORY(depl, main, "Messages from auto deployment");
14 XBT_LOG_NEW_SUBCATEGORY(comm, simu, "Messages from asynchronous pipes");
15 XBT_LOG_NEW_SUBCATEGORY(proc, simu, "Messages from base process class");
16 XBT_LOG_NEW_SUBCATEGORY(loba, simu, "Messages from load-balancer");
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 "timer.h"
26 #include "version.h"
27
28 namespace {
29     // Failure exit status
30     enum {
31         EXIT_NO_FAILURE    = 0x00,  // no error
32         EXIT_FAILURE_ARGS  = 0x01,  // bad arguments
33         EXIT_FAILURE_INIT  = 0x02,  // failed to initialize simulator
34         EXIT_FAILURE_SIMU  = 0x04,  // simulation failed
35         EXIT_FAILURE_CLEAN = 0x08,  // error at cleanup
36     };
37
38     std::vector<double> loads;
39     double load_stddev;
40     double load_avg;
41 }
42
43 static int simulation_main(int argc, char* argv[])
44 {
45     int result;
46     process* proc;
47     try {
48         proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
49         result = proc->run();
50         loads.push_back(proc->get_load());
51         delete proc;
52     }
53     catch (std::invalid_argument& e) {
54         THROW1(arg_error, 0, "%s", e.what());
55     }
56     return result;
57 }
58
59 static void check_for_lost_load()
60 {
61     double total_init = process::get_total_load_init();
62
63     double total_exit = process::get_total_load_exit();
64     double lost = total_init - total_exit;
65     double lost_ratio = 100.0 * lost / total_init;
66     if (lost_ratio < -opt::load_ratio_threshold)
67         CRITICAL2("Gained load at exit! %g (%g%%) <============",
68                   lost, lost_ratio);
69     else if (lost_ratio > opt::load_ratio_threshold)
70         CRITICAL2("Lost load at exit! %g (%g%%) <============",
71                   lost, lost_ratio);
72     else
73         DEBUG2("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);
74
75     double total_running = process::get_total_load_running();
76     double running_ratio = 100.0 * total_running / total_init;
77     if (running_ratio < -opt::load_ratio_threshold)
78         CRITICAL2("Negative running load at exit! %g (%g%%) <============",
79                   total_running, running_ratio);
80     else if (running_ratio > opt::load_ratio_threshold)
81         CRITICAL2("Remaining running load at exit! %g (%g%%) <============",
82                   total_running, running_ratio);
83     else
84         DEBUG2("Running load at exit looks good: %g (%g%%)",
85                total_running, running_ratio);
86 }
87
88 static void compute_load_imbalance()
89 {
90     unsigned n = loads.size();
91     load_avg = std::accumulate(loads.begin(), loads.end(), 0.0) / n;
92     double variance = 0.0;
93     double epsilon = 0.0;
94     for (unsigned i = 0 ; i < n ; ++i) {
95         double diff = loads[i] - load_avg;
96         variance += diff * diff;
97         epsilon += diff;
98     }
99     variance = (variance - (epsilon * epsilon) / n) / n;
100     load_stddev = sqrt(variance);
101 }
102
103 int main(int argc, char* argv[])
104 {
105     // Note: variables used after THROW must be declared as volatile.
106     volatile int exit_status = 0;   // global exit status
107     volatile double simulated_time = -1.0;
108     timestamp simulation_time;
109     xbt_ex_t ex;
110     MSG_error_t res;
111
112     simulation_time.start();
113
114     // Set default logging parameters
115     bool do_log_control_set = true;
116     for (int i = 1 ; do_log_control_set && i < argc ; i++)
117         do_log_control_set = !(argv[i][0] == '-' && argv[i][1] != '-' &&
118                                strchr(argv[i] + 1, 'v'));
119     if (do_log_control_set) {
120         // xbt_log_control_set("simu.thres:verbose");
121         xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
122         xbt_log_control_set("main.fmt:'[%c/%p] %m%n'");
123     }
124
125     // Initialize some MSG internal data.
126     // Note: MSG_global_init() may throw an exception, but it seems
127     // impossible to catch it correctly :-(
128     MSG_global_init(&argc, argv);
129
130     // Parse global parameters
131     bool parse_res = opt::parse_args(&argc, argv);
132     if (!parse_res
133         || opt::version_requested || opt::help_requested) {
134         if (opt::version_requested)
135             std::clog << version::name << " (" << opt::program_name << ")"
136                       << " version " << version::num << "\n"
137                       << version::copyright << "\n"
138                 "Compiled on " << version::date << "\n\n";
139         if (!parse_res || opt::help_requested)
140             opt::usage();
141         MSG_clean();
142         exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
143     }
144     INFO3("%s v%s (%s)", opt::program_name.c_str(), version::num.c_str(),
145           version::date.c_str());
146     opt::print();
147
148     TRY {
149         exit_status = EXIT_FAILURE_INIT; // =====
150
151         // Register the default function of an agent
152         // MSG_function_register("simulation_main", simulation_main);
153         MSG_function_register_default(simulation_main);
154
155         // Create the platform and the application.
156         MSG_create_environment(opt::platform_file.c_str());
157         hostdata::create();
158         if (opt::auto_depl::enabled) {
159             if (!opt::auto_depl::nhosts)
160                 opt::auto_depl::nhosts = hostdata::size();
161             if (opt::auto_depl::nhosts > hostdata::size()) {
162                 WARN2("%u hosts is too much: limiting to %u",
163                       opt::auto_depl::nhosts, (unsigned )hostdata::size());
164                 opt::auto_depl::nhosts = hostdata::size();
165             }
166             if (!opt::auto_depl::load)
167                 opt::auto_depl::load = opt::auto_depl::nhosts;
168             MY_launch_application(); // it is already opt::* aware...
169         } else {
170             MSG_launch_application(opt::deployment_file.c_str());
171         }
172
173         exit_status = EXIT_FAILURE_SIMU; // =====
174
175         // Launch the MSG simulation.
176         INFO1("Starting simulation at %f...", MSG_get_clock());
177         res = MSG_main();
178         simulated_time = MSG_get_clock();
179         INFO1("Simulation ended at %f.", simulated_time);
180         check_for_lost_load();
181         compute_load_imbalance();
182         if (res != MSG_OK)
183             THROW1(0, 0, "MSG_main() failed with status %#x", res);
184
185         exit_status = EXIT_NO_FAILURE; // =====
186     }
187     CATCH (ex) {
188         int len = strlen(ex.msg);
189         if (len > 0 && ex.msg[len - 1] == '\n')
190             ex.msg[len - 1] = '\0'; // strip the ending '\n'
191         ERROR1("%s", ex.msg);
192         DEBUG3("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
193         xbt_ex_free(ex);
194     }
195
196     // Clean the MSG simulation.
197     hostdata::destroy();
198     res = MSG_clean();
199     if (res != MSG_OK) {
200         ERROR1("MSG_clean() failed with status %#x", res);
201         exit_status |= EXIT_FAILURE_CLEAN;
202     }
203
204     // Report final simulation status.
205     if (simulated_time >= 0.0) {
206         simulation_time.stop();
207         INFO0(",----[ Results ]");
208         INFO2("| Load avg./stddev. at exit.: %g / %g", load_avg, load_stddev);
209         INFO1("| Total simulated time......: %g", simulated_time);
210         INFO1("| Total simulation time.....: %g", simulation_time.duration());
211         INFO0("`----");
212     }
213     if (exit_status)
214         ERROR1("Simulation failed (%#x).", exit_status);
215     else
216         INFO0("Simulation succeeded.");
217
218     return exit_status;
219 }
220
221 // Local variables:
222 // mode: c++
223 // End: