Logo AND Algorithmique Numérique Distribuée

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