Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "Argh stupid me! This fixes commit 4fff3fb509f60c96745fb5d3e1be1bd824185366...
[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
34 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
35  * This is crude and rather compiler-specific, unfortunately.
36  */
37 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
38 static void xbt_postexit(void);
39
40 #ifdef _XBT_WIN32
41 # undef _XBT_NEED_INIT_PRAGMA
42 #endif
43
44 #ifdef _XBT_NEED_INIT_PRAGMA
45 #pragma init (xbt_preinit)
46 #endif
47
48 #ifdef _XBT_WIN32
49 #include <windows.h>
50
51 #ifndef __GNUC__
52 /* Dummy prototype to make gcc happy */
53 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
54                     LPVOID lpvReserved);
55
56 /* Should not be necessary but for some reason,
57  * DllMain is called twice at attachment and
58  * 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 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
64                     LPVOID lpvReserved)
65 {
66   if (fdwReason == DLL_PROCESS_ATTACH
67       && xbt_dll_process_is_attached == 0) {
68     xbt_dll_process_is_attached = 1;
69     xbt_preinit();
70   } else if (fdwReason == DLL_PROCESS_DETACH
71       && xbt_dll_process_is_attached == 1) {
72     xbt_dll_process_is_attached = 0;
73   }
74   return 1;
75 }
76 #endif
77
78 #endif
79
80 static void xbt_preinit(void) {
81   unsigned int seed = 2147483647;
82
83 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
84   mmalloc_preinit();
85 #endif
86   xbt_log_preinit();
87   xbt_backtrace_preinit();
88   xbt_os_thread_mod_preinit();
89   xbt_fifo_preinit();
90   xbt_dict_preinit();
91    
92   srand(seed);
93   srand48(seed);
94
95 }
96
97 static void xbt_postexit(void)
98 {
99   if(!sg_cfg_get_boolean("clean_atexit")) return;
100   xbt_backtrace_postexit();
101   xbt_fifo_postexit();
102   xbt_dict_postexit();
103   xbt_os_thread_mod_postexit();
104   xbt_dynar_free(&xbt_cmdline);
105   xbt_log_postexit();
106   free(xbt_binary_name);
107 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
108   mmalloc_postexit();
109 #endif
110 }
111
112 /** @brief Initialize the xbt mechanisms. */
113 void xbt_init(int *argc, char **argv)
114 {
115   if (xbt_initialized++) {
116     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
117     return;
118   }
119
120   xbt_binary_name = xbt_strdup(argv[0]);
121   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
122   int i;
123   for (i=0;i<*argc;i++) {
124     xbt_dynar_push(xbt_cmdline,&(argv[i]));
125   }
126   
127   xbt_log_init(argc, argv);
128 }
129
130 /** @brief Finalize the xbt mechanisms.
131  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
132 void xbt_exit()
133 {
134   XBT_WARN("This function is deprecated, you shouldn't use it");
135 }
136
137
138 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
139 /** @brief like free, but you can be sure that it is a function  */
140 XBT_PUBLIC(void) xbt_free_f(void *p)
141 {
142   free(p);
143 }
144
145 /** @brief should be given a pointer to pointer, and frees the second one */
146 XBT_PUBLIC(void) xbt_free_ref(void *d)
147 {
148   free(*(void **) d);
149 }