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

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