Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use std::unique_ptr to manage memory.
[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
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
33
34 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) */
35
36 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
37 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
38
39 int xbt_initialized = 0;
40 bool _sg_do_clean_atexit = true;
41
42 int xbt_pagesize;
43 int xbt_pagebits = 0;
44
45 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
46  * This is crude and rather compiler-specific, unfortunately.
47  */
48 static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200);
49 static void xbt_postexit();
50
51 #ifdef _WIN32
52 #include <windows.h>
53
54 #ifndef __GNUC__
55 /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/
56 static int xbt_dll_process_is_attached = 0;
57
58 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
59 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
60 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
61 {
62   if (fdwReason == DLL_PROCESS_ATTACH
63       && xbt_dll_process_is_attached == 0) {
64     xbt_dll_process_is_attached = 1;
65     xbt_preinit();
66   } else if (fdwReason == DLL_PROCESS_DETACH
67       && xbt_dll_process_is_attached == 1) {
68     xbt_dll_process_is_attached = 0;
69   }
70   return 1;
71 }
72 #endif
73
74 #endif
75
76 static void xbt_preinit()
77 {
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_dict_preinit();
96
97 #ifndef _WIN32
98   constexpr unsigned seed = 2147483647;
99   srand48(seed); // FIXME: still worthwhile?
100 #endif
101   atexit(xbt_postexit);
102 }
103
104 static void xbt_postexit()
105 {
106   if (not _sg_do_clean_atexit)
107     return;
108   xbt_initialized--;
109   xbt_dict_postexit();
110   xbt_dynar_free(&xbt_cmdline);
111   xbt_log_postexit();
112 #if SIMGRID_HAVE_MC
113   mmalloc_postexit();
114 #endif
115 }
116
117 /** @brief Initialize the xbt mechanisms. */
118 void xbt_init(int *argc, char **argv)
119 {
120   simgrid::xbt::install_exception_handler();
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   xbt_binary_name = argv[0];
129   xbt_cmdline     = xbt_dynar_new(sizeof(char*), NULL);
130   for (int i = 0; i < *argc; i++)
131     xbt_dynar_push(xbt_cmdline,&(argv[i]));
132
133   xbt_log_init(argc, argv);
134 }
135
136 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
137 /** @brief like xbt_free, but you can be sure that it is a function  */
138 void xbt_free_f(void* p) noexcept(noexcept(::free))
139 {
140   xbt_free(p);
141 }
142
143 /** @brief should be given a pointer to pointer, and frees the second one */
144 void xbt_free_ref(void* d) noexcept(noexcept(::free))
145 {
146   xbt_free(*(void**)d);
147 }
148
149 /** @brief Kill the program in silence */
150 void xbt_abort()
151 {
152   /* Call __gcov_flush on abort when compiling with coverage options. */
153   coverage_checkpoint();
154 #ifdef _WIN32
155   /* We said *in silence*. We don't want to see the error message printed by Microsoft's implementation of abort(). */
156   raise(SIGABRT);
157   signal(SIGABRT, SIG_DFL);
158   raise(SIGABRT);
159 #endif
160   abort();
161 }