]> Creatis software - bbtk.git/blob - kernel/src/bbtkDynamicLibraryHandling.h
a30fb81dd662391eac3853ed51198292f097097a
[bbtk.git] / kernel / src / bbtkDynamicLibraryHandling.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkDynamicLibraryHandling.h,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:13 $
6   Version:   $Revision: 1.2 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *\file
33  *\brief Dynamic library loading stuff (OS dependent)
34  */
35
36 // System dependent includes for loading dynamic libraries
37 #if defined(__GNUC__)
38 // GCC compiler
39
40 // dlopen, dlsym, etc.
41 #include <dlfcn.h>
42
43 // dlopen loading mode : 
44 // instant/delayed symbol resolution
45 #ifndef BBTK_RTLD_NOW
46 #  define BBTK_RTLD_TIME RTLD_LAZY
47 #else
48 #  define BBTK_RTLD_TIME RTLD_NOW
49 #endif
50 // local/global symbol loading
51 // one **MUST** use RTLD_GLOBAL in order to have 
52 // the RTTI mechanism travel correctly across packages (typeid,dynamic_cast...)
53 // however this can cause problems (symbol clashes) ...
54 // see :
55 // http://gcc.gnu.org/faq.html#dso
56 // http://gcc.gnu.org/ml/gcc/2003-04/msg00256.html
57 // http://gcc.gnu.org/ml/gcc-bugs/2003-10/msg02771.html
58 #ifndef BBTK_RTLD_LOCAL
59 #  define BBTK_RTLD_SCOPE RTLD_GLOBAL
60 #else 
61 #  define BBTK_RTLD_SCOPE RTLD_LOCAL
62 #endif
63
64 // dl handler type
65 namespace bbtk 
66 {
67   typedef void* DynamicLibraryHandler;
68 }
69
70 #elif defined(_WIN32)
71 // Win32
72 // HINSTANCE, LoadLibrary, etc. definition
73 #include "Windows.h"
74 // dl handler type
75 namespace bbtk 
76 {
77   typedef HINSTANCE DynamicLibraryHandler;
78 }
79
80 #else
81
82 ERROR !! DYNAMIC LIBRARY LOADING NOT IMPLEMENTED FOR YOUR SYSTEM
83
84 #endif