Logo AND Algorithmique Numérique Distribuée

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