os/ossrv/ossrv_pub/boost_apis/boost/weak_ptr.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_WEAK_PTR_HPP_INCLUDED
sl@0
     2
#define BOOST_WEAK_PTR_HPP_INCLUDED
sl@0
     3
sl@0
     4
//
sl@0
     5
//  weak_ptr.hpp
sl@0
     6
//
sl@0
     7
//  Copyright (c) 2001, 2002, 2003 Peter Dimov
sl@0
     8
//
sl@0
     9
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
    10
// accompanying file LICENSE_1_0.txt or copy at
sl@0
    11
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    12
//
sl@0
    13
//  See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation.
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <memory> // boost.TR1 include order fix
sl@0
    17
#include <boost/detail/shared_count.hpp>
sl@0
    18
#include <boost/shared_ptr.hpp>
sl@0
    19
sl@0
    20
#ifdef BOOST_MSVC  // moved here to work around VC++ compiler crash
sl@0
    21
# pragma warning(push)
sl@0
    22
# pragma warning(disable:4284) // odd return type for operator->
sl@0
    23
#endif
sl@0
    24
sl@0
    25
namespace boost
sl@0
    26
{
sl@0
    27
sl@0
    28
template<class T> class weak_ptr
sl@0
    29
{
sl@0
    30
private:
sl@0
    31
sl@0
    32
    // Borland 5.5.1 specific workarounds
sl@0
    33
    typedef weak_ptr<T> this_type;
sl@0
    34
sl@0
    35
public:
sl@0
    36
sl@0
    37
    typedef T element_type;
sl@0
    38
sl@0
    39
    weak_ptr(): px(0), pn() // never throws in 1.30+
sl@0
    40
    {
sl@0
    41
    }
sl@0
    42
sl@0
    43
//  generated copy constructor, assignment, destructor are fine
sl@0
    44
sl@0
    45
sl@0
    46
//
sl@0
    47
//  The "obvious" converting constructor implementation:
sl@0
    48
//
sl@0
    49
//  template<class Y>
sl@0
    50
//  weak_ptr(weak_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
sl@0
    51
//  {
sl@0
    52
//  }
sl@0
    53
//
sl@0
    54
//  has a serious problem.
sl@0
    55
//
sl@0
    56
//  r.px may already have been invalidated. The px(r.px)
sl@0
    57
//  conversion may require access to *r.px (virtual inheritance).
sl@0
    58
//
sl@0
    59
//  It is not possible to avoid spurious access violations since
sl@0
    60
//  in multithreaded programs r.px may be invalidated at any point.
sl@0
    61
//
sl@0
    62
sl@0
    63
    template<class Y>
sl@0
    64
    weak_ptr(weak_ptr<Y> const & r): pn(r.pn) // never throws
sl@0
    65
    {
sl@0
    66
        px = r.lock().get();
sl@0
    67
    }
sl@0
    68
sl@0
    69
    template<class Y>
sl@0
    70
    weak_ptr(shared_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
sl@0
    71
    {
sl@0
    72
    }
sl@0
    73
sl@0
    74
#if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1300)
sl@0
    75
sl@0
    76
    template<class Y>
sl@0
    77
    weak_ptr & operator=(weak_ptr<Y> const & r) // never throws
sl@0
    78
    {
sl@0
    79
        px = r.lock().get();
sl@0
    80
        pn = r.pn;
sl@0
    81
        return *this;
sl@0
    82
    }
sl@0
    83
sl@0
    84
    template<class Y>
sl@0
    85
    weak_ptr & operator=(shared_ptr<Y> const & r) // never throws
sl@0
    86
    {
sl@0
    87
        px = r.px;
sl@0
    88
        pn = r.pn;
sl@0
    89
        return *this;
sl@0
    90
    }
sl@0
    91
sl@0
    92
#endif
sl@0
    93
sl@0
    94
    shared_ptr<T> lock() const // never throws
sl@0
    95
    {
sl@0
    96
#if defined(BOOST_HAS_THREADS)
sl@0
    97
sl@0
    98
        // optimization: avoid throw overhead
sl@0
    99
        if(expired())
sl@0
   100
        {
sl@0
   101
            return shared_ptr<element_type>();
sl@0
   102
        }
sl@0
   103
sl@0
   104
        try
sl@0
   105
        {
sl@0
   106
            return shared_ptr<element_type>(*this);
sl@0
   107
        }
sl@0
   108
        catch(bad_weak_ptr const &)
sl@0
   109
        {
sl@0
   110
            // Q: how can we get here?
sl@0
   111
            // A: another thread may have invalidated r after the use_count test above.
sl@0
   112
            return shared_ptr<element_type>();
sl@0
   113
        }
sl@0
   114
sl@0
   115
#else
sl@0
   116
sl@0
   117
        // optimization: avoid try/catch overhead when single threaded
sl@0
   118
        return expired()? shared_ptr<element_type>(): shared_ptr<element_type>(*this);
sl@0
   119
sl@0
   120
#endif
sl@0
   121
    }
sl@0
   122
sl@0
   123
    long use_count() const // never throws
sl@0
   124
    {
sl@0
   125
        return pn.use_count();
sl@0
   126
    }
sl@0
   127
sl@0
   128
    bool expired() const // never throws
sl@0
   129
    {
sl@0
   130
        return pn.use_count() == 0;
sl@0
   131
    }
sl@0
   132
sl@0
   133
    void reset() // never throws in 1.30+
sl@0
   134
    {
sl@0
   135
        this_type().swap(*this);
sl@0
   136
    }
sl@0
   137
sl@0
   138
    void swap(this_type & other) // never throws
sl@0
   139
    {
sl@0
   140
        std::swap(px, other.px);
sl@0
   141
        pn.swap(other.pn);
sl@0
   142
    }
sl@0
   143
sl@0
   144
    void _internal_assign(T * px2, boost::detail::shared_count const & pn2)
sl@0
   145
    {
sl@0
   146
        px = px2;
sl@0
   147
        pn = pn2;
sl@0
   148
    }
sl@0
   149
sl@0
   150
    template<class Y> bool _internal_less(weak_ptr<Y> const & rhs) const
sl@0
   151
    {
sl@0
   152
        return pn < rhs.pn;
sl@0
   153
    }
sl@0
   154
sl@0
   155
// Tasteless as this may seem, making all members public allows member templates
sl@0
   156
// to work in the absence of member template friends. (Matthew Langston)
sl@0
   157
sl@0
   158
#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
sl@0
   159
sl@0
   160
private:
sl@0
   161
sl@0
   162
    template<class Y> friend class weak_ptr;
sl@0
   163
    template<class Y> friend class shared_ptr;
sl@0
   164
sl@0
   165
#endif
sl@0
   166
sl@0
   167
    T * px;                       // contained pointer
sl@0
   168
    boost::detail::weak_count pn; // reference counter
sl@0
   169
sl@0
   170
};  // weak_ptr
sl@0
   171
sl@0
   172
template<class T, class U> inline bool operator<(weak_ptr<T> const & a, weak_ptr<U> const & b)
sl@0
   173
{
sl@0
   174
    return a._internal_less(b);
sl@0
   175
}
sl@0
   176
sl@0
   177
template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b)
sl@0
   178
{
sl@0
   179
    a.swap(b);
sl@0
   180
}
sl@0
   181
sl@0
   182
// deprecated, provided for backward compatibility
sl@0
   183
template<class T> shared_ptr<T> make_shared(weak_ptr<T> const & r)
sl@0
   184
{
sl@0
   185
    return r.lock();
sl@0
   186
}
sl@0
   187
sl@0
   188
} // namespace boost
sl@0
   189
sl@0
   190
#ifdef BOOST_MSVC
sl@0
   191
# pragma warning(pop)
sl@0
   192
#endif    
sl@0
   193
sl@0
   194
#endif  // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED