Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6e885360be5e80f374bd0544a70528f41012399b
[simgrid.git] / src / xbt / xbt_main.cpp
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #define XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL /* MSVC don't want it to be declared extern in headers and local here */
9
10 #include "simgrid/config.h"
11 #include "simgrid/sg_config.hpp"
12 #include "src/internal_config.h"
13 #include "src/xbt_modinter.h" /* prototype of other module's init/exit in XBT */
14 #include "xbt/config.hpp"
15 #include "xbt/coverage.h"
16 #include "xbt/dynar.h"
17 #include "xbt/log.h"
18 #include "xbt/log.hpp"
19 #include "xbt/misc.h"
20 #include "xbt/module.h" /* this module */
21 #include "xbt/sysdep.h"
22
23 #include <cmath>
24 #include <cstdio>
25 #ifdef _WIN32
26 # include <csignal> /* To silence MSVC on abort() */
27 #endif
28 #if HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
31 #include <string>
32 #include <vector>
33
34 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
35
36 XBT_LOG_NEW_CATEGORY(smpi, "All SMPI categories"); /* lives here even if that's a bit odd to solve linking issues: this is used in xbt_log_file_appender to detect whether SMPI is used (and thus whether we should unbench the writing to disk) */
37
38 namespace simgrid {
39 namespace xbt {
40 std::string binary_name;          /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
41 std::vector<std::string> cmdline; /* all we got in argv */
42 } // namespace xbt
43 } // namespace simgrid
44
45 int xbt_initialized = 0;
46 simgrid::config::Flag<bool> cfg_dbg_clean_atexit{
47     "debug/clean-atexit",
48     {"clean-atexit"},
49     "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.",
50     true};
51
52 int xbt_pagesize;
53 int xbt_pagebits = 0;
54
55 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
56  * This is crude and rather compiler-specific, unfortunately.
57  */
58 static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200);
59 static void xbt_postexit();
60
61 #ifdef _WIN32
62 #include <windows.h>
63
64 #ifndef __GNUC__
65 /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/
66 static int xbt_dll_process_is_attached = 0;
67
68 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
69 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
70 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
71 {
72   if (fdwReason == DLL_PROCESS_ATTACH
73       && xbt_dll_process_is_attached == 0) {
74     xbt_dll_process_is_attached = 1;
75     xbt_preinit();
76   } else if (fdwReason == DLL_PROCESS_DETACH
77       && xbt_dll_process_is_attached == 1) {
78     xbt_dll_process_is_attached = 0;
79   }
80   return 1;
81 }
82 #endif
83
84 #endif
85
86 static void xbt_preinit()
87 {
88 #ifdef _WIN32
89   SYSTEM_INFO si;
90   GetSystemInfo(&si);
91   xbt_pagesize = si.dwPageSize;
92 #elif HAVE_SYSCONF
93   xbt_pagesize = sysconf(_SC_PAGESIZE);
94 #else
95 # error Cannot get page size.
96 #endif
97
98   xbt_pagebits = log2(xbt_pagesize);
99
100 #ifdef _TWO_DIGIT_EXPONENT
101   /* Even printf behaves differently on Windows... */
102   _set_output_format(_TWO_DIGIT_EXPONENT);
103 #endif
104   xbt_log_preinit();
105   xbt_dict_preinit();
106   atexit(xbt_postexit);
107 }
108
109 static void xbt_postexit()
110 {
111   if (not cfg_dbg_clean_atexit)
112     return;
113   xbt_initialized--;
114   xbt_dict_postexit();
115   xbt_log_postexit();
116 #if SIMGRID_HAVE_MC
117   mmalloc_postexit();
118 #endif
119 }
120
121 /** @brief Initialize the xbt mechanisms. */
122 void xbt_init(int *argc, char **argv)
123 {
124   xbt_initialized++;
125   if (xbt_initialized > 1) {
126     XBT_DEBUG("XBT has been initialized %d times.", xbt_initialized);
127     return;
128   }
129
130   simgrid::xbt::install_exception_handler();
131
132   simgrid::xbt::binary_name = argv[0];
133   for (int i = 0; i < *argc; i++)
134     simgrid::xbt::cmdline.push_back(argv[i]);
135
136   xbt_log_init(argc, argv);
137 }
138
139 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
140 /** @brief like xbt_free, but you can be sure that it is a function  */
141 void xbt_free_f(void* p) noexcept(noexcept(::free))
142 {
143   xbt_free(p);
144 }
145
146 /** @brief should be given a pointer to pointer, and frees the second one */
147 void xbt_free_ref(void* d) noexcept(noexcept(::free))
148 {
149   xbt_free(*(void**)d);
150 }
151
152 /** @brief Kill the program in silence */
153 void xbt_abort()
154 {
155   /* Call __gcov_flush on abort when compiling with coverage options. */
156   coverage_checkpoint();
157 #ifdef _WIN32
158   /* We said *in silence*. We don't want to see the error message printed by Microsoft's implementation of abort(). */
159   raise(SIGABRT);
160   signal(SIGABRT, SIG_DFL);
161   raise(SIGABRT);
162 #endif
163   abort();
164 }