Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'v3_9_x' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into v3_9_x
[simgrid.git] / src / xbt / xbt_main.c
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2012. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "xbt/misc.h"
9 #include "simgrid_config.h"     /*HAVE_MMAP _XBT_WIN32 */
10 #include "internal_config.h"        /* MMALLOC_WANT_OVERRIDE_LEGACY */
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_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
24
25 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) */
26
27
28 char *xbt_binary_name = NULL;   /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
29 xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */
30
31 int xbt_initialized = 0;
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);
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 #endif
46
47 #ifdef _XBT_WIN32
48 #include <windows.h>
49
50 #ifndef __GNUC__
51 /* Dummy prototype to make gcc happy */
52 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
53                     LPVOID lpvReserved);
54
55 /* Should not be necessary but for some reason,
56  * DllMain is called twice at attachment and
57  * at detachment.*/
58 static int xbt_dll_process_is_attached = 0;
59
60 /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */
61 /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */
62 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
63                     LPVOID lpvReserved)
64 {
65   if (fdwReason == DLL_PROCESS_ATTACH
66       && xbt_dll_process_is_attached == 0) {
67     xbt_dll_process_is_attached = 1;
68     xbt_preinit();
69   } else if (fdwReason == DLL_PROCESS_DETACH
70       && xbt_dll_process_is_attached == 1) {
71     xbt_dll_process_is_attached = 0;
72   }
73   return 1;
74 }
75 #endif
76
77 #endif
78
79 static void xbt_preinit(void)
80 {
81 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
82   mmalloc_preinit();
83 #endif
84   xbt_log_preinit();
85   xbt_backtrace_preinit();
86   xbt_os_thread_mod_preinit();
87   xbt_fifo_preinit();
88   xbt_dict_preinit();
89   atexit(xbt_postexit);
90 }
91
92 static void xbt_postexit(void)
93 {
94   xbt_backtrace_postexit();
95   xbt_fifo_postexit();
96   xbt_dict_postexit();
97   xbt_os_thread_mod_postexit();
98   xbt_dynar_free(&xbt_cmdline);
99   xbt_log_postexit();
100   free(xbt_binary_name);
101 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
102   mmalloc_postexit();
103 #endif
104 }
105
106 /** @brief Initialize the xbt mechanisms. */
107 void xbt_init(int *argc, char **argv)
108 {
109   if (xbt_initialized++) {
110     XBT_DEBUG("XBT was initialized %d times.", xbt_initialized);
111     return;
112   }
113
114   xbt_binary_name = xbt_strdup(argv[0]);
115   xbt_cmdline = xbt_dynar_new(sizeof(char*),NULL);
116   int i;
117   for (i=0;i<*argc;i++) {
118     xbt_dynar_push(xbt_cmdline,&(argv[i]));
119   }
120
121   srand((unsigned int) time(NULL));
122
123   xbt_log_init(argc, argv);
124 }
125
126 /** @brief Finalize the xbt mechanisms.
127  *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
128 void xbt_exit()
129 {
130   XBT_WARN("This function is deprecated, you shouldn't use it");
131 }
132
133
134 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
135 /** @brief like free, but you can be sure that it is a function  */
136 XBT_PUBLIC(void) xbt_free_f(void *p)
137 {
138   free(p);
139 }
140
141 /** @brief should be given a pointer to pointer, and frees the second one */
142 XBT_PUBLIC(void) xbt_free_ref(void *d)
143 {
144   free(*(void **) d);
145 }