/* * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html #ifndef WTF_RefPtr_h #define WTF_RefPtr_h #include "wtf/Allocator.h" #include "wtf/HashTableDeletedValueType.h" #include "wtf/PassRefPtr.h" #include "wtf/RawPtr.h" #include #include namespace WTF { template class PassRefPtr; template class RefPtrValuePeeker; template class RefPtr { USING_FAST_MALLOC(RefPtr); public: ALWAYS_INLINE RefPtr() : m_ptr(nullptr) {} ALWAYS_INLINE RefPtr(std::nullptr_t) : m_ptr(nullptr) {} ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); } template RefPtr(const RawPtr& ptr, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(ptr.get()) { refIfNotNull(m_ptr); } ALWAYS_INLINE explicit RefPtr(T& ref) : m_ptr(&ref) { m_ptr->ref(); } ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); } template RefPtr(const RefPtr& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.get()) { refIfNotNull(m_ptr); } RefPtr(RefPtr&& o) : m_ptr(o.m_ptr) { o.m_ptr = nullptr; } // See comments in PassRefPtr.h for an explanation of why this takes a const // reference. template RefPtr(const PassRefPtr&, EnsurePtrConvertibleArgDecl(U, T)); // Hash table deleted values, which are only constructed and never copied or // destroyed. RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) {} bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } ALWAYS_INLINE ~RefPtr() { derefIfNotNull(m_ptr); } ALWAYS_INLINE T* get() const { return m_ptr; } void clear(); PassRefPtr release() { PassRefPtr tmp = adoptRef(m_ptr); m_ptr = nullptr; return tmp; } T& operator*() const { return *m_ptr; } ALWAYS_INLINE T* operator->() const { return m_ptr; } bool operator!() const { return !m_ptr; } // This conversion operator allows implicit conversion to bool but not to // other integer types. typedef T* (RefPtr::*UnspecifiedBoolType); operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } RefPtr& operator=(RefPtr o) { swap(o); return *this; } RefPtr& operator=(std::nullptr_t) { clear(); return *this; } // This is required by HashMap>. template RefPtr& operator=(RefPtrValuePeeker); void swap(RefPtr&); static T* hashTableDeletedValue() { return reinterpret_cast(-1); } private: T* m_ptr; }; template template inline RefPtr::RefPtr(const PassRefPtr& o, EnsurePtrConvertibleArgDefn(U, T)) : m_ptr(o.leakRef()) { } template inline void RefPtr::clear() { T* ptr = m_ptr; m_ptr = nullptr; derefIfNotNull(ptr); } template template inline RefPtr& RefPtr::operator=(RefPtrValuePeeker optr) { RefPtr ptr = static_cast(optr); swap(ptr); return *this; } template inline void RefPtr::swap(RefPtr& o) { std::swap(m_ptr, o.m_ptr); } template inline void swap(RefPtr& a, RefPtr& b) { a.swap(b); } template inline bool operator==(const RefPtr& a, const RefPtr& b) { return a.get() == b.get(); } template inline bool operator==(const RefPtr& a, U* b) { return a.get() == b; } template inline bool operator==(T* a, const RefPtr& b) { return a == b.get(); } template inline bool operator!=(const RefPtr& a, const RefPtr& b) { return a.get() != b.get(); } template inline bool operator!=(const RefPtr& a, U* b) { return a.get() != b; } template inline bool operator!=(T* a, const RefPtr& b) { return a != b.get(); } template inline RefPtr static_pointer_cast(const RefPtr& p) { return RefPtr(static_cast(p.get())); } template inline T* getPtr(const RefPtr& p) { return p.get(); } template class RefPtrValuePeeker { DISALLOW_NEW(); public: ALWAYS_INLINE RefPtrValuePeeker(T* p): m_ptr(p) {} ALWAYS_INLINE RefPtrValuePeeker(std::nullptr_t): m_ptr(nullptr) {} template RefPtrValuePeeker(const RefPtr& p): m_ptr(p.get()) {} template RefPtrValuePeeker(const PassRefPtr& p): m_ptr(p.get()) {} ALWAYS_INLINE operator T*() const { return m_ptr; } private: T* m_ptr; }; } // namespace WTF using WTF::RefPtr; using WTF::static_pointer_cast; #endif // WTF_RefPtr_h