Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused log categories.
[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 "time.h"               /* to seed the random generator */
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 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
23
24 char *xbt_binary_name = NULL;   /* Mandatory to retrieve neat backtraces */
25 int xbt_initialized = 0;
26
27 XBT_LOG_EXTERNAL_CATEGORY(graphxml_parse);
28 XBT_LOG_EXTERNAL_CATEGORY(log);
29 XBT_LOG_EXTERNAL_CATEGORY(module);
30 XBT_LOG_EXTERNAL_CATEGORY(peer);
31 XBT_LOG_EXTERNAL_CATEGORY(strbuff);
32 XBT_LOG_EXTERNAL_CATEGORY(xbt_cfg);
33 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
34 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_cursor);
35 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_elm);
36 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_multi);
37 XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
38 XBT_LOG_EXTERNAL_CATEGORY(xbt_ex);
39 XBT_LOG_EXTERNAL_CATEGORY(xbt_fifo);
40 XBT_LOG_EXTERNAL_CATEGORY(xbt_graph);
41 XBT_LOG_EXTERNAL_CATEGORY(xbt_matrix);
42 XBT_LOG_EXTERNAL_CATEGORY(xbt_queue);
43 XBT_LOG_EXTERNAL_CATEGORY(xbt_set);
44 XBT_LOG_EXTERNAL_CATEGORY(xbt_sync_os);
45 XBT_LOG_EXTERNAL_CATEGORY(xbt_parmap);
46 XBT_LOG_EXTERNAL_CATEGORY(xbt_parmap_unit);
47
48 int _surf_do_model_check = 0;   /* this variable is used accros the libraries, and must be declared in XBT so that it's also defined in GRAS (not only in libsimgrid) */
49
50 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
51  * This is crude and rather compiler-specific, unfortunately.
52  */
53 static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR;
54 static void xbt_postexit(void) _XBT_GNUC_DESTRUCTOR;
55
56 #ifdef _XBT_WIN32
57 # undef _XBT_NEED_INIT_PRAGMA
58 #endif
59
60 #ifdef _XBT_NEED_INIT_PRAGMA
61 #pragma init (xbt_preinit)
62 #pragma fini (xbt_postexit)
63 #endif
64
65 #ifdef _XBT_WIN32
66 #include <windows.h>
67
68 /* Dummy prototype to make gcc happy */
69 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
70                     LPVOID lpvReserved);
71
72
73 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
74 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
75 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
76                     LPVOID lpvReserved)
77 {
78   if (fdwReason == DLL_PROCESS_ATTACH) {
79     xbt_preinit();
80   } else if (fdwReason == DLL_PROCESS_DETACH) {
81     xbt_postexit();
82   }
83   return 1;
84 }
85
86
87 #endif
88
89 static void xbt_preinit(void)
90 {
91 #ifdef MMALLOC_WANT_OVERIDE_LEGACY
92   mmalloc_preinit();
93 #endif
94   xbt_log_preinit();
95
96   /* Connect our log channels: that must be done manually under windows */
97   XBT_LOG_CONNECT(graphxml_parse, xbt);
98   XBT_LOG_CONNECT(log, xbt);
99   XBT_LOG_CONNECT(module, xbt);
100   XBT_LOG_CONNECT(peer, xbt);
101   XBT_LOG_CONNECT(strbuff, xbt);
102   XBT_LOG_CONNECT(xbt_cfg, xbt);
103   XBT_LOG_CONNECT(xbt_dict, xbt);
104   XBT_LOG_CONNECT(xbt_dict_cursor, xbt_dict);
105   XBT_LOG_CONNECT(xbt_dict_elm, xbt_dict);
106   XBT_LOG_CONNECT(xbt_dict_multi, xbt_dict);
107   XBT_LOG_CONNECT(xbt_dyn, xbt);
108   XBT_LOG_CONNECT(xbt_ex, xbt);
109   XBT_LOG_CONNECT(xbt_fifo, xbt);
110   XBT_LOG_CONNECT(xbt_graph, xbt);
111   XBT_LOG_CONNECT(xbt_matrix, xbt);
112   XBT_LOG_CONNECT(xbt_queue, xbt);
113   XBT_LOG_CONNECT(xbt_set, xbt);
114   XBT_LOG_CONNECT(xbt_sync_os, xbt);
115   XBT_LOG_CONNECT(xbt_parmap,xbt);
116   XBT_LOG_CONNECT(xbt_parmap_unit,xbt_parmap);
117
118
119   xbt_backtrace_preinit();
120   xbt_os_thread_mod_preinit();
121   xbt_fifo_preinit();
122   xbt_dict_preinit();
123 }
124
125 static void xbt_postexit(void)
126 {
127   xbt_backtrace_postexit();
128
129   xbt_fifo_postexit();
130   xbt_dict_postexit();
131
132   xbt_log_postexit();
133   xbt_os_thread_mod_postexit();
134
135   free(xbt_binary_name);
136 #ifdef MMALLOC_WANT_OVERIDE_LEGACY
137   mmalloc_postexit();
138 #endif
139 }
140
141 /** @brief Initialize the xbt mechanisms. */
142 void xbt_init(int *argc, char **argv)
143 {
144   // FIXME it would be nice to assert that this function is called only once. But each gras process do call it...
145   xbt_initialized++;
146
147   if (xbt_initialized > 1)
148     return;
149
150   xbt_binary_name = xbt_strdup(argv[0]);
151   srand((unsigned int) time(NULL));
152   XBT_VERB("Initialize XBT");
153
154   xbt_log_init(argc, argv);
155 }
156
157 /** @brief Finalize the xbt mechanisms. */
158 void xbt_exit()
159 {
160   XBT_WARN("This function is deprecated, you shouldn't use it");
161 }
162
163
164 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
165 /** @brief like free, but you can be sure that it is a function  */
166 XBT_PUBLIC(void) xbt_free_f(void *p)
167 {
168   free(p);
169 }
170
171 /** @brief should be given a pointer to pointer, and frees the second one */
172 XBT_PUBLIC(void) xbt_free_ref(void *d)
173 {
174   free(*(void **) d);
175 }