xref: /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/cast.h (revision 04febcfb30580676d3e95f58a16c5137ee478b32)
1*e4b17023SJohn Marino // <cast.h> -*- C++ -*-
2*e4b17023SJohn Marino 
3*e4b17023SJohn Marino // Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
4*e4b17023SJohn Marino //
5*e4b17023SJohn Marino // This file is part of the GNU ISO C++ Library.  This library is free
6*e4b17023SJohn Marino // software; you can redistribute it and/or modify it under the
7*e4b17023SJohn Marino // terms of the GNU General Public License as published by the
8*e4b17023SJohn Marino // Free Software Foundation; either version 3, or (at your option)
9*e4b17023SJohn Marino // any later version.
10*e4b17023SJohn Marino 
11*e4b17023SJohn Marino // This library is distributed in the hope that it will be useful,
12*e4b17023SJohn Marino // but WITHOUT ANY WARRANTY; without even the implied warranty of
13*e4b17023SJohn Marino // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*e4b17023SJohn Marino // GNU General Public License for more details.
15*e4b17023SJohn Marino 
16*e4b17023SJohn Marino // Under Section 7 of GPL version 3, you are granted additional
17*e4b17023SJohn Marino // permissions described in the GCC Runtime Library Exception, version
18*e4b17023SJohn Marino // 3.1, as published by the Free Software Foundation.
19*e4b17023SJohn Marino 
20*e4b17023SJohn Marino // You should have received a copy of the GNU General Public License and
21*e4b17023SJohn Marino // a copy of the GCC Runtime Library Exception along with this program;
22*e4b17023SJohn Marino // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23*e4b17023SJohn Marino // <http://www.gnu.org/licenses/>.
24*e4b17023SJohn Marino 
25*e4b17023SJohn Marino /** @file ext/cast.h
26*e4b17023SJohn Marino  *  This is an internal header file, included by other library headers.
27*e4b17023SJohn Marino  *  Do not attempt to use it directly. @headername{ext/pointer.h}
28*e4b17023SJohn Marino  */
29*e4b17023SJohn Marino 
30*e4b17023SJohn Marino #ifndef _GLIBCXX_CAST_H
31*e4b17023SJohn Marino #define _GLIBCXX_CAST_H 1
32*e4b17023SJohn Marino 
_GLIBCXX_VISIBILITY(default)33*e4b17023SJohn Marino namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
34*e4b17023SJohn Marino {
35*e4b17023SJohn Marino _GLIBCXX_BEGIN_NAMESPACE_VERSION
36*e4b17023SJohn Marino 
37*e4b17023SJohn Marino   /**
38*e4b17023SJohn Marino    * These functions are here to allow containers to support non standard
39*e4b17023SJohn Marino    * pointer types.  For normal pointers, these resolve to the use of the
40*e4b17023SJohn Marino    * standard cast operation.  For other types the functions will perform
41*e4b17023SJohn Marino    * the apprpriate cast to/from the custom pointer class so long as that
42*e4b17023SJohn Marino    * class meets the following conditions:
43*e4b17023SJohn Marino    * 1) has a typedef element_type which names tehe type it points to.
44*e4b17023SJohn Marino    * 2) has a get() const method which returns element_type*.
45*e4b17023SJohn Marino    * 3) has a constructor which can take one element_type* argument.
46*e4b17023SJohn Marino    */
47*e4b17023SJohn Marino 
48*e4b17023SJohn Marino   /**
49*e4b17023SJohn Marino    * This type supports the semantics of the pointer cast operators (below.)
50*e4b17023SJohn Marino    */
51*e4b17023SJohn Marino   template<typename _ToType>
52*e4b17023SJohn Marino     struct _Caster
53*e4b17023SJohn Marino     { typedef typename _ToType::element_type*  type; };
54*e4b17023SJohn Marino 
55*e4b17023SJohn Marino   template<typename _ToType>
56*e4b17023SJohn Marino     struct _Caster<_ToType*>
57*e4b17023SJohn Marino     { typedef _ToType*  type; };
58*e4b17023SJohn Marino 
59*e4b17023SJohn Marino   /**
60*e4b17023SJohn Marino    * Casting operations for cases where _FromType is not a standard pointer.
61*e4b17023SJohn Marino    * _ToType can be a standard or non-standard pointer.  Given that _FromType
62*e4b17023SJohn Marino    * is not a pointer, it must have a get() method that returns the standard
63*e4b17023SJohn Marino    * pointer equivalent of the address it points to, and must have an
64*e4b17023SJohn Marino    * element_type typedef which names the type it points to.
65*e4b17023SJohn Marino    */
66*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
67*e4b17023SJohn Marino     inline _ToType
68*e4b17023SJohn Marino     __static_pointer_cast(const _FromType& __arg)
69*e4b17023SJohn Marino     { return _ToType(static_cast<typename _Caster<_ToType>::
70*e4b17023SJohn Marino 		     type>(__arg.get())); }
71*e4b17023SJohn Marino 
72*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
73*e4b17023SJohn Marino     inline _ToType
74*e4b17023SJohn Marino     __dynamic_pointer_cast(const _FromType& __arg)
75*e4b17023SJohn Marino     { return _ToType(dynamic_cast<typename _Caster<_ToType>::
76*e4b17023SJohn Marino 		     type>(__arg.get())); }
77*e4b17023SJohn Marino 
78*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
79*e4b17023SJohn Marino     inline _ToType
80*e4b17023SJohn Marino     __const_pointer_cast(const _FromType& __arg)
81*e4b17023SJohn Marino     { return _ToType(const_cast<typename _Caster<_ToType>::
82*e4b17023SJohn Marino 		     type>(__arg.get())); }
83*e4b17023SJohn Marino 
84*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
85*e4b17023SJohn Marino     inline _ToType
86*e4b17023SJohn Marino     __reinterpret_pointer_cast(const _FromType& __arg)
87*e4b17023SJohn Marino     { return _ToType(reinterpret_cast<typename _Caster<_ToType>::
88*e4b17023SJohn Marino 		     type>(__arg.get())); }
89*e4b17023SJohn Marino 
90*e4b17023SJohn Marino   /**
91*e4b17023SJohn Marino    * Casting operations for cases where _FromType is a standard pointer.
92*e4b17023SJohn Marino    * _ToType can be a standard or non-standard pointer.
93*e4b17023SJohn Marino    */
94*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
95*e4b17023SJohn Marino     inline _ToType
96*e4b17023SJohn Marino     __static_pointer_cast(_FromType* __arg)
97*e4b17023SJohn Marino     { return _ToType(static_cast<typename _Caster<_ToType>::
98*e4b17023SJohn Marino 		     type>(__arg)); }
99*e4b17023SJohn Marino 
100*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
101*e4b17023SJohn Marino     inline _ToType
102*e4b17023SJohn Marino     __dynamic_pointer_cast(_FromType* __arg)
103*e4b17023SJohn Marino     { return _ToType(dynamic_cast<typename _Caster<_ToType>::
104*e4b17023SJohn Marino 		     type>(__arg)); }
105*e4b17023SJohn Marino 
106*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
107*e4b17023SJohn Marino     inline _ToType
108*e4b17023SJohn Marino     __const_pointer_cast(_FromType* __arg)
109*e4b17023SJohn Marino     { return _ToType(const_cast<typename _Caster<_ToType>::
110*e4b17023SJohn Marino 		     type>(__arg)); }
111*e4b17023SJohn Marino 
112*e4b17023SJohn Marino   template<typename _ToType, typename _FromType>
113*e4b17023SJohn Marino     inline _ToType
114*e4b17023SJohn Marino     __reinterpret_pointer_cast(_FromType* __arg)
115*e4b17023SJohn Marino     { return _ToType(reinterpret_cast<typename _Caster<_ToType>::
116*e4b17023SJohn Marino 		     type>(__arg)); }
117*e4b17023SJohn Marino 
118*e4b17023SJohn Marino _GLIBCXX_END_NAMESPACE_VERSION
119*e4b17023SJohn Marino } // namespace
120*e4b17023SJohn Marino 
121*e4b17023SJohn Marino #endif // _GLIBCXX_CAST_H
122