os/ossrv/ossrv_pub/boost_apis/boost/cast.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  boost cast.hpp header file  ----------------------------------------------//
sl@0
     2
sl@0
     3
//  (C) Copyright Kevlin Henney and Dave Abrahams 1999.
sl@0
     4
//  Distributed under the Boost
sl@0
     5
//  Software License, Version 1.0. (See accompanying file
sl@0
     6
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     7
sl@0
     8
//  See http://www.boost.org/libs/conversion for Documentation.
sl@0
     9
sl@0
    10
//  Revision History
sl@0
    11
//  23 JUn 05  numeric_cast removed and redirected to the new verion (Fernando Cacciola)
sl@0
    12
//  02 Apr 01  Removed BOOST_NO_LIMITS workarounds and included
sl@0
    13
//             <boost/limits.hpp> instead (the workaround did not
sl@0
    14
//             actually compile when BOOST_NO_LIMITS was defined in
sl@0
    15
//             any case, so we loose nothing). (John Maddock)
sl@0
    16
//  21 Jan 01  Undid a bug I introduced yesterday. numeric_cast<> never
sl@0
    17
//             worked with stock GCC; trying to get it to do that broke
sl@0
    18
//             vc-stlport.
sl@0
    19
//  20 Jan 01  Moved BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS to config.hpp.
sl@0
    20
//             Removed unused BOOST_EXPLICIT_TARGET macro. Moved
sl@0
    21
//             boost::detail::type to boost/type.hpp. Made it compile with
sl@0
    22
//             stock gcc again (Dave Abrahams)
sl@0
    23
//  29 Nov 00  Remove nested namespace cast, cleanup spacing before Formal
sl@0
    24
//             Review (Beman Dawes)
sl@0
    25
//  19 Oct 00  Fix numeric_cast for floating-point types (Dave Abrahams)
sl@0
    26
//  15 Jul 00  Suppress numeric_cast warnings for GCC, Borland and MSVC
sl@0
    27
//             (Dave Abrahams)
sl@0
    28
//  30 Jun 00  More MSVC6 wordarounds.  See comments below.  (Dave Abrahams)
sl@0
    29
//  28 Jun 00  Removed implicit_cast<>.  See comment below. (Beman Dawes)
sl@0
    30
//  27 Jun 00  More MSVC6 workarounds
sl@0
    31
//  15 Jun 00  Add workarounds for MSVC6
sl@0
    32
//   2 Feb 00  Remove bad_numeric_cast ";" syntax error (Doncho Angelov)
sl@0
    33
//  26 Jan 00  Add missing throw() to bad_numeric_cast::what(0 (Adam Levar)
sl@0
    34
//  29 Dec 99  Change using declarations so usages in other namespaces work
sl@0
    35
//             correctly (Dave Abrahams)
sl@0
    36
//  23 Sep 99  Change polymorphic_downcast assert to also detect M.I. errors
sl@0
    37
//             as suggested Darin Adler and improved by Valentin Bonnard.
sl@0
    38
//   2 Sep 99  Remove controversial asserts, simplify, rename.
sl@0
    39
//  30 Aug 99  Move to cast.hpp, replace value_cast with numeric_cast,
sl@0
    40
//             place in nested namespace.
sl@0
    41
//   3 Aug 99  Initial version
sl@0
    42
sl@0
    43
#ifndef BOOST_CAST_HPP
sl@0
    44
#define BOOST_CAST_HPP
sl@0
    45
sl@0
    46
# include <boost/config.hpp>
sl@0
    47
# include <boost/assert.hpp>
sl@0
    48
# include <typeinfo>
sl@0
    49
# include <boost/type.hpp>
sl@0
    50
# include <boost/limits.hpp>
sl@0
    51
# include <boost/detail/select_type.hpp>
sl@0
    52
sl@0
    53
//  It has been demonstrated numerous times that MSVC 6.0 fails silently at link
sl@0
    54
//  time if you use a template function which has template parameters that don't
sl@0
    55
//  appear in the function's argument list.
sl@0
    56
//
sl@0
    57
//  TODO: Add this to config.hpp?
sl@0
    58
# if defined(BOOST_MSVC) && BOOST_MSVC < 1300
sl@0
    59
#  define BOOST_EXPLICIT_DEFAULT_TARGET , ::boost::type<Target>* = 0
sl@0
    60
# else
sl@0
    61
#  define BOOST_EXPLICIT_DEFAULT_TARGET
sl@0
    62
# endif
sl@0
    63
sl@0
    64
namespace boost
sl@0
    65
{
sl@0
    66
//  See the documentation for descriptions of how to choose between
sl@0
    67
//  static_cast<>, dynamic_cast<>, polymorphic_cast<> and polymorphic_downcast<>
sl@0
    68
sl@0
    69
//  polymorphic_cast  --------------------------------------------------------//
sl@0
    70
sl@0
    71
    //  Runtime checked polymorphic downcasts and crosscasts.
sl@0
    72
    //  Suggested in The C++ Programming Language, 3rd Ed, Bjarne Stroustrup,
sl@0
    73
    //  section 15.8 exercise 1, page 425.
sl@0
    74
sl@0
    75
    template <class Target, class Source>
sl@0
    76
    inline Target polymorphic_cast(Source* x BOOST_EXPLICIT_DEFAULT_TARGET)
sl@0
    77
    {
sl@0
    78
        Target tmp = dynamic_cast<Target>(x);
sl@0
    79
        if ( tmp == 0 ) throw std::bad_cast();
sl@0
    80
        return tmp;
sl@0
    81
    }
sl@0
    82
sl@0
    83
//  polymorphic_downcast  ----------------------------------------------------//
sl@0
    84
sl@0
    85
    //  BOOST_ASSERT() checked polymorphic downcast.  Crosscasts prohibited.
sl@0
    86
sl@0
    87
    //  WARNING: Because this cast uses BOOST_ASSERT(), it violates
sl@0
    88
    //  the One Definition Rule if used in multiple translation units
sl@0
    89
    //  where BOOST_DISABLE_ASSERTS, BOOST_ENABLE_ASSERT_HANDLER
sl@0
    90
    //  NDEBUG are defined inconsistently.
sl@0
    91
sl@0
    92
    //  Contributed by Dave Abrahams
sl@0
    93
sl@0
    94
    template <class Target, class Source>
sl@0
    95
    inline Target polymorphic_downcast(Source* x BOOST_EXPLICIT_DEFAULT_TARGET)
sl@0
    96
    {
sl@0
    97
        BOOST_ASSERT( dynamic_cast<Target>(x) == x );  // detect logic error
sl@0
    98
        return static_cast<Target>(x);
sl@0
    99
    }
sl@0
   100
sl@0
   101
#  undef BOOST_EXPLICIT_DEFAULT_TARGET
sl@0
   102
sl@0
   103
} // namespace boost
sl@0
   104
sl@0
   105
# include <boost/numeric/conversion/cast.hpp>
sl@0
   106
sl@0
   107
#endif  // BOOST_CAST_HPP