2 * Copyright (C) 2009, 2010 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"
31 #include "OwnPtrCommon.h"
32 #include "TypeTraits.h"
34 #if !PLATFORM(CHROMIUM) && !PLATFORM(WIN) && !PLATFORM(MAC) && !PLATFORM(QT)
35 // Remove this once we make all WebKit code compatible with stricter rules about PassOwnPtr.
36 #define LOOSE_PASS_OWN_PTR
41 // Unlike most of our smart pointers, PassOwnPtr can take either the pointer type or the pointed-to type.
43 template<typename T
> class OwnPtr
;
44 template<typename T
> class PassOwnPtr
;
45 template<typename T
> PassOwnPtr
<T
> adoptPtr(T
*);
47 template<typename T
> class PassOwnPtr
{
49 typedef typename RemovePointer
<T
>::Type ValueType
;
50 typedef ValueType
* PtrType
;
52 PassOwnPtr() : m_ptr(0) { }
53 PassOwnPtr(std::nullptr_t
) : m_ptr(0) { }
55 // It somewhat breaks the type system to allow transfer of ownership out of
56 // a const PassOwnPtr. However, it makes it much easier to work with PassOwnPtr
57 // temporaries, and we don't have a need to use real const PassOwnPtrs anyway.
58 PassOwnPtr(const PassOwnPtr
& o
) : m_ptr(o
.leakPtr()) { }
59 template<typename U
> PassOwnPtr(const PassOwnPtr
<U
>& o
) : m_ptr(o
.leakPtr()) { }
61 ~PassOwnPtr() { deleteOwnedPtr(m_ptr
); }
63 PtrType
get() const { return m_ptr
; }
66 PtrType
leakPtr() const WARN_UNUSED_RETURN
;
68 ValueType
& operator*() const { ASSERT(m_ptr
); return *m_ptr
; }
69 PtrType
operator->() const { ASSERT(m_ptr
); return m_ptr
; }
71 bool operator!() const { return !m_ptr
; }
73 // This conversion operator allows implicit conversion to bool but not to other integer types.
74 typedef PtrType
PassOwnPtr::*UnspecifiedBoolType
;
75 operator UnspecifiedBoolType() const { return m_ptr
? &PassOwnPtr::m_ptr
: 0; }
77 PassOwnPtr
& operator=(const PassOwnPtr
<T
>&);
78 #if !defined(LOOSE_PASS_OWN_PTR) || !HAVE(NULLPTR)
79 PassOwnPtr
& operator=(std::nullptr_t
) { clear(); return *this; }
81 template<typename U
> PassOwnPtr
& operator=(const PassOwnPtr
<U
>&);
83 template<typename U
> friend PassOwnPtr
<U
> adoptPtr(U
*);
85 #ifdef LOOSE_PASS_OWN_PTR
86 PassOwnPtr(PtrType ptr
) : m_ptr(ptr
) { }
87 PassOwnPtr
& operator=(PtrType
);
91 #ifndef LOOSE_PASS_OWN_PTR
92 explicit PassOwnPtr(PtrType ptr
) : m_ptr(ptr
) { }
95 // We should never have two OwnPtrs for the same underlying object (otherwise we'll get
96 // double-destruction), so these equality operators should never be needed.
97 template<typename U
> bool operator==(const PassOwnPtr
<U
>&) { COMPILE_ASSERT(!sizeof(U
*), OwnPtrs_should_never_be_equal
); return false; }
98 template<typename U
> bool operator!=(const PassOwnPtr
<U
>&) { COMPILE_ASSERT(!sizeof(U
*), OwnPtrs_should_never_be_equal
); return false; }
99 template<typename U
> bool operator==(const OwnPtr
<U
>&) { COMPILE_ASSERT(!sizeof(U
*), OwnPtrs_should_never_be_equal
); return false; }
100 template<typename U
> bool operator!=(const OwnPtr
<U
>&) { COMPILE_ASSERT(!sizeof(U
*), OwnPtrs_should_never_be_equal
); return false; }
102 mutable PtrType m_ptr
;
105 template<typename T
> inline void PassOwnPtr
<T
>::clear()
112 template<typename T
> inline typename PassOwnPtr
<T
>::PtrType PassOwnPtr
<T
>::leakPtr() const
119 #ifdef LOOSE_PASS_OWN_PTR
120 template<typename T
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(PtrType optr
)
124 ASSERT(!ptr
|| m_ptr
!= ptr
);
131 template<typename T
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(const PassOwnPtr
<T
>& optr
)
134 m_ptr
= optr
.leakPtr();
135 ASSERT(!ptr
|| m_ptr
!= ptr
);
141 template<typename T
> template<typename U
> inline PassOwnPtr
<T
>& PassOwnPtr
<T
>::operator=(const PassOwnPtr
<U
>& optr
)
144 m_ptr
= optr
.leakPtr();
145 ASSERT(!ptr
|| m_ptr
!= ptr
);
151 template<typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
153 return a
.get() == b
.get();
156 template<typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, const OwnPtr
<U
>& b
)
158 return a
.get() == b
.get();
161 template<typename T
, typename U
> inline bool operator==(const OwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
163 return a
.get() == b
.get();
166 template<typename T
, typename U
> inline bool operator==(const PassOwnPtr
<T
>& a
, U
* b
)
171 template<typename T
, typename U
> inline bool operator==(T
* a
, const PassOwnPtr
<U
>& b
)
176 template<typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
178 return a
.get() != b
.get();
181 template<typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, const OwnPtr
<U
>& b
)
183 return a
.get() != b
.get();
186 template<typename T
, typename U
> inline bool operator!=(const OwnPtr
<T
>& a
, const PassOwnPtr
<U
>& b
)
188 return a
.get() != b
.get();
191 template<typename T
, typename U
> inline bool operator!=(const PassOwnPtr
<T
>& a
, U
* b
)
196 template<typename T
, typename U
> inline bool operator!=(T
* a
, const PassOwnPtr
<U
>& b
)
201 template<typename T
> inline PassOwnPtr
<T
> adoptPtr(T
* ptr
)
203 return PassOwnPtr
<T
>(ptr
);
206 template<typename T
, typename U
> inline PassOwnPtr
<T
> static_pointer_cast(const PassOwnPtr
<U
>& p
)
208 return adoptPtr(static_cast<T
*>(p
.leakPtr()));
211 template<typename T
, typename U
> inline PassOwnPtr
<T
> const_pointer_cast(const PassOwnPtr
<U
>& p
)
213 return adoptPtr(const_cast<T
*>(p
.leakPtr()));
216 template<typename T
> inline T
* getPtr(const PassOwnPtr
<T
>& p
)
223 using WTF::PassOwnPtr
;
225 using WTF::const_pointer_cast
;
226 using WTF::static_pointer_cast
;
228 #endif // WTF_PassOwnPtr_h