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

Private GIT Repository
fe584f725f6518347b6e4b096ff10198888bb8a0
[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
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
16
17 #include "deployment.h"
18 #include "hostdata.h"
19 #include "misc.h"
20 #include "options.h"
21 #include "process.h"
22 #include "timer.h"
23 #include "version.h"
24
25 // Failure exit status
26 enum {
27     EXIT_NO_FAILURE    = 0x00,  // no error
28     EXIT_FAILURE_ARGS  = 0x01,  // bad arguments
29     EXIT_FAILURE_INIT  = 0x02,  // failed to initialize simulator
30     EXIT_FAILURE_SIMU  = 0x04,  // simulation failed
31     EXIT_FAILURE_CLEAN = 0x08,  // error at cleanup
32 };
33
34 int simulation_main(int argc, char* argv[])
35 {
36     int result;
37     process* proc;
38     try {
39         proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
40         result = proc->run();
41         delete proc;
42     }
43     catch (std::invalid_argument& e) {
44         THROW1(arg_error, 0, "%s", e.what());
45     }
46     return result;
47 }
48
49 void check_for_lost_load()
50 {
51     const double threshold = 1e-4;
52     double total_init = process::get_total_load_init();
53     double total_exit = process::get_total_load_exit();
54     double lost = total_init - total_exit;
55     double lost_ratio = 100 * lost / total_init;
56     if (lost_ratio < -threshold) {
57         CRITICAL2("Gained load at exit! %g (%g%%) <============",
58                   lost, lost_ratio);
59     } else if (lost_ratio > threshold) {
60         CRITICAL2("Lost load at exit! %g (%g%%) <============",
61                   lost, lost_ratio);
62     } else {
63         DEBUG2("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);
64     }
65
66 }
67
68 int main(int argc, char* argv[])
69 {
70     // Note: variables used after THROW must be declared as volatile.
71     volatile int exit_status = 0;   // global exit status
72     volatile double simulated_time = -1.0;
73     timestamp simulation_time;
74     xbt_ex_t ex;
75     MSG_error_t res;
76
77     simulation_time.start();
78
79     // Set default logging parameters
80     bool do_log_control_set = true;
81     for (int i = 1 ; do_log_control_set && i < argc ; i++)
82         do_log_control_set = !(argv[i][0] == '-' && argv[i][1] != '-' &&
83                                strchr(argv[i] + 1, 'v'));
84     if (do_log_control_set) {
85         // xbt_log_control_set("simu.thres:verbose");
86         xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
87         xbt_log_control_set("main.fmt:'[%c/%p] %m%n'");
88     }
89
90     // Initialize some MSG internal data.
91     // Note: MSG_global_init() may throw an exception, but it seems
92     // impossible to catch it correctly :-(
93     MSG_global_init(&argc, argv);
94
95     // Parse global parameters
96     int parse_res = opt::parse_args(&argc, argv);
97     if (!parse_res
98         || opt::version_requested || opt::help_requested) {
99         if (opt::version_requested)
100             std::clog << version::name << " (" << opt::program_name << ")"
101                       << " version " << version::num << "\n"
102                       << version::copyright << "\n"
103                 "Compiled on " << version::date << "\n\n";
104         if (!parse_res || opt::help_requested)
105             opt::usage();
106         MSG_clean();
107         exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
108     }
109     INFO3("%s v%s (%s)", opt::program_name.c_str(), version::num.c_str(),
110           version::date.c_str());
111     opt::print();
112
113     TRY {
114         exit_status = EXIT_FAILURE_INIT; // =====
115
116         // Register the default function of an agent
117         // MSG_function_register("simulation_main", simulation_main);
118         MSG_function_register_default(simulation_main);
119
120         // Create the platform and the application.
121         MSG_create_environment(opt::platform_file.c_str());
122         hostdata::create();
123         if (opt::auto_depl::enabled) {
124             if (!opt::auto_depl::nhosts)
125                 opt::auto_depl::nhosts = hostdata::size();
126             if (opt::auto_depl::nhosts > hostdata::size()) {
127                 WARN2("%u hosts is too much: limiting to %u",
128                       opt::auto_depl::nhosts, (unsigned )hostdata::size());
129                 opt::auto_depl::nhosts = hostdata::size();
130             }
131             if (!opt::auto_depl::load)
132                 opt::auto_depl::load = opt::auto_depl::nhosts;
133             MY_launch_application(); // it is already opt::* aware...
134         } else {
135             MSG_launch_application(opt::deployment_file.c_str());
136         }
137
138         exit_status = EXIT_FAILURE_SIMU; // =====
139
140         // Launch the MSG simulation.
141         INFO1("Starting simulation at %f...", MSG_get_clock());
142         res = MSG_main();
143         simulated_time = MSG_get_clock();
144         INFO1("Simulation ended at %f.", simulated_time);
145         check_for_lost_load();
146         if (res != MSG_OK)
147             THROW1(0, 0, "MSG_main() failed with status %#x", res);
148
149         exit_status = EXIT_NO_FAILURE; // =====
150     }
151     CATCH (ex) {
152         int len = strlen(ex.msg);
153         if (len > 0 && ex.msg[len - 1] == '\n')
154             ex.msg[len - 1] = '\0'; // strip the ending '\n'
155         ERROR1("%s", ex.msg);
156         DEBUG3("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
157         xbt_ex_free(ex);
158     }
159
160     // Clean the MSG simulation.
161     hostdata::destroy();
162     res = MSG_clean();
163     if (res != MSG_OK) {
164         ERROR1("MSG_clean() failed with status %#x", res);
165         exit_status |= EXIT_FAILURE_CLEAN;
166     }
167
168     // Report final simulation status.
169     if (simulated_time >= 0.0) {
170         simulation_time.stop();
171         INFO0(",----[ Results ]");
172         INFO1("| Total simulated time...: %g", simulated_time);
173         INFO1("| Total simulation time..: %g", simulation_time.duration());
174         INFO0("`----");
175     }
176     if (exit_status)
177         ERROR1("Simulation failed (%#x).", exit_status);
178     else
179         INFO0("Simulation succeeded.");
180
181     return exit_status;
182 }
183
184 // Local variables:
185 // mode: c++
186 // End: