Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2ca0ed635a99a068c9c543c85b887da80da869b8
[simgrid.git] / src / xbt / xbt_main.c
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006, 2007, 2008, 2009, 2010. 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 "gras_config.h"        /* MMALLOC_WANT_OVERRIDE_LEGACY */
12 #include "time.h"               /* to seed the random generator */
13
14 #include "xbt/sysdep.h"
15 #include "xbt/log.h"
16 #include "xbt/dynar.h"
17 #include "xbt/config.h"
18
19 #include "xbt/module.h"         /* this module */
20
21 #include "xbt_modinter.h"       /* prototype of other module's init/exit in XBT */
22
23 XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
25
26 char *xbt_binary_name = NULL;   /* Mandatory to retrieve neat backtraces */
27 int xbt_initialized = 0;
28
29 int _surf_do_model_check = 0;
30 int _surf_mc_checkpoint=0;
31 char* _surf_mc_property_file=NULL;
32
33 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
34  * This is crude and rather compiler-specific, unfortunately.
35  */
36 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
37 static void xbt_postexit(void) _XBT_GNUC_DESTRUCTOR(200);
38
39 #ifdef _XBT_WIN32
40 # undef _XBT_NEED_INIT_PRAGMA
41 #endif
42
43 #ifdef _XBT_NEED_INIT_PRAGMA
44 #pragma init (xbt_preinit)
45 #pragma fini (xbt_postexit)
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       xbt_postexit();
74   }
75   return 1;
76 }
77 #endif
78
79 #endif
80
81 static void xbt_preinit(void)
82 {
83 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
84   mmalloc_preinit();
85 #endif
86   xbt_log_preinit();
87
88   xbt_backtrace_preinit();
89   xbt_os_thread_mod_preinit();
90   xbt_fifo_preinit();
91   xbt_dict_preinit();
92   xbt_datadesc_preinit();
93   xbt_trp_preinit();
94 }
95
96 static void xbt_postexit(void)
97 {
98   xbt_trp_postexit();
99   xbt_datadesc_postexit();
100
101   xbt_backtrace_postexit();
102
103   xbt_fifo_postexit();
104   xbt_dict_postexit();
105
106   xbt_log_postexit();
107   xbt_os_thread_mod_postexit();
108
109   free(xbt_binary_name);
110 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
111   mmalloc_postexit();
112 #endif
113 }
114
115 /** @brief Initialize the xbt mechanisms. */
116 void xbt_init(int *argc, char **argv)
117 {
118   // FIXME it would be nice to assert that this function is called only once. But each gras process do call it...
119   xbt_initialized++;
120
121   if (xbt_initialized > 1)
122     return;
123
124   xbt_binary_name = xbt_strdup(argv[0]);
125   srand((unsigned int) time(NULL));
126
127   xbt_log_init(argc, argv);
128 }
129
130 /** @brief Finalize the xbt mechanisms. */
131 void xbt_exit()
132 {
133   XBT_WARN("This function is deprecated, you shouldn't use it");
134 }
135
136
137 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
138 /** @brief like free, but you can be sure that it is a function  */
139 XBT_PUBLIC(void) xbt_free_f(void *p)
140 {
141   free(p);
142 }
143
144 /** @brief should be given a pointer to pointer, and frees the second one */
145 XBT_PUBLIC(void) xbt_free_ref(void *d)
146 {
147   free(*(void **) d);
148 }