]> Creatis software - crea.git/blob - src/creaRTTI.cxx
#3374 crea Bug New Normal - vtk8itk5wx3-mingw64
[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     
66   
67   
68 //  #if __APPLE__
69 //  //EED2018-08-28  Be careful  #include <typeinfo> is not complete  (CommandLine mechanisme Xcode)
70 //  printf("EED creaRTTI  run_time_up_or_down_cast   2018-08-28 Warnning !!!!  Apple cast missing  __do_upcast   ");
71 //      return source_pointer;
72 //  #else
73  #if __GNUC__ > 3 ||                                    \
74    (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 ||             \
75                      (__GNUC_MINOR__ == 1 &&            \
76                       __GNUC_PATCHLEVEL__ > 0)))    
77     const abi::__class_type_info* targetTI = (const abi::__class_type_info *)( &(target_type));
78     creaDebugMessage("info",7," * source   = "<<source_pointer<<std::endl);
79     void* tmp = source_pointer;
80     if (source_type.__do_upcast(targetTI,&tmp))
81     {
82                 target_pointer = tmp;
83     } else {
84                 creaDebugMessage("info",7, " * upcast failed : trying dynamic down cast" <<std::endl);
85                 const abi::__class_type_info* sourceTI = (const abi::__class_type_info *)( &(source_type));
86         target_pointer = abi::__dynamic_cast(source_pointer, 
87                                              sourceTI, 
88                                              targetTI, 
89                                              -1);   
90       }
91     creaDebugMessage("info",7," * target   = "<<target_pointer<<std::endl);
92   #else
93     creaWarning("run_time_up_or_down_cast not impl. on Win : to do");
94     // target_pointer = __RTDynamicCast(source_pointer, 0, source_type, target_type, 0);
95   #endif
96     return target_pointer;
97     
98 //  #endif 
99
100  
101     
102   }
103
104 }
105