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

Private GIT Repository
a3b790d3fef112bd81fdc86f0a285ed6d6401d43
[loba.git] / main.cpp
1 #include <cstring>
2 #include <iostream>
3 #include <msg/msg.h>
4 #include <xbt/log.h>
5 #include "hostdata.h"
6 #include "misc.h"
7 #include "options.h"
8 #include "process.h"
9 #include "timer.h"
10 #include "version.h"
11
12 // Creates a new log category and makes it the default
13 XBT_LOG_NEW_DEFAULT_CATEGORY(simu, "Simulation messages");
14
15 // Failure exit status
16 enum {
17     EXIT_NO_FAILURE    = 0x00,  // no error
18     EXIT_FAILURE_ARGS  = 0x01,  // bad arguments
19     EXIT_FAILURE_INIT  = 0x02,  // failed to initialize simulator
20     EXIT_FAILURE_SIMU  = 0x04,  // simulation failed
21     EXIT_FAILURE_CLEAN = 0x08,  // error at cleanup
22 };
23
24 int simulation_main(int argc, char* argv[])
25 {
26     process proc(argc, argv);
27     return proc.run();
28 }
29
30 int main(int argc, char* argv[])
31 {
32     // Note: variables used after THROW must be declared as volatile.
33     volatile int exit_status = 0;   // global exit status
34     volatile double simulated_time = -1.0;
35     timestamp simulation_time;
36     xbt_ex_t ex;
37     MSG_error_t res;
38
39     simulation_time.start();
40
41     // Set default logging parameters
42     // xbt_log_control_set("simu.thres:verbose");
43     xbt_log_control_set("simu.fmt:'[%h %r] [%c/%p] %m%n'");
44
45     // Initialize some MSG internal data.
46     // Note: MSG_global_init() may throw an exception, but it seems
47     // impossible to catch it correctly :-(
48     MSG_global_init(&argc, argv);
49
50     // Parse global parameters
51     int parse_res = opt::parse_args(&argc, argv);
52     if (!parse_res
53         || opt::version_requested || opt::help_requested) {
54         if (opt::version_requested)
55             std::clog << version::name << " version " << version::num << "\n"
56                       << version::copyright << "\n"
57                 "Compiled on " << version::date << "\n\n";
58         if (!parse_res || opt::help_requested)
59             opt::usage();
60         MSG_clean();
61         exit(parse_res ? EXIT_NO_FAILURE : EXIT_FAILURE_ARGS);
62     }
63     opt::print();
64
65     TRY {
66         exit_status = EXIT_FAILURE_INIT; // =====
67
68         // Register the main function of an agent in a global table.
69         MSG_function_register("simulation_main", simulation_main);
70         // Preserve some compatibility with old code...
71         MSG_function_register("Calculs", simulation_main);
72
73         // Create the platform and the application.
74         MSG_create_environment(opt::platform_file);
75         hostdata::create();
76         MSG_launch_application(opt::application_file);
77
78         exit_status = EXIT_FAILURE_SIMU; // =====
79
80         // Launch the MSG simulation.
81         INFO0("Starting simulation...");
82         res = MSG_main();
83         INFO0("Simulation ended.");
84         simulated_time = MSG_get_clock();
85         if (res != MSG_OK)
86             THROW1(0, 0, "MSG_main() failed with status %#x", res);
87
88         exit_status = EXIT_NO_FAILURE; // =====
89     }
90     CATCH (ex) {
91         int len = strlen(ex.msg);
92         if (len > 0 && ex.msg[len - 1] == '\n')
93             ex.msg[len - 1] = '\0'; // strip the ending '\n'
94         ERROR1("%s", ex.msg);
95         DEBUG3("Error from %s() in %s:%d", ex.func, ex.file, ex.line);
96         xbt_ex_free(ex);
97     }
98
99     // Clean the MSG simulation.
100     hostdata::destroy();
101     res = MSG_clean();
102     if (res != MSG_OK) {
103         ERROR1("MSG_clean() failed with status %#x", res);
104         exit_status |= EXIT_FAILURE_CLEAN;
105     }
106
107     // Report final simulation status.
108     if (simulated_time >= 0.0) {
109         simulation_time.stop();
110         INFO0(",----[ Results ]");
111         INFO1("| Total simulated time...: %g", simulated_time);
112         INFO1("| Total simulation time..: %g", simulation_time.duration());
113         INFO0("`----");
114     }
115     if (exit_status)
116         ERROR1("Simulation failed (%#x).", exit_status);
117     else
118         INFO0("Simulation succeeded.");
119
120     return exit_status;
121 }
122
123 // Local variables:
124 // mode: c++
125 // End: