Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
provide a backtrace implementation that uses boost.stacktrace
[simgrid.git] / src / xbt / xbt_main.cpp
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2018. 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/dynar.h"
16 #include "xbt/log.h"
17 #include "xbt/log.hpp"
18 #include "xbt/misc.h"
19 #include "xbt/module.h" /* this module */
20 #include "xbt/sysdep.h"
21
22 #include <cmath>
23 #include <cstdio>
24 #ifdef _WIN32
25 # include <csignal> /* To silence MSVC on abort() */
26 #endif
27 #if HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
32
33 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) */
34
35 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
36 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
37
38 int xbt_initialized = 0;
39 bool _sg_do_clean_atexit = true;
40
41 int xbt_pagesize;
42 int xbt_pagebits = 0;
43
44 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
45  * This is crude and rather compiler-specific, unfortunately.
46  */
47 static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200);
48 static void xbt_postexit();
49
50 #ifdef _WIN32
51 #include <windows.h>
52
53 #ifndef __GNUC__
54 /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/
55 static int xbt_dll_process_is_attached = 0;
56
57 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
58 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
59 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
60 {
61   if (fdwReason == DLL_PROCESS_ATTACH
62       && xbt_dll_process_is_attached == 0) {
63     xbt_dll_process_is_attached = 1;
64     xbt_preinit();
65   } else if (fdwReason == DLL_PROCESS_DETACH
66       && xbt_dll_process_is_attached == 1) {
67     xbt_dll_process_is_attached = 0;
68   }
69   return 1;
70 }
71 #endif
72
73 #endif
74
75 static void xbt_preinit()
76 {
77   unsigned int seed = 2147483647;
78 #ifdef _WIN32
79   SYSTEM_INFO si;
80   GetSystemInfo(&si);
81   xbt_pagesize = si.dwPageSize;
82 #elif HAVE_SYSCONF
83   xbt_pagesize = sysconf(_SC_PAGESIZE);
84 #else
85 # error Cannot get page size.
86 #endif
87
88   xbt_pagebits = log2(xbt_pagesize);
89
90 #ifdef _TWO_DIGIT_EXPONENT
91   /* Even printf behaves differently on Windows... */
92   _set_output_format(_TWO_DIGIT_EXPONENT);
93 #endif
94   xbt_log_preinit();
95   xbt_os_thread_mod_preinit();
96   xbt_dict_preinit();
97
98   srand(seed);
99 #ifndef _WIN32
100   srand48(seed);
101 #endif
102   atexit(xbt_postexit);
103 }
104
105 static void xbt_postexit()
106 {
107   if (not _sg_do_clean_atexit)
108     return;
109   xbt_initialized--;
110   xbt_dict_postexit();
111   xbt_os_thread_mod_postexit();
112   xbt_dynar_free(&xbt_cmdline);
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   simgrid::xbt::install_exception_handler();
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   xbt_binary_name = argv[0];
131   xbt_cmdline     = xbt_dynar_new(sizeof(char*), NULL);
132   for (int i = 0; i < *argc; i++)
133     xbt_dynar_push(xbt_cmdline,&(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)
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)
147 {
148   xbt_free(*(void**)d);
149 }
150
151 /** @brief Kill the program in silence */
152 void xbt_abort()
153 {
154 #ifdef COVERAGE
155   /* Call __gcov_flush on abort when compiling with coverage options. */
156   extern void __gcov_flush();
157   __gcov_flush();
158 #endif
159 #ifdef _WIN32
160   /* We said *in silence*. We don't want to see the error message printed by Microsoft's implementation of abort(). */
161   raise(SIGABRT);
162   signal(SIGABRT, SIG_DFL);
163   raise(SIGABRT);
164 #endif
165   abort();
166 }