Logo AND Algorithmique Numérique Distribuée

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