]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/PassOwnPtr.h
ae7045786329cebced2a26676b6707e9e8b0cf77
2 * Copyright (C) 2009 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef WTF_PassOwnPtr_h
27 #define WTF_PassOwnPtr_h
29 #include "Assertions.h"
30 #include "OwnPtrCommon.h"
31 #include "TypeTraits.h"
35 // Unlike most of our smart pointers, PassOwnPtr can take either the pointer type or the pointed-to type.
37 template <typename T
> class OwnPtr
;
39 template <typename T
> class PassOwnPtr
{
41 typedef typename RemovePointer
<T
>::Type ValueType
;
42 typedef ValueType
* PtrType
;
44 PassOwnPtr(PtrType ptr
= 0) : m_ptr(ptr
) { }
45 // It somewhat breaks the type system to allow transfer of ownership out of
46 // a const PassOwnPtr. However, it makes it much easier to work with PassOwnPtr
47 // temporaries, and we don't really have a need to use real const PassOwnPtrs
49 PassOwnPtr(const PassOwnPtr
& o
) : m_ptr(o
.release()) { }
50 template <typename U
> PassOwnPtr(const PassOwnPtr
<U
>& o
) : m_ptr(o
.release()) { }
52 ~PassOwnPtr() { deleteOwnedPtr(m_ptr
); }
54 PtrType
get() const { return m_ptr
; }
56 void clear() { m_ptr
= 0; }
57 PtrType
release() const { PtrType ptr
= m_ptr
; m_ptr
= 0; return ptr
; }
59 ValueType
& operator*() const { ASSERT(m_ptr
); return *m_ptr
; }
60 PtrType
operator->() const { ASSERT(m_ptr
); return m_ptr
; }
62 bool operator!() const { return !m_ptr
; }
64 // This conversion operator allows implicit conversion to bool but not to other integer types.
65 typedef PtrType
PassOwnPtr::*UnspecifiedBoolType
;
66 operator UnspecifiedBoolType() const { return m_ptr
? &PassOwnPtr::m_ptr
: 0; }
68 PassOwnPtr
& operator=(T
*);
69 PassOwnPtr
& operator=(const PassOwnPtr
<T
>&);
70 template <typename U
> PassOwnPtr
& operator=(const PassOwnPtr
<U
>&);
73 mutable PtrType m_ptr
;
76 template <typename T
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(T
* optr
)
80 ASSERT(!ptr
|| m_ptr
!= ptr
);
86 template <typename T
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(const PassOwnPtr
<T
>& optr
)
89 m_ptr
= optr
.release();
90 ASSERT(!ptr
|| m_ptr
!= ptr
);
96 template <typename T
> template <typename U
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(const PassOwnPtr
<U
>& optr
)
99 m_ptr
= optr
.release();
100 ASSERT(!ptr
|| m_ptr
!= ptr
);
106 template <typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
108 return a
.get() == b
.get();
111 template <typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, const OwnPtr
<U
>& b
)
113 return a
.get() == b
.get();
116 template <typename T
, typename U
> inline bool operator==(const OwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
118 return a
.get() == b
.get();
121 template <typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, U
* b
)
126 template <typename T
, typename U
> inline bool operator==(T
* a
, const PassOwnPtr
<U
>& b
)
131 template <typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
133 return a
.get() != b
.get();
136 template <typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, const OwnPtr
<U
>& b
)
138 return a
.get() != b
.get();
141 template <typename T
, typename U
> inline bool operator!=(const OwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
143 return a
.get() != b
.get();
146 template <typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, U
* b
)
151 template <typename T
, typename U
> inline bool operator!=(T
* a
, const PassOwnPtr
<U
>& b
)
156 template <typename T
, typename U
> inline PassOwnPtr
<T
> static_pointer_cast(const PassOwnPtr
<U
>& p
)
158 return PassOwnPtr
<T
>(static_cast<T
*>(p
.release()));
161 template <typename T
, typename U
> inline PassOwnPtr
<T
> const_pointer_cast(const PassOwnPtr
<U
>& p
)
163 return PassOwnPtr
<T
>(const_cast<T
*>(p
.release()));
166 template <typename T
> inline T
* getPtr(const PassOwnPtr
<T
>& p
)
173 using WTF::PassOwnPtr
;
174 using WTF::const_pointer_cast
;
175 using WTF::static_pointer_cast
;
177 #endif // WTF_PassOwnPtr_h