Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : get current backtrace with libunwind (only available with ucontext...
[simgrid.git] / src / xbt / xbt_main.c
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2012. 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 #include "xbt/misc.h"
9 #include "simgrid_config.h"     /*HAVE_MMAP _XBT_WIN32 */
10 #include "internal_config.h"        /* MMALLOC_WANT_OVERRIDE_LEGACY */
11
12 #include "xbt/sysdep.h"
13 #include "xbt/log.h"
14 #include "xbt/dynar.h"
15 #include "xbt/config.h"
16
17 #include "xbt/module.h"         /* this module */
18
19 #include "xbt_modinter.h"       /* prototype of other module's init/exit in XBT */
20
21 XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
23
24 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) */
25
26
27 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
28 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
29
30 int xbt_initialized = 0;
31
32 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
33  * This is crude and rather compiler-specific, unfortunately.
34  */
35 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
36 static void xbt_postexit(void);
37
38 #ifdef _XBT_WIN32
39 # undef _XBT_NEED_INIT_PRAGMA
40 #endif
41
42 #ifdef _XBT_NEED_INIT_PRAGMA
43 #pragma init (xbt_preinit)
44 #endif
45
46 #ifdef _XBT_WIN32
47 #include <windows.h>
48
49 #ifndef __GNUC__
50 /* Dummy prototype to make gcc happy */
51 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
52                     LPVOID lpvReserved);
53
54 /* Should not be necessary but for some reason,
55  * DllMain is called twice at attachment and
56  * at detachment.*/
57 static int xbt_dll_process_is_attached = 0;
58
59 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
60 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
61 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
62                     LPVOID lpvReserved)
63 {
64   if (fdwReason == DLL_PROCESS_ATTACH
65       && xbt_dll_process_is_attached == 0) {
66     xbt_dll_process_is_attached = 1;
67     xbt_preinit();
68   } else if (fdwReason == DLL_PROCESS_DETACH
69       && xbt_dll_process_is_attached == 1) {
70     xbt_dll_process_is_attached = 0;
71   }
72   return 1;
73 }
74 #endif
75
76 #endif
77
78 static void xbt_preinit(void) {
79   unsigned int seed = 2147483647;
80
81 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
82   mmalloc_preinit();
83 #endif
84   xbt_log_preinit();
85   xbt_backtrace_preinit();
86   xbt_os_thread_mod_preinit();
87   xbt_fifo_preinit();
88   xbt_dict_preinit();
89    
90   srand(seed);
91   srand48(seed);
92
93   atexit(xbt_postexit);   
94 }
95
96 static void xbt_postexit(void)
97 {
98   xbt_backtrace_postexit();
99   xbt_fifo_postexit();
100   xbt_dict_postexit();
101   xbt_os_thread_mod_postexit();
102   xbt_dynar_free(&xbt_cmdline);
103   xbt_log_postexit();
104   free(xbt_binary_name);
105 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
106   mmalloc_postexit();
107 #endif
108 }
109
110 /** @brief Initialize the xbt mechanisms. */
111 void xbt_init(int *argc, char **argv)
112 {
113   if (xbt_initialized++) {
114     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
115     return;
116   }
117
118   xbt_binary_name = xbt_strdup(argv[0]);
119   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
120   int i;
121   for (i=0;i<*argc;i++) {
122     xbt_dynar_push(xbt_cmdline,&(argv[i]));
123   }
124   
125   xbt_log_init(argc, argv);
126 }
127
128 /** @brief Finalize the xbt mechanisms.
129  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
130 void xbt_exit()
131 {
132   XBT_WARN("This function is deprecated, you shouldn't use it");
133 }
134
135
136 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
137 /** @brief like free, but you can be sure that it is a function  */
138 XBT_PUBLIC(void) xbt_free_f(void *p)
139 {
140   free(p);
141 }
142
143 /** @brief should be given a pointer to pointer, and frees the second one */
144 XBT_PUBLIC(void) xbt_free_ref(void *d)
145 {
146   free(*(void **) d);
147 }