Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
47bef26598cbd293b65bb7f95ae5cbb2edba8712
[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 "time.h"               /* to seed the random generator */
11
12 #include "xbt/sysdep.h"
13 #include "xbt/log.h"
14 #include "xbt/dynar.h"
15 #include "xbt/config.h"
16
17 #include "xbt/module.h"         /* this module */
18
19 #include "xbt_modinter.h"       /* prototype of other module's init/exit in XBT */
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
22
23 char *xbt_binary_name = NULL;   /* Mandatory to retrieve neat backtraces */
24 int xbt_initialized = 0;
25
26 XBT_LOG_EXTERNAL_CATEGORY(graphxml_parse);
27 XBT_LOG_EXTERNAL_CATEGORY(log);
28 XBT_LOG_EXTERNAL_CATEGORY(module);
29 XBT_LOG_EXTERNAL_CATEGORY(peer);
30 XBT_LOG_EXTERNAL_CATEGORY(strbuff);
31 XBT_LOG_EXTERNAL_CATEGORY(xbt_cfg);
32 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
33 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_add);
34 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_collapse);
35 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_cursor);
36 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_elm);
37 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_multi);
38 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_remove);
39 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_search);
40 XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
41 XBT_LOG_EXTERNAL_CATEGORY(xbt_ex);
42 XBT_LOG_EXTERNAL_CATEGORY(xbt_fifo);
43 XBT_LOG_EXTERNAL_CATEGORY(xbt_graph);
44 XBT_LOG_EXTERNAL_CATEGORY(xbt_matrix);
45 XBT_LOG_EXTERNAL_CATEGORY(xbt_queue);
46 XBT_LOG_EXTERNAL_CATEGORY(xbt_set);
47 XBT_LOG_EXTERNAL_CATEGORY(xbt_sync_os);
48
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 #ifdef _XBT_NEED_INIT_PRAGMA
56 #pragma init (xbt_preinit)
57 #pragma fini (xbt_postexit)
58 #endif
59
60 #ifdef WIN32
61 #include <windows.h>
62
63 /* Dummy prototype to make gcc happy */
64 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
65
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, LPVOID lpvReserved) {
70   if (fdwReason == DLL_PROCESS_ATTACH) {
71     xbt_preinit();
72   } else if (fdwReason == DLL_PROCESS_DETACH) {
73     xbt_postexit();
74   }
75   return 1;
76 }
77
78
79 #endif
80
81 static void xbt_preinit(void) {
82         #ifdef HAVE_MMAP
83           mmalloc_preinit();
84         #endif
85   xbt_log_preinit();
86
87   /* Connect our log channels: that must be done manually under windows */
88   XBT_LOG_CONNECT(graphxml_parse, xbt);
89   XBT_LOG_CONNECT(log, xbt);
90   XBT_LOG_CONNECT(module, xbt);
91   XBT_LOG_CONNECT(peer, xbt);
92   XBT_LOG_CONNECT(strbuff, xbt);
93   XBT_LOG_CONNECT(xbt_cfg, xbt);
94   XBT_LOG_CONNECT(xbt_dict, xbt);
95   XBT_LOG_CONNECT(xbt_dict_add, xbt_dict);
96   XBT_LOG_CONNECT(xbt_dict_collapse, xbt_dict);
97   XBT_LOG_CONNECT(xbt_dict_cursor, xbt_dict);
98   XBT_LOG_CONNECT(xbt_dict_elm, xbt_dict);
99   XBT_LOG_CONNECT(xbt_dict_multi, xbt_dict);
100   XBT_LOG_CONNECT(xbt_dict_remove, xbt_dict);
101   XBT_LOG_CONNECT(xbt_dict_search, xbt_dict);
102   XBT_LOG_CONNECT(xbt_dyn, xbt);
103   XBT_LOG_CONNECT(xbt_ex, xbt);
104   XBT_LOG_CONNECT(xbt_fifo, xbt);
105   XBT_LOG_CONNECT(xbt_graph, xbt);
106   XBT_LOG_CONNECT(xbt_matrix, xbt);
107   XBT_LOG_CONNECT(xbt_queue, xbt);
108   XBT_LOG_CONNECT(xbt_set, xbt);
109   XBT_LOG_CONNECT(xbt_sync_os, xbt);
110
111   xbt_fifo_preinit();
112   xbt_dict_preinit();
113
114   xbt_backtrace_preinit();
115   xbt_os_thread_mod_preinit();
116 }
117
118 static void xbt_postexit(void) {
119   xbt_os_thread_mod_postexit();
120   xbt_backtrace_postexit();
121
122   xbt_fifo_postexit();
123   xbt_dict_postexit();
124
125   xbt_log_postexit();
126
127   free(xbt_binary_name);
128 #ifdef HAVE_MMAP
129   mmalloc_postexit();
130 #endif
131 }
132
133 /** @brief Initialize the xbt mechanisms. */
134 void xbt_init(int *argc, char **argv)
135 {
136   // FIXME it would be nice to assert that this function is called only once. But each gras process do call it...
137   xbt_initialized++;
138
139   if (xbt_initialized >1)
140     return;
141
142   xbt_binary_name = xbt_strdup(argv[0]);
143   srand((unsigned int) time(NULL));
144   VERB0("Initialize XBT");
145
146   xbt_log_init(argc, argv);
147 }
148
149 /** @brief Finalize the xbt mechanisms. */
150 void xbt_exit() {
151   WARN0("This function is deprecated, you shouldn't use it");
152 }
153
154
155 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
156 /** @brief like free, but you can be sure that it is a function  */
157 XBT_PUBLIC(void) xbt_free_f(void *p) {
158   free(p);
159 }
160
161 /** @brief should be given a pointer to pointer, and frees the second one */
162 XBT_PUBLIC(void) xbt_free_ref(void *d)
163 {
164   free(*(void **) d);
165 }