Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sthread_inside_simgrid static into libsthread in the (vain) hope that it'll...
[simgrid.git] / src / xbt / xbt_main.cpp
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2022. 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/sthread/sthread.h" // sthread_inside_simgrid
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 #include "xbt/xbt_modinter.h" /* prototype of other module's init/exit in XBT */
23
24 #include <cmath>
25 #include <cstdio>
26 #ifdef _WIN32
27 # include <csignal> /* To silence MSVC on abort() */
28 #endif
29 #if HAVE_UNISTD_H
30 # include <unistd.h>
31 #endif
32 #include <string>
33 #include <vector>
34
35 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
36
37 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) */
38
39 namespace simgrid::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 simgrid::xbt
43
44
45 int xbt_initialized = 0;
46 simgrid::config::Flag<bool> cfg_dbg_clean_atexit{
47     "debug/clean-atexit",
48     "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.",
49     true};
50
51 int xbt_pagesize;
52 int xbt_pagebits = 0;
53
54 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
55  * This is crude and rather compiler-specific, unfortunately.
56  */
57 static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200);
58 static void xbt_postexit();
59 void sthread_enable() {}  // These symbols are used from ContextSwapped in any case, but they are only useful
60 void sthread_disable() {} //  when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead.
61
62 #ifdef _WIN32
63 #include <windows.h>
64
65 #ifndef __GNUC__
66 /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/
67 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
68 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
69 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
70 {
71   static bool xbt_dll_process_is_attached = false;
72   if (fdwReason == DLL_PROCESS_ATTACH && not xbt_dll_process_is_attached) {
73     xbt_dll_process_is_attached = true;
74     xbt_preinit();
75   } else if (fdwReason == DLL_PROCESS_DETACH && xbt_dll_process_is_attached) {
76     xbt_dll_process_is_attached = false;
77   }
78   return 1;
79 }
80 #endif
81
82 #endif
83
84 static void xbt_preinit()
85 {
86 #ifdef _WIN32
87   SYSTEM_INFO si;
88   GetSystemInfo(&si);
89   xbt_pagesize = si.dwPageSize;
90 #elif HAVE_SYSCONF
91   xbt_pagesize = static_cast<int>(sysconf(_SC_PAGESIZE));
92 #else
93 # error Cannot get page size.
94 #endif
95
96   xbt_pagebits = static_cast<int>(log2(xbt_pagesize));
97
98 #ifdef _TWO_DIGIT_EXPONENT
99   /* Even printf behaves differently on Windows... */
100   _set_output_format(_TWO_DIGIT_EXPONENT);
101 #endif
102   xbt_log_preinit();
103   xbt_dict_preinit();
104   atexit(xbt_postexit);
105 }
106
107 static void xbt_postexit()
108 {
109   if (not cfg_dbg_clean_atexit)
110     return;
111   xbt_initialized--;
112   xbt_dict_postexit();
113   xbt_log_postexit();
114 #if SIMGRID_HAVE_MC
115   mmalloc_postexit();
116 #endif
117 }
118
119 /** @brief Initialize the xbt mechanisms. */
120 void xbt_init(int *argc, char **argv)
121 {
122   xbt_initialized++;
123   if (xbt_initialized > 1) {
124     XBT_DEBUG("XBT has been initialized %d times.", xbt_initialized);
125     return;
126   }
127
128   simgrid::xbt::install_exception_handler();
129
130   if (*argc > 0)
131     simgrid::xbt::binary_name = argv[0];
132   for (int i = 0; i < *argc; i++)
133     simgrid::xbt::cmdline.emplace_back(argv[i]);
134
135   xbt_log_init(argc, argv);
136 }
137
138 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
139 /** @brief like xbt_free, but you can be sure that it is a function  */
140 void xbt_free_f(void* p) noexcept(noexcept(::free))
141 {
142   xbt_free(p);
143 }
144
145 /** @brief should be given a pointer to pointer, and frees the second one */
146 void xbt_free_ref(void* d) noexcept(noexcept(::free))
147 {
148   xbt_free(*(void**)d);
149 }
150
151 /** @brief Kill the program in silence */
152 void xbt_abort()
153 {
154   /* Call __gcov_flush on abort when compiling with coverage options. */
155   coverage_checkpoint();
156 #ifdef _WIN32
157   /* We said *in silence*. We don't want to see the error message printed by Microsoft's implementation of abort(). */
158   raise(SIGABRT);
159   signal(SIGABRT, SIG_DFL);
160   raise(SIGABRT);
161 #endif
162   abort();
163 }
164
165 #ifndef HAVE_SMPI
166 int SMPI_is_inited()
167 {
168   return false;
169 }
170 #endif