2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------
29 #include "creaMessageManager.h"
34 // Adapted from https://savannah.cern.ch/support/download.php?file_id=1972
36 // Something to which we can cast the void*s, to allow finding the
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
48 return run_time_up_or_down_cast(target_type,
50 const_cast<void*>(source_pointer));
53 void* run_time_up_or_down_cast( const std::type_info& target_type,
54 const std::type_info& source_type,
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);
64 void* target_pointer = 0;
66 (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 || \
67 (__GNUC_MINOR__ == 1 && \
68 __GNUC_PATCHLEVEL__ > 0)))
70 const abi::__class_type_info* targetTI =
71 (const abi::__class_type_info *)( &(target_type));
73 creaDebugMessage("info",7," * source = "<<source_pointer<<std::endl);
75 void* tmp = source_pointer;
76 if (source_type.__do_upcast(targetTI,&tmp))
82 creaDebugMessage("info",7,
83 " * upcast failed : trying dynamic down cast"
85 const abi::__class_type_info* sourceTI =
86 (const abi::__class_type_info *)( &(source_type));
89 target_pointer = abi::__dynamic_cast(source_pointer,
95 creaDebugMessage("info",7," * target = "<<target_pointer<<std::endl);
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);
101 return target_pointer;