]> Creatis software - crea.git/blob - src/creaRTTI.cxx
add previous authors
[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  
33 namespace crea
34 {
35   // Adapted from https://savannah.cern.ch/support/download.php?file_id=1972
36   
37   // Something to which we can cast the void*s, to allow finding the
38   // dynamic typeid.
39   struct Dummy {
40     virtual ~Dummy() {}
41   };
42   
43
44  void*  run_time_up_or_down_cast( const std::type_info& target_type,
45                                const std::type_info& source_type,
46                                const void*  source_pointer
47                                )
48  {
49    return run_time_up_or_down_cast(target_type,
50                                    source_type,
51                                    const_cast<void*>(source_pointer));
52  }
53
54   void*   run_time_up_or_down_cast( const std::type_info& target_type,
55                                const std::type_info& source_type,
56                                void*  source_pointer
57                                )
58   {
59     creaDebugMessage("info",5,
60                      "run_time_up_or_down_cast : Casting pointer to '" 
61                      << TypeName(typeid(*(Dummy*)source_pointer)) 
62                      << "' from " << TypeName(source_type) 
63                      << " to " << TypeName(target_type) << std::endl);
64
65     void* target_pointer = 0;
66 #if __GNUC__ > 3 ||                                     \
67   (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 ||              \
68                      (__GNUC_MINOR__ == 1 &&            \
69                       __GNUC_PATCHLEVEL__ > 0)))
70     
71     const abi::__class_type_info* targetTI = 
72       (const abi::__class_type_info *)( &(target_type));
73     
74     creaDebugMessage("info",7," * source   = "<<source_pointer<<std::endl);
75
76     void* tmp = source_pointer;
77     if (source_type.__do_upcast(targetTI,&tmp)) 
78       {
79         target_pointer = tmp;
80       }
81     else 
82       {
83         creaDebugMessage("info",7,
84                          " * upcast failed : trying dynamic down cast"
85                          <<std::endl);
86         const abi::__class_type_info* sourceTI = 
87           (const abi::__class_type_info *)( &(source_type));
88         
89         
90         target_pointer = abi::__dynamic_cast(source_pointer, 
91                                              sourceTI, 
92                                              targetTI, 
93                                              -1);   
94       }
95     
96     creaDebugMessage("info",7," * target   = "<<target_pointer<<std::endl);
97     
98 #else
99     creaWarning("run_time_up_or_down_cast not impl. on Win : to do");
100     // target_pointer = __RTDynamicCast(source_pointer, 0, source_type, target_type, 0);
101 #endif
102     return target_pointer;
103     
104   }
105
106 }
107