/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace AK { template class OwnPtr { public: OwnPtr() = default; explicit OwnPtr(T* ptr) : m_ptr(ptr) { static_assert( requires { requires typename T::AllowOwnPtr()(); } || !requires(T obj) { requires !typename T::AllowOwnPtr()(); obj.ref(); obj.unref(); }, "Use RefPtr<> for RefCounted types"); } OwnPtr(OwnPtr&& other) : m_ptr(other.leak_ptr()) { } template OwnPtr(NonnullOwnPtr&& other) : m_ptr(other.leak_ptr()) { } template OwnPtr(OwnPtr&& other) : m_ptr(other.leak_ptr()) { } ~OwnPtr() { clear(); #ifdef SANITIZE_PTRS if constexpr (sizeof(T*) == 8) m_ptr = (T*)(0xe1e1e1e1e1e1e1e1); else m_ptr = (T*)(0xe1e1e1e1); #endif } OwnPtr(const OwnPtr&) = delete; template OwnPtr(const OwnPtr&) = delete; OwnPtr& operator=(const OwnPtr&) = delete; template OwnPtr& operator=(const OwnPtr&) = delete; template OwnPtr(const NonnullOwnPtr&) = delete; template OwnPtr& operator=(const NonnullOwnPtr&) = delete; template OwnPtr(const RefPtr&) = delete; template OwnPtr(const NonnullRefPtr&) = delete; template OwnPtr(const WeakPtr&) = delete; template OwnPtr& operator=(const RefPtr&) = delete; template OwnPtr& operator=(const NonnullRefPtr&) = delete; template OwnPtr& operator=(const WeakPtr&) = delete; OwnPtr& operator=(OwnPtr&& other) { OwnPtr ptr(move(other)); swap(ptr); return *this; } template OwnPtr& operator=(OwnPtr&& other) { OwnPtr ptr(move(other)); swap(ptr); return *this; } template OwnPtr& operator=(NonnullOwnPtr&& other) { OwnPtr ptr(move(other)); swap(ptr); VERIFY(m_ptr); return *this; } OwnPtr& operator=(T* ptr) { if (m_ptr != ptr) delete m_ptr; m_ptr = ptr; return *this; } OwnPtr& operator=(std::nullptr_t) { clear(); return *this; } void clear() { delete m_ptr; m_ptr = nullptr; } bool operator!() const { return !m_ptr; } [[nodiscard]] T* leak_ptr() { T* leaked_ptr = m_ptr; m_ptr = nullptr; return leaked_ptr; } NonnullOwnPtr release_nonnull() { VERIFY(m_ptr); return NonnullOwnPtr(NonnullOwnPtr::Adopt, *leak_ptr()); } template NonnullOwnPtr release_nonnull() { VERIFY(m_ptr); return NonnullOwnPtr(NonnullOwnPtr::Adopt, static_cast(*leak_ptr())); } T* ptr() { return m_ptr; } const T* ptr() const { return m_ptr; } T* operator->() { VERIFY(m_ptr); return m_ptr; } const T* operator->() const { VERIFY(m_ptr); return m_ptr; } T& operator*() { VERIFY(m_ptr); return *m_ptr; } const T& operator*() const { VERIFY(m_ptr); return *m_ptr; } operator const T*() const { return m_ptr; } operator T*() { return m_ptr; } operator bool() { return !!m_ptr; } void swap(OwnPtr& other) { ::swap(m_ptr, other.m_ptr); } template void swap(OwnPtr& other) { ::swap(m_ptr, other.m_ptr); } private: T* m_ptr = nullptr; }; template inline void swap(OwnPtr& a, OwnPtr& b) { a.swap(b); } template inline OwnPtr adopt_own_if_nonnull(T* object) { if (object) return OwnPtr(object); return {}; } template struct Traits> : public GenericTraits> { using PeekType = T*; using ConstPeekType = const T*; static unsigned hash(const OwnPtr& p) { return ptr_hash(p.ptr()); } static bool equals(const OwnPtr& a, const OwnPtr& b) { return a.ptr() == b.ptr(); } }; } using AK::adopt_own_if_nonnull; using AK::OwnPtr;