os/ossrv/ossrv_pub/boost_apis/boost/scoped_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_SCOPED_PTR_HPP_INCLUDED
sl@0
     2
#define BOOST_SCOPED_PTR_HPP_INCLUDED
sl@0
     3
sl@0
     4
//  (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
sl@0
     5
//  Copyright (c) 2001, 2002 Peter Dimov
sl@0
     6
//
sl@0
     7
//  Distributed under the Boost Software License, Version 1.0. (See
sl@0
     8
//  accompanying file LICENSE_1_0.txt or copy at
sl@0
     9
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
    10
//
sl@0
    11
//  http://www.boost.org/libs/smart_ptr/scoped_ptr.htm
sl@0
    12
//
sl@0
    13
sl@0
    14
#include <boost/assert.hpp>
sl@0
    15
#include <boost/checked_delete.hpp>
sl@0
    16
#include <boost/detail/workaround.hpp>
sl@0
    17
sl@0
    18
#ifndef BOOST_NO_AUTO_PTR
sl@0
    19
# include <memory>          // for std::auto_ptr
sl@0
    20
#endif
sl@0
    21
sl@0
    22
namespace boost
sl@0
    23
{
sl@0
    24
sl@0
    25
// Debug hooks
sl@0
    26
sl@0
    27
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
sl@0
    28
sl@0
    29
void sp_scalar_constructor_hook(void * p);
sl@0
    30
void sp_scalar_destructor_hook(void * p);
sl@0
    31
sl@0
    32
#endif
sl@0
    33
sl@0
    34
//  scoped_ptr mimics a built-in pointer except that it guarantees deletion
sl@0
    35
//  of the object pointed to, either on destruction of the scoped_ptr or via
sl@0
    36
//  an explicit reset(). scoped_ptr is a simple solution for simple needs;
sl@0
    37
//  use shared_ptr or std::auto_ptr if your needs are more complex.
sl@0
    38
sl@0
    39
template<class T> class scoped_ptr // noncopyable
sl@0
    40
{
sl@0
    41
private:
sl@0
    42
sl@0
    43
    T * ptr;
sl@0
    44
sl@0
    45
    scoped_ptr(scoped_ptr const &);
sl@0
    46
    scoped_ptr & operator=(scoped_ptr const &);
sl@0
    47
sl@0
    48
    typedef scoped_ptr<T> this_type;
sl@0
    49
sl@0
    50
public:
sl@0
    51
sl@0
    52
    typedef T element_type;
sl@0
    53
sl@0
    54
    explicit scoped_ptr(T * p = 0): ptr(p) // never throws
sl@0
    55
    {
sl@0
    56
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
sl@0
    57
        boost::sp_scalar_constructor_hook(ptr);
sl@0
    58
#endif
sl@0
    59
    }
sl@0
    60
sl@0
    61
#ifndef BOOST_NO_AUTO_PTR
sl@0
    62
sl@0
    63
    explicit scoped_ptr(std::auto_ptr<T> p): ptr(p.release()) // never throws
sl@0
    64
    {
sl@0
    65
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
sl@0
    66
        boost::sp_scalar_constructor_hook(ptr);
sl@0
    67
#endif
sl@0
    68
    }
sl@0
    69
sl@0
    70
#endif
sl@0
    71
sl@0
    72
    ~scoped_ptr() // never throws
sl@0
    73
    {
sl@0
    74
#if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
sl@0
    75
        boost::sp_scalar_destructor_hook(ptr);
sl@0
    76
#endif
sl@0
    77
        boost::checked_delete(ptr);
sl@0
    78
    }
sl@0
    79
sl@0
    80
    void reset(T * p = 0) // never throws
sl@0
    81
    {
sl@0
    82
        BOOST_ASSERT(p == 0 || p != ptr); // catch self-reset errors
sl@0
    83
        this_type(p).swap(*this);
sl@0
    84
    }
sl@0
    85
sl@0
    86
    T & operator*() const // never throws
sl@0
    87
    {
sl@0
    88
        BOOST_ASSERT(ptr != 0);
sl@0
    89
        return *ptr;
sl@0
    90
    }
sl@0
    91
sl@0
    92
    T * operator->() const // never throws
sl@0
    93
    {
sl@0
    94
        BOOST_ASSERT(ptr != 0);
sl@0
    95
        return ptr;
sl@0
    96
    }
sl@0
    97
sl@0
    98
    T * get() const // never throws
sl@0
    99
    {
sl@0
   100
        return ptr;
sl@0
   101
    }
sl@0
   102
sl@0
   103
    // implicit conversion to "bool"
sl@0
   104
sl@0
   105
#if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530)
sl@0
   106
sl@0
   107
    operator bool () const
sl@0
   108
    {
sl@0
   109
        return ptr != 0;
sl@0
   110
    }
sl@0
   111
sl@0
   112
#elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
sl@0
   113
    typedef T * (this_type::*unspecified_bool_type)() const;
sl@0
   114
    
sl@0
   115
    operator unspecified_bool_type() const // never throws
sl@0
   116
    {
sl@0
   117
        return ptr == 0? 0: &this_type::get;
sl@0
   118
    }
sl@0
   119
sl@0
   120
#else 
sl@0
   121
    typedef T * this_type::*unspecified_bool_type;
sl@0
   122
sl@0
   123
    operator unspecified_bool_type() const // never throws
sl@0
   124
    {
sl@0
   125
        return ptr == 0? 0: &this_type::ptr;
sl@0
   126
    }
sl@0
   127
sl@0
   128
#endif
sl@0
   129
sl@0
   130
    bool operator! () const // never throws
sl@0
   131
    {
sl@0
   132
        return ptr == 0;
sl@0
   133
    }
sl@0
   134
sl@0
   135
    void swap(scoped_ptr & b) // never throws
sl@0
   136
    {
sl@0
   137
        T * tmp = b.ptr;
sl@0
   138
        b.ptr = ptr;
sl@0
   139
        ptr = tmp;
sl@0
   140
    }
sl@0
   141
};
sl@0
   142
sl@0
   143
template<class T> inline void swap(scoped_ptr<T> & a, scoped_ptr<T> & b) // never throws
sl@0
   144
{
sl@0
   145
    a.swap(b);
sl@0
   146
}
sl@0
   147
sl@0
   148
// get_pointer(p) is a generic way to say p.get()
sl@0
   149
sl@0
   150
template<class T> inline T * get_pointer(scoped_ptr<T> const & p)
sl@0
   151
{
sl@0
   152
    return p.get();
sl@0
   153
}
sl@0
   154
sl@0
   155
} // namespace boost
sl@0
   156
sl@0
   157
#endif // #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED