Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix HAVE_GRAPHVIZ handling
[simgrid.git] / src / xbt / xbt_main.c
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
12 #include "xbt/misc.h"
13 #include "simgrid_config.h"
14 #include "xbt/sysdep.h"
15 #include "xbt/log.h"
16 #include "xbt/dynar.h"
17 #include "xbt/config.h"
18
19 #include "xbt/module.h"         /* this module */
20
21 #include "src/xbt_modinter.h"       /* prototype of other module's init/exit in XBT */
22
23 #include "simgrid/sg_config.h"
24
25 #include "src/portable.h"
26 #include <stdio.h>
27 #ifdef _WIN32
28 #include <signal.h> /* To silence MSVC on abort() */
29 #endif
30 #ifdef HAVE_UNISTD_H
31 #  include <unistd.h>
32 #endif
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
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 # undef _XBT_NEED_INIT_PRAGMA
56 #endif
57
58 #ifdef _XBT_NEED_INIT_PRAGMA
59 #pragma init (xbt_preinit)
60 #endif
61
62 #ifdef _WIN32
63 #include <windows.h>
64
65 #ifndef __GNUC__
66 /* Should not be necessary but for some reason,
67  * DllMain is called twice at attachment and
68  * at detachment.*/
69 static int xbt_dll_process_is_attached = 0;
70
71 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
72 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
73 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
74 {
75   if (fdwReason == DLL_PROCESS_ATTACH
76       && xbt_dll_process_is_attached == 0) {
77     xbt_dll_process_is_attached = 1;
78     xbt_preinit();
79   } else if (fdwReason == DLL_PROCESS_DETACH
80       && xbt_dll_process_is_attached == 1) {
81     xbt_dll_process_is_attached = 0;
82   }
83   return 1;
84 }
85 #endif
86
87 #endif
88
89 static void xbt_preinit(void) {
90   unsigned int seed = 2147483647;
91 #ifndef _WIN32
92   xbt_pagesize = sysconf(_SC_PAGESIZE);
93 #else
94   SYSTEM_INFO si;
95   GetSystemInfo(&si);
96   xbt_pagesize = si.dwPageSize;
97 #endif
98
99   xbt_pagebits = 0;
100   int x = xbt_pagesize;
101   while(x >>= 1) {
102     ++xbt_pagebits;
103   }
104
105 #ifdef _TWO_DIGIT_EXPONENT
106   /* Even printf behaves differently on Windows... */
107   _set_output_format(_TWO_DIGIT_EXPONENT);
108 #endif
109   xbt_log_preinit();
110   xbt_backtrace_preinit();
111   xbt_os_thread_mod_preinit();
112   xbt_fifo_preinit();
113   xbt_dict_preinit();
114    
115   srand(seed);
116 #ifndef _WIN32
117   srand48(seed);
118 #endif
119   atexit(xbt_postexit);
120 }
121
122 static void xbt_postexit(void)
123 {
124   if(!_sg_do_clean_atexit) return;
125   xbt_initialized--;
126   xbt_backtrace_postexit();
127   xbt_fifo_postexit();
128   xbt_dict_postexit();
129   xbt_os_thread_mod_postexit();
130   xbt_dynar_free(&xbt_cmdline);
131   xbt_log_postexit();
132   free(xbt_binary_name);
133 #if HAVE_MC
134   mmalloc_postexit();
135 #endif
136 }
137
138 /** @brief Initialize the xbt mechanisms. */
139 void xbt_init(int *argc, char **argv)
140 {
141   if (xbt_initialized++) {
142     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
143     return;
144   }
145
146   xbt_binary_name = xbt_strdup(argv[0]);
147   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
148   int i;
149   for (i=0;i<*argc;i++) {
150     xbt_dynar_push(xbt_cmdline,&(argv[i]));
151   }
152   
153   xbt_log_init(argc, argv);
154 }
155
156 /** @brief Finalize the xbt mechanisms.
157  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
158 void xbt_exit()
159 {
160   XBT_WARN("This function is deprecated, you shouldn't use it");
161 }
162
163
164 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
165 /** @brief like free, but you can be sure that it is a function  */
166 void xbt_free_f(void *p)
167 {
168   free(p);
169 }
170
171 /** @brief should be given a pointer to pointer, and frees the second one */
172 void xbt_free_ref(void *d)
173 {
174   free(*(void **) d);
175 }
176
177 /** @brief Kill the program in silence */
178 void xbt_abort(void)
179 {
180 #ifdef COVERAGE
181   /* Call __gcov_flush on abort when compiling with coverage options. */
182   extern void __gcov_flush(void);
183   __gcov_flush();
184 #endif
185 #ifdef _WIN32
186   /* It was said *in silence*.  We don't want to see the error message printed
187    * by the Microsoft's implementation of abort(). */
188   raise(SIGABRT);
189   signal(SIGABRT, SIG_DFL);
190   raise(SIGABRT);
191 #endif
192   abort();
193 }