Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Use std::string for s_smx_process_arg
[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/internal_config.h"
26 #include <stdio.h>
27 #ifdef _WIN32
28 #include <signal.h> /* To silence MSVC on abort() */
29 #endif
30 #if 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 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
39 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
40
41 int xbt_initialized = 0;
42 int _sg_do_clean_atexit = 1;
43
44 int xbt_pagesize;
45 int xbt_pagebits = 0;
46
47 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
48  * This is crude and rather compiler-specific, unfortunately.
49  */
50 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
51 static void xbt_postexit(void);
52
53 #ifdef _WIN32
54 # undef _XBT_NEED_INIT_PRAGMA
55 #endif
56
57 #ifdef _XBT_NEED_INIT_PRAGMA
58 #pragma init (xbt_preinit)
59 #endif
60
61 #ifdef _WIN32
62 #include <windows.h>
63
64 #ifndef __GNUC__
65 /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/
66 static int xbt_dll_process_is_attached = 0;
67
68 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
69 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
70 static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
71 {
72   if (fdwReason == DLL_PROCESS_ATTACH
73       && xbt_dll_process_is_attached == 0) {
74     xbt_dll_process_is_attached = 1;
75     xbt_preinit();
76   } else if (fdwReason == DLL_PROCESS_DETACH
77       && xbt_dll_process_is_attached == 1) {
78     xbt_dll_process_is_attached = 0;
79   }
80   return 1;
81 }
82 #endif
83
84 #endif
85
86 static void xbt_preinit(void) {
87   unsigned int seed = 2147483647;
88 #ifdef _WIN32
89   SYSTEM_INFO si;
90   GetSystemInfo(&si);
91   xbt_pagesize = si.dwPageSize;
92 #elif HAVE_SYSCONF
93   xbt_pagesize = sysconf(_SC_PAGESIZE);
94 #else
95   #error Cannot get page size.
96 #endif
97
98   xbt_pagebits = 0;
99   int x = xbt_pagesize;
100   while(x >>= 1) {
101     ++xbt_pagebits;
102   }
103
104 #ifdef _TWO_DIGIT_EXPONENT
105   /* Even printf behaves differently on Windows... */
106   _set_output_format(_TWO_DIGIT_EXPONENT);
107 #endif
108   xbt_log_preinit();
109   xbt_backtrace_preinit();
110   xbt_os_thread_mod_preinit();
111   xbt_fifo_preinit();
112   xbt_dict_preinit();
113    
114   srand(seed);
115 #ifndef _WIN32
116   srand48(seed);
117 #endif
118   atexit(xbt_postexit);
119 }
120
121 static void xbt_postexit(void)
122 {
123   if(!_sg_do_clean_atexit) return;
124   xbt_initialized--;
125   xbt_backtrace_postexit();
126   xbt_fifo_postexit();
127   xbt_dict_postexit();
128   xbt_os_thread_mod_postexit();
129   xbt_dynar_free(&xbt_cmdline);
130   xbt_log_postexit();
131   free(xbt_binary_name);
132 #if HAVE_MC
133   mmalloc_postexit();
134 #endif
135 }
136
137 /** @brief Initialize the xbt mechanisms. */
138 void xbt_init(int *argc, char **argv)
139 {
140   if (xbt_initialized++) {
141     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
142     return;
143   }
144
145   xbt_binary_name = xbt_strdup(argv[0]);
146   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
147   for (int i=0;i<*argc;i++)
148     xbt_dynar_push(xbt_cmdline,&(argv[i]));
149   
150   xbt_log_init(argc, argv);
151 }
152
153 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
154 /** @brief like free, but you can be sure that it is a function  */
155 void xbt_free_f(void *p)
156 {
157   free(p);
158 }
159
160 /** @brief should be given a pointer to pointer, and frees the second one */
161 void xbt_free_ref(void *d)
162 {
163   free(*(void **) d);
164 }
165
166 /** @brief Kill the program in silence */
167 void xbt_abort(void)
168 {
169 #ifdef COVERAGE
170   /* Call __gcov_flush on abort when compiling with coverage options. */
171   extern void __gcov_flush(void);
172   __gcov_flush();
173 #endif
174 #ifdef _WIN32
175   /* It was said *in silence*.  We don't want to see the error message printed
176    * by the Microsoft's implementation of abort(). */
177   raise(SIGABRT);
178   signal(SIGABRT, SIG_DFL);
179   raise(SIGABRT);
180 #endif
181   abort();
182 }