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

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