os/ossrv/ossrv_pub/boost_apis/boost/any.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// See http://www.boost.org/libs/any for Documentation.
sl@0
     2
sl@0
     3
#ifndef BOOST_ANY_INCLUDED
sl@0
     4
#define BOOST_ANY_INCLUDED
sl@0
     5
sl@0
     6
// what:  variant type boost::any
sl@0
     7
// who:   contributed by Kevlin Henney,
sl@0
     8
//        with features contributed and bugs found by
sl@0
     9
//        Ed Brey, Mark Rodgers, Peter Dimov, and James Curran
sl@0
    10
// when:  July 2001
sl@0
    11
// where: tested with BCC 5.5, MSVC 6.0, and g++ 2.95
sl@0
    12
sl@0
    13
#include <algorithm>
sl@0
    14
#include <typeinfo>
sl@0
    15
sl@0
    16
#include "boost/config.hpp"
sl@0
    17
#include <boost/type_traits/remove_reference.hpp>
sl@0
    18
#include <boost/type_traits/is_reference.hpp>
sl@0
    19
#include <boost/throw_exception.hpp>
sl@0
    20
#include <boost/static_assert.hpp>
sl@0
    21
sl@0
    22
namespace boost
sl@0
    23
{
sl@0
    24
    class any
sl@0
    25
    {
sl@0
    26
    public: // structors
sl@0
    27
sl@0
    28
        any()
sl@0
    29
          : content(0)
sl@0
    30
        {
sl@0
    31
        }
sl@0
    32
sl@0
    33
        template<typename ValueType>
sl@0
    34
        any(const ValueType & value)
sl@0
    35
          : content(new holder<ValueType>(value))
sl@0
    36
        {
sl@0
    37
        }
sl@0
    38
sl@0
    39
        any(const any & other)
sl@0
    40
          : content(other.content ? other.content->clone() : 0)
sl@0
    41
        {
sl@0
    42
        }
sl@0
    43
sl@0
    44
        ~any()
sl@0
    45
        {
sl@0
    46
            delete content;
sl@0
    47
        }
sl@0
    48
sl@0
    49
    public: // modifiers
sl@0
    50
sl@0
    51
        any & swap(any & rhs)
sl@0
    52
        {
sl@0
    53
            std::swap(content, rhs.content);
sl@0
    54
            return *this;
sl@0
    55
        }
sl@0
    56
sl@0
    57
        template<typename ValueType>
sl@0
    58
        any & operator=(const ValueType & rhs)
sl@0
    59
        {
sl@0
    60
            any(rhs).swap(*this);
sl@0
    61
            return *this;
sl@0
    62
        }
sl@0
    63
sl@0
    64
        any & operator=(const any & rhs)
sl@0
    65
        {
sl@0
    66
            any(rhs).swap(*this);
sl@0
    67
            return *this;
sl@0
    68
        }
sl@0
    69
sl@0
    70
    public: // queries
sl@0
    71
sl@0
    72
        bool empty() const
sl@0
    73
        {
sl@0
    74
            return !content;
sl@0
    75
        }
sl@0
    76
sl@0
    77
        const std::type_info & type() const
sl@0
    78
        {
sl@0
    79
            return content ? content->type() : typeid(void);
sl@0
    80
        }
sl@0
    81
sl@0
    82
#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
sl@0
    83
    private: // types
sl@0
    84
#else
sl@0
    85
    public: // types (public so any_cast can be non-friend)
sl@0
    86
#endif
sl@0
    87
sl@0
    88
        class placeholder
sl@0
    89
        {
sl@0
    90
        public: // structors
sl@0
    91
sl@0
    92
            virtual ~placeholder()
sl@0
    93
            {
sl@0
    94
            }
sl@0
    95
sl@0
    96
        public: // queries
sl@0
    97
sl@0
    98
            virtual const std::type_info & type() const = 0;
sl@0
    99
sl@0
   100
            virtual placeholder * clone() const = 0;
sl@0
   101
sl@0
   102
        };
sl@0
   103
sl@0
   104
        template<typename ValueType>
sl@0
   105
        class holder : public placeholder
sl@0
   106
        {
sl@0
   107
        public: // structors
sl@0
   108
sl@0
   109
            holder(const ValueType & value)
sl@0
   110
              : held(value)
sl@0
   111
            {
sl@0
   112
            }
sl@0
   113
sl@0
   114
        public: // queries
sl@0
   115
sl@0
   116
            virtual const std::type_info & type() const
sl@0
   117
            {
sl@0
   118
                return typeid(ValueType);
sl@0
   119
            }
sl@0
   120
sl@0
   121
            virtual placeholder * clone() const
sl@0
   122
            {
sl@0
   123
                return new holder(held);
sl@0
   124
            }
sl@0
   125
sl@0
   126
        public: // representation
sl@0
   127
sl@0
   128
            ValueType held;
sl@0
   129
sl@0
   130
        };
sl@0
   131
sl@0
   132
#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
sl@0
   133
sl@0
   134
    private: // representation
sl@0
   135
sl@0
   136
        template<typename ValueType>
sl@0
   137
        friend ValueType * any_cast(any *);
sl@0
   138
sl@0
   139
        template<typename ValueType>
sl@0
   140
        friend ValueType * unsafe_any_cast(any *);
sl@0
   141
sl@0
   142
#else
sl@0
   143
sl@0
   144
    public: // representation (public so any_cast can be non-friend)
sl@0
   145
sl@0
   146
#endif
sl@0
   147
sl@0
   148
        placeholder * content;
sl@0
   149
sl@0
   150
    };
sl@0
   151
sl@0
   152
    class bad_any_cast : public std::bad_cast
sl@0
   153
    {
sl@0
   154
    public:
sl@0
   155
        virtual const char * what() const throw()
sl@0
   156
        {
sl@0
   157
            return "boost::bad_any_cast: "
sl@0
   158
                   "failed conversion using boost::any_cast";
sl@0
   159
        }
sl@0
   160
    };
sl@0
   161
sl@0
   162
    template<typename ValueType>
sl@0
   163
    ValueType * any_cast(any * operand)
sl@0
   164
    {
sl@0
   165
        return operand && operand->type() == typeid(ValueType)
sl@0
   166
                    ? &static_cast<any::holder<ValueType> *>(operand->content)->held
sl@0
   167
                    : 0;
sl@0
   168
    }
sl@0
   169
sl@0
   170
    template<typename ValueType>
sl@0
   171
    const ValueType * any_cast(const any * operand)
sl@0
   172
    {
sl@0
   173
        return any_cast<ValueType>(const_cast<any *>(operand));
sl@0
   174
    }
sl@0
   175
sl@0
   176
    template<typename ValueType>
sl@0
   177
    ValueType any_cast(const any & operand)
sl@0
   178
    {
sl@0
   179
        typedef BOOST_DEDUCED_TYPENAME remove_reference<ValueType>::type nonref;
sl@0
   180
sl@0
   181
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   182
        // If 'nonref' is still reference type, it means the user has not
sl@0
   183
        // specialized 'remove_reference'.
sl@0
   184
sl@0
   185
        // Please use BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION macro
sl@0
   186
        // to generate specialization of remove_reference for your class
sl@0
   187
        // See type traits library documentation for details
sl@0
   188
        BOOST_STATIC_ASSERT(!is_reference<nonref>::value);
sl@0
   189
#endif
sl@0
   190
sl@0
   191
        const nonref * result = any_cast<nonref>(&operand);
sl@0
   192
        if(!result)
sl@0
   193
            boost::throw_exception(bad_any_cast());
sl@0
   194
        return *result;
sl@0
   195
    }
sl@0
   196
sl@0
   197
    template<typename ValueType>
sl@0
   198
    ValueType any_cast(any & operand)
sl@0
   199
    {
sl@0
   200
        typedef BOOST_DEDUCED_TYPENAME remove_reference<ValueType>::type nonref;
sl@0
   201
sl@0
   202
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   203
        // The comment in the above version of 'any_cast' explains when this
sl@0
   204
        // assert is fired and what to do.
sl@0
   205
        BOOST_STATIC_ASSERT(!is_reference<nonref>::value);
sl@0
   206
#endif
sl@0
   207
sl@0
   208
        nonref * result = any_cast<nonref>(&operand);
sl@0
   209
        if(!result)
sl@0
   210
            boost::throw_exception(bad_any_cast());
sl@0
   211
        return *result;
sl@0
   212
    }
sl@0
   213
sl@0
   214
    // Note: The "unsafe" versions of any_cast are not part of the
sl@0
   215
    // public interface and may be removed at any time. They are
sl@0
   216
    // required where we know what type is stored in the any and can't
sl@0
   217
    // use typeid() comparison, e.g., when our types may travel across
sl@0
   218
    // different shared libraries.
sl@0
   219
    template<typename ValueType>
sl@0
   220
    inline ValueType * unsafe_any_cast(any * operand)
sl@0
   221
    {
sl@0
   222
        return &static_cast<any::holder<ValueType> *>(operand->content)->held;
sl@0
   223
    }
sl@0
   224
sl@0
   225
    template<typename ValueType>
sl@0
   226
    inline const ValueType * unsafe_any_cast(const any * operand)
sl@0
   227
    {
sl@0
   228
        return unsafe_any_cast<ValueType>(const_cast<any *>(operand));
sl@0
   229
    }
sl@0
   230
}
sl@0
   231
sl@0
   232
// Copyright Kevlin Henney, 2000, 2001, 2002. All rights reserved.
sl@0
   233
//
sl@0
   234
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
   235
// accompanying file LICENSE_1_0.txt or copy at
sl@0
   236
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
   237
sl@0
   238
#endif