]> Creatis software - crea.git/blob - src/creaRTTI.cxx
#3180 crea Feature New Normal Future - Set wx-config for wxWidgets 2.8
[crea.git] / src / creaRTTI.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ 
26 */ 
27
28 #include "creaRTTI.h"
29 #include "creaMessageManager.h"
30
31  
32 namespace crea
33 {
34   // Adapted from https://savannah.cern.ch/support/download.php?file_id=1972
35   
36   // Something to which we can cast the void*s, to allow finding the
37   // dynamic typeid.
38   struct Dummy {
39     virtual ~Dummy() {}
40   };
41   
42
43  void*  run_time_up_or_down_cast( const std::type_info& target_type,
44                                const std::type_info& source_type,
45                                const void*  source_pointer
46                                )
47  {
48    return run_time_up_or_down_cast(target_type,
49                                    source_type,
50                                    const_cast<void*>(source_pointer));
51  }
52
53   void*   run_time_up_or_down_cast( const std::type_info& target_type,
54                                const std::type_info& source_type,
55                                void*  source_pointer
56                                )
57   {
58     creaDebugMessage("info",5,
59                      "run_time_up_or_down_cast : Casting pointer to '" 
60                      << TypeName(typeid(*(Dummy*)source_pointer)) 
61                      << "' from " << TypeName(source_type) 
62                      << " to " << TypeName(target_type) << std::endl);
63
64     void* target_pointer = 0;
65 #if __GNUC__ > 3 ||                                     \
66   (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 ||              \
67                      (__GNUC_MINOR__ == 1 &&            \
68                       __GNUC_PATCHLEVEL__ > 0)))
69     
70     const abi::__class_type_info* targetTI = 
71       (const abi::__class_type_info *)( &(target_type));
72     
73     creaDebugMessage("info",7," * source   = "<<source_pointer<<std::endl);
74
75     void* tmp = source_pointer;
76     if (source_type.__do_upcast(targetTI,&tmp))
77       {
78         target_pointer = tmp;
79       }
80     else 
81       {
82         creaDebugMessage("info",7,
83                          " * upcast failed : trying dynamic down cast"
84                          <<std::endl);
85         const abi::__class_type_info* sourceTI = 
86           (const abi::__class_type_info *)( &(source_type));
87         
88         
89         target_pointer = abi::__dynamic_cast(source_pointer, 
90                                              sourceTI, 
91                                              targetTI, 
92                                              -1);   
93       }
94     
95     creaDebugMessage("info",7," * target   = "<<target_pointer<<std::endl);
96     
97 #else
98     creaWarning("run_time_up_or_down_cast not impl. on Win : to do");
99     // target_pointer = __RTDynamicCast(source_pointer, 0, source_type, target_type, 0);
100 #endif
101     return target_pointer;
102     
103   }
104
105 }
106