Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b11a855161cf9c5ee8e4166833887fa55056913b
[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   srand48(seed);
95
96   atexit(xbt_postexit);
97 }
98
99 static void xbt_postexit(void)
100 {
101   if(!_sg_do_clean_atexit) return;
102   xbt_backtrace_postexit();
103   xbt_fifo_postexit();
104   xbt_dict_postexit();
105   xbt_os_thread_mod_postexit();
106   xbt_dynar_free(&xbt_cmdline);
107   xbt_log_postexit();
108   free(xbt_binary_name);
109 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
110   mmalloc_postexit();
111 #endif
112 }
113
114 /** @brief Initialize the xbt mechanisms. */
115 void xbt_init(int *argc, char **argv)
116 {
117   if (xbt_initialized++) {
118     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
119     return;
120   }
121
122   xbt_binary_name = xbt_strdup(argv[0]);
123   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
124   int i;
125   for (i=0;i<*argc;i++) {
126     xbt_dynar_push(xbt_cmdline,&(argv[i]));
127   }
128   
129   xbt_log_init(argc, argv);
130 }
131
132 /** @brief Finalize the xbt mechanisms.
133  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
134 void xbt_exit()
135 {
136   XBT_WARN("This function is deprecated, you shouldn't use it");
137 }
138
139
140 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
141 /** @brief like free, but you can be sure that it is a function  */
142 XBT_PUBLIC(void) xbt_free_f(void *p)
143 {
144   free(p);
145 }
146
147 /** @brief should be given a pointer to pointer, and frees the second one */
148 XBT_PUBLIC(void) xbt_free_ref(void *d)
149 {
150   free(*(void **) d);
151 }