os/ossrv/ossrv_pub/boost_apis/boost/shared_array.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED
sl@0
     2
#define BOOST_SHARED_ARRAY_HPP_INCLUDED
sl@0
     3
sl@0
     4
//
sl@0
     5
//  shared_array.hpp
sl@0
     6
//
sl@0
     7
//  (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
sl@0
     8
//  Copyright (c) 2001, 2002 Peter Dimov
sl@0
     9
//
sl@0
    10
//  Distributed under the Boost Software License, Version 1.0. (See
sl@0
    11
//  accompanying file LICENSE_1_0.txt or copy at
sl@0
    12
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
    13
//
sl@0
    14
//  See http://www.boost.org/libs/smart_ptr/shared_array.htm for documentation.
sl@0
    15
//
sl@0
    16
sl@0
    17
#include <boost/config.hpp>   // for broken compiler workarounds
sl@0
    18
sl@0
    19
#if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
sl@0
    20
#include <boost/detail/shared_array_nmt.hpp>
sl@0
    21
#else
sl@0
    22
sl@0
    23
#include <memory>             // TR1 cyclic inclusion fix
sl@0
    24
sl@0
    25
#include <boost/assert.hpp>
sl@0
    26
#include <boost/checked_delete.hpp>
sl@0
    27
sl@0
    28
#include <boost/detail/shared_count.hpp>
sl@0
    29
#include <boost/detail/workaround.hpp>
sl@0
    30
sl@0
    31
#include <cstddef>            // for std::ptrdiff_t
sl@0
    32
#include <algorithm>          // for std::swap
sl@0
    33
#include <functional>         // for std::less
sl@0
    34
sl@0
    35
namespace boost
sl@0
    36
{
sl@0
    37
sl@0
    38
//
sl@0
    39
//  shared_array
sl@0
    40
//
sl@0
    41
//  shared_array extends shared_ptr to arrays.
sl@0
    42
//  The array pointed to is deleted when the last shared_array pointing to it
sl@0
    43
//  is destroyed or reset.
sl@0
    44
//
sl@0
    45
sl@0
    46
template<class T> class shared_array
sl@0
    47
{
sl@0
    48
private:
sl@0
    49
sl@0
    50
    // Borland 5.5.1 specific workarounds
sl@0
    51
    typedef checked_array_deleter<T> deleter;
sl@0
    52
    typedef shared_array<T> this_type;
sl@0
    53
sl@0
    54
public:
sl@0
    55
sl@0
    56
    typedef T element_type;
sl@0
    57
sl@0
    58
    explicit shared_array(T * p = 0): px(p), pn(p, deleter())
sl@0
    59
    {
sl@0
    60
    }
sl@0
    61
sl@0
    62
    //
sl@0
    63
    // Requirements: D's copy constructor must not throw
sl@0
    64
    //
sl@0
    65
    // shared_array will release p by calling d(p)
sl@0
    66
    //
sl@0
    67
sl@0
    68
    template<class D> shared_array(T * p, D d): px(p), pn(p, d)
sl@0
    69
    {
sl@0
    70
    }
sl@0
    71
sl@0
    72
//  generated copy constructor, assignment, destructor are fine
sl@0
    73
sl@0
    74
    void reset(T * p = 0)
sl@0
    75
    {
sl@0
    76
        BOOST_ASSERT(p == 0 || p != px);
sl@0
    77
        this_type(p).swap(*this);
sl@0
    78
    }
sl@0
    79
sl@0
    80
    template <class D> void reset(T * p, D d)
sl@0
    81
    {
sl@0
    82
        this_type(p, d).swap(*this);
sl@0
    83
    }
sl@0
    84
sl@0
    85
    T & operator[] (std::ptrdiff_t i) const // never throws
sl@0
    86
    {
sl@0
    87
        BOOST_ASSERT(px != 0);
sl@0
    88
        BOOST_ASSERT(i >= 0);
sl@0
    89
        return px[i];
sl@0
    90
    }
sl@0
    91
    
sl@0
    92
    T * get() const // never throws
sl@0
    93
    {
sl@0
    94
        return px;
sl@0
    95
    }
sl@0
    96
sl@0
    97
    // implicit conversion to "bool"
sl@0
    98
sl@0
    99
#if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530)
sl@0
   100
sl@0
   101
    operator bool () const
sl@0
   102
    {
sl@0
   103
        return px != 0;
sl@0
   104
    }
sl@0
   105
sl@0
   106
#elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
sl@0
   107
    typedef T * (this_type::*unspecified_bool_type)() const;
sl@0
   108
    
sl@0
   109
    operator unspecified_bool_type() const // never throws
sl@0
   110
    {
sl@0
   111
        return px == 0? 0: &this_type::get;
sl@0
   112
    }
sl@0
   113
sl@0
   114
#else 
sl@0
   115
sl@0
   116
    typedef T * this_type::*unspecified_bool_type;
sl@0
   117
sl@0
   118
    operator unspecified_bool_type() const // never throws
sl@0
   119
    {
sl@0
   120
        return px == 0? 0: &this_type::px;
sl@0
   121
    }
sl@0
   122
sl@0
   123
#endif
sl@0
   124
sl@0
   125
    bool operator! () const // never throws
sl@0
   126
    {
sl@0
   127
        return px == 0;
sl@0
   128
    }
sl@0
   129
sl@0
   130
    bool unique() const // never throws
sl@0
   131
    {
sl@0
   132
        return pn.unique();
sl@0
   133
    }
sl@0
   134
sl@0
   135
    long use_count() const // never throws
sl@0
   136
    {
sl@0
   137
        return pn.use_count();
sl@0
   138
    }
sl@0
   139
sl@0
   140
    void swap(shared_array<T> & other) // never throws
sl@0
   141
    {
sl@0
   142
        std::swap(px, other.px);
sl@0
   143
        pn.swap(other.pn);
sl@0
   144
    }
sl@0
   145
sl@0
   146
private:
sl@0
   147
sl@0
   148
    T * px;                     // contained pointer
sl@0
   149
    detail::shared_count pn;    // reference counter
sl@0
   150
sl@0
   151
};  // shared_array
sl@0
   152
sl@0
   153
template<class T> inline bool operator==(shared_array<T> const & a, shared_array<T> const & b) // never throws
sl@0
   154
{
sl@0
   155
    return a.get() == b.get();
sl@0
   156
}
sl@0
   157
sl@0
   158
template<class T> inline bool operator!=(shared_array<T> const & a, shared_array<T> const & b) // never throws
sl@0
   159
{
sl@0
   160
    return a.get() != b.get();
sl@0
   161
}
sl@0
   162
sl@0
   163
template<class T> inline bool operator<(shared_array<T> const & a, shared_array<T> const & b) // never throws
sl@0
   164
{
sl@0
   165
    return std::less<T*>()(a.get(), b.get());
sl@0
   166
}
sl@0
   167
sl@0
   168
template<class T> void swap(shared_array<T> & a, shared_array<T> & b) // never throws
sl@0
   169
{
sl@0
   170
    a.swap(b);
sl@0
   171
}
sl@0
   172
sl@0
   173
} // namespace boost
sl@0
   174
sl@0
   175
#endif  // #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
sl@0
   176
sl@0
   177
#endif  // #ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED