Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[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 #include "simgrid/sg_config.h"
22
23 XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
25
26 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) */
27
28
29 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
30 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
31
32 int xbt_initialized = 0;
33 int _sg_do_clean_atexit = 1;
34
35 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
36  * This is crude and rather compiler-specific, unfortunately.
37  */
38 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
39 static void xbt_postexit(void);
40
41 #ifdef _XBT_WIN32
42 # undef _XBT_NEED_INIT_PRAGMA
43 #endif
44
45 #ifdef _XBT_NEED_INIT_PRAGMA
46 #pragma init (xbt_preinit)
47 #endif
48
49 #ifdef _XBT_WIN32
50 #include <windows.h>
51
52 #ifndef __GNUC__
53 /* Dummy prototype to make gcc happy */
54 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
55                     LPVOID lpvReserved);
56
57 /* Should not be necessary but for some reason,
58  * DllMain is called twice at attachment and
59  * at detachment.*/
60 static int xbt_dll_process_is_attached = 0;
61
62 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
63 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
64 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
65                     LPVOID lpvReserved)
66 {
67   if (fdwReason == DLL_PROCESS_ATTACH
68       && xbt_dll_process_is_attached == 0) {
69     xbt_dll_process_is_attached = 1;
70     xbt_preinit();
71   } else if (fdwReason == DLL_PROCESS_DETACH
72       && xbt_dll_process_is_attached == 1) {
73     xbt_dll_process_is_attached = 0;
74   }
75   return 1;
76 }
77 #endif
78
79 #endif
80
81 static void xbt_preinit(void) {
82   unsigned int seed = 2147483647;
83
84 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
85   mmalloc_preinit();
86 #endif
87   xbt_log_preinit();
88   xbt_backtrace_preinit();
89   xbt_os_thread_mod_preinit();
90   xbt_fifo_preinit();
91   xbt_dict_preinit();
92    
93   srand(seed);
94 #ifndef _WIN32
95   srand48(seed);
96 #endif
97
98   atexit(xbt_postexit);
99 }
100
101 static void xbt_postexit(void)
102 {
103   if(!_sg_do_clean_atexit) return;
104   xbt_backtrace_postexit();
105   xbt_fifo_postexit();
106   xbt_dict_postexit();
107   xbt_os_thread_mod_postexit();
108   xbt_dynar_free(&xbt_cmdline);
109   xbt_log_postexit();
110   free(xbt_binary_name);
111 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
112   mmalloc_postexit();
113 #endif
114 }
115
116 /** @brief Initialize the xbt mechanisms. */
117 void xbt_init(int *argc, char **argv)
118 {
119   if (xbt_initialized++) {
120     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
121     return;
122   }
123
124   xbt_binary_name = xbt_strdup(argv[0]);
125   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
126   int i;
127   for (i=0;i<*argc;i++) {
128     xbt_dynar_push(xbt_cmdline,&(argv[i]));
129   }
130   
131   xbt_log_init(argc, argv);
132 }
133
134 /** @brief Finalize the xbt mechanisms.
135  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
136 void xbt_exit()
137 {
138   XBT_WARN("This function is deprecated, you shouldn't use it");
139 }
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 XBT_PUBLIC(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 XBT_PUBLIC(void) xbt_free_ref(void *d)
151 {
152   free(*(void **) d);
153 }