Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/xbt_host_t/xbt_peer_t/
[simgrid.git] / src / xbt / module.c
1 /* $Id$ */
2
3 /* module handling                                                          */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/dynar.h"
13 #include "xbt/config.h"
14
15 #include "xbt/module.h" /* this module */
16
17 #include "xbt_modinter.h"  /* prototype of other module's init/exit in XBT */
18
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module,xbt, "module handling");
20
21 char *xbt_binary_name=NULL; /* Mandatory to retrieve neat backtraces */
22 int xbt_initialized=0;
23
24 struct xbt_module_ {
25   xbt_dynar_t *deps;
26   xbt_cfg_t *cfg;
27   int ref;
28   xbt_module_new_fct_t new;
29   xbt_module_finalize_fct_t finalize;
30 };
31
32 /** @brief Initialize the xbt mechanisms. */
33 void 
34 xbt_init(int *argc, char **argv) {
35   xbt_initialized++;
36
37   if (xbt_initialized!=1)
38     return;
39
40   xbt_binary_name = strdup(argv[0]);
41   VERB0("Initialize XBT");
42   
43   xbt_log_init(argc,argv);
44 }
45
46 /** @brief Finalize the xbt mechanisms. */
47 void 
48 xbt_exit(){
49   xbt_initialized--;
50   if (xbt_initialized == 0)
51      free(xbt_binary_name);
52   xbt_log_exit();
53 }
54