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");
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
18 #include "deployment.h"
23 #include "statistics.h"
30 // Failure exit status
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
40 condition_t proc_cond;
41 unsigned proc_counter = 0;
48 static int simulation_main(int argc, char* argv[])
53 proc = opt::loba_algorithms.new_instance(opt::loba_algo, argc, argv);
62 comps.push(proc->get_comp());
63 loads.push(proc->get_real_load());
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.
71 proc_cond.broadcast();
72 while (proc_counter > 0)
73 proc_cond.wait(proc_mutex);
78 catch (std::invalid_argument& e) {
79 THROW1(arg_error, 0, "%s", e.what());
84 static void check_for_lost_load()
86 double total_init = process::get_total_load_init();
88 double total_exit = process::get_total_load_exit();
89 double lost = total_init - total_exit;
90 double lost_ratio = 100.0 * lost / total_init;
91 if (lost_ratio < -opt::load_ratio_threshold)
92 XBT_ERROR("Gained load at exit! %g (%g%%) <============",
94 else if (lost_ratio > opt::load_ratio_threshold)
95 XBT_ERROR("Lost load at exit! %g (%g%%) <============",
98 XBT_VERB("Total load at exit looks good: %g (%g%%)", lost, lost_ratio);
100 double total_running = process::get_total_load_running();
101 double running_ratio = 100.0 * total_running / total_init;
102 if (running_ratio < -opt::load_ratio_threshold)
103 XBT_ERROR("Negative running load at exit! %g (%g%%) <============",
104 total_running, running_ratio);
105 else if (running_ratio > opt::load_ratio_threshold)
106 XBT_ERROR("Remaining running load at exit! %g (%g%%) <============",
107 total_running, running_ratio);
109 XBT_VERB("Running load at exit looks good: %g (%g%%)",
110 total_running, running_ratio);
113 #define PR_STATS(descr, st) \
114 XBT_INFO("| %.*s: %g / %g / %g", 39, \
115 descr " total/avg./stddev. at exit.........................", \
116 st.get_sum(), st.get_mean(), st.get_stddev())
118 int main(int argc, char* argv[])
120 // Note: variables used after THROW must be declared as volatile.
121 volatile int exit_status = 0; // global exit status
122 volatile double simulated_time = -1.0;
123 timestamp simulation_time;
127 simulation_time.start();
129 // Set default logging parameters
130 bool do_log_control_set = true;
131 for (int i = 1 ; do_log_control_set && i < argc ; i++)
132 do_log_control_set = !(argv[i][0] == '-' && argv[i][1] != '-' &&
133 strchr(argv[i] + 1, 'v'));
134 if (do_log_control_set) {
135 // xbt_log_control_set("simu.thres:verbose");
136 xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
137 xbt_log_control_set("main.fmt:'[%c/%p] %m%n'");
140 // Initialize some MSG internal data.
141 // Note: MSG_global_init() may throw an exception, but it seems
142 // impossible to catch it correctly :-(
143 MSG_global_init(&argc, argv);
145 // Parse global parameters
146 bool parse_res = opt::parse_args(&argc, argv);
148 || opt::version_requested || opt::help_requested) {
149 if (opt::version_requested)
150 std::clog << version::name << " (" << opt::program_name << ")"
151 << " version " << version::num << "\n"
152 << version::copyright << "\n"
153 "Compiled on " << version::date << "\n\n";
154 if (!parse_res || opt::help_requested)
157 exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
159 XBT_INFO("%s v%s (%s)", opt::program_name.c_str(), version::num.c_str(),
160 version::date.c_str());
164 exit_status = EXIT_FAILURE_INIT; // =====
166 // Register the default function of an agent
167 // MSG_function_register("simulation_main", simulation_main);
168 MSG_function_register_default(simulation_main);
170 // Create the platform and the application.
171 MSG_create_environment(opt::platform_file.c_str());
173 if (opt::auto_depl::enabled) {
174 if (!opt::auto_depl::nhosts)
175 opt::auto_depl::nhosts = hostdata::size();
176 if (opt::auto_depl::nhosts > hostdata::size()) {
177 XBT_WARN("%u hosts is too much: limiting to %zu",
178 opt::auto_depl::nhosts, hostdata::size());
179 opt::auto_depl::nhosts = hostdata::size();
181 if (!opt::auto_depl::load)
182 opt::auto_depl::load = opt::auto_depl::nhosts;
183 MY_launch_application(); // it is already opt::* aware...
185 MSG_launch_application(opt::deployment_file.c_str());
188 // Register tracing categories
189 TRACE_category(TRACE_CAT_COMP);
190 TRACE_category(TRACE_CAT_CTRL);
191 TRACE_category(TRACE_CAT_DATA);
193 exit_status = EXIT_FAILURE_SIMU; // =====
195 // Launch the MSG simulation.
196 XBT_INFO("Starting simulation at %f...", MSG_get_clock());
198 simulated_time = MSG_get_clock();
199 XBT_INFO("Simulation ended at %f.", simulated_time);
202 THROW1(0, 0, "MSG_main() failed with status %#x", res);
204 exit_status = EXIT_NO_FAILURE; // =====
207 int len = strlen(ex.msg);
208 if (len > 0 && ex.msg[len - 1] == '\n')
209 ex.msg[len - 1] = '\0'; // strip the ending '\n'
210 XBT_ERROR("%s", ex.msg);
211 XBT_DEBUG("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
215 // Clean the MSG simulation.
219 XBT_ERROR("MSG_clean() failed with status %#x", res);
220 exit_status |= EXIT_FAILURE_CLEAN;
223 // Report final simulation status.
224 if (simulated_time >= 0.0) {
225 simulation_time.stop();
226 check_for_lost_load();
227 XBT_INFO(",----[ Results ]");
228 PR_STATS("Load", loads);
229 PR_STATS("Computation", comps);
230 XBT_INFO("| Total simulated time...................: %g",
232 XBT_INFO("| Total simulation time..................: %g",
233 simulation_time.duration());
237 XBT_ERROR("Simulation failed (%#x).", exit_status);
239 XBT_INFO("Simulation succeeded.");