Logo AND Algorithmique Numérique Distribuée

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