/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace AK { template class RefPtr; template class NonnullRefPtr; template class WeakPtr; template class NonnullOwnPtr { public: using ElementType = T; enum AdoptTag { Adopt }; NonnullOwnPtr(AdoptTag, T& ptr) : m_ptr(&ptr) { static_assert( requires { requires typename T::AllowOwnPtr()(); } || !requires(T obj) { requires !typename T::AllowOwnPtr()(); obj.ref(); obj.unref(); }, "Use NonnullRefPtr<> for RefCounted types"); } NonnullOwnPtr(NonnullOwnPtr&& other) : m_ptr(other.leak_ptr()) { VERIFY(m_ptr); } template NonnullOwnPtr(NonnullOwnPtr&& other) : m_ptr(other.leak_ptr()) { VERIFY(m_ptr); } ~NonnullOwnPtr() { clear(); #ifdef SANITIZE_PTRS if constexpr (sizeof(T*) == 8) m_ptr = (T*)(0xe3e3e3e3e3e3e3e3); else m_ptr = (T*)(0xe3e3e3e3); #endif } NonnullOwnPtr(const NonnullOwnPtr&) = delete; template NonnullOwnPtr(const NonnullOwnPtr&) = delete; NonnullOwnPtr& operator=(const NonnullOwnPtr&) = delete; template NonnullOwnPtr& operator=(const NonnullOwnPtr&) = delete; template> NonnullOwnPtr(const RefPtr&) = delete; template NonnullOwnPtr(const NonnullRefPtr&) = delete; template NonnullOwnPtr(const WeakPtr&) = delete; template> NonnullOwnPtr& operator=(const RefPtr&) = delete; template NonnullOwnPtr& operator=(const NonnullRefPtr&) = delete; template NonnullOwnPtr& operator=(const WeakPtr&) = delete; NonnullOwnPtr& operator=(NonnullOwnPtr&& other) { NonnullOwnPtr ptr(move(other)); swap(ptr); return *this; } template NonnullOwnPtr& operator=(NonnullOwnPtr&& other) { NonnullOwnPtr ptr(move(other)); swap(ptr); return *this; } [[nodiscard]] T* leak_ptr() { return exchange(m_ptr, nullptr); } ALWAYS_INLINE RETURNS_NONNULL T* ptr() { VERIFY(m_ptr); return m_ptr; } ALWAYS_INLINE RETURNS_NONNULL const T* ptr() const { VERIFY(m_ptr); return m_ptr; } ALWAYS_INLINE RETURNS_NONNULL T* operator->() { return ptr(); } ALWAYS_INLINE RETURNS_NONNULL const T* operator->() const { return ptr(); } ALWAYS_INLINE T& operator*() { return *ptr(); } ALWAYS_INLINE const T& operator*() const { return *ptr(); } ALWAYS_INLINE RETURNS_NONNULL operator const T*() const { return ptr(); } ALWAYS_INLINE RETURNS_NONNULL operator T*() { return ptr(); } operator bool() const = delete; bool operator!() const = delete; void swap(NonnullOwnPtr& other) { ::swap(m_ptr, other.m_ptr); } template void swap(NonnullOwnPtr& other) { ::swap(m_ptr, other.m_ptr); } template NonnullOwnPtr release_nonnull() { VERIFY(m_ptr); return NonnullOwnPtr(NonnullOwnPtr::Adopt, static_cast(*leak_ptr())); } private: void clear() { if (!m_ptr) return; delete m_ptr; m_ptr = nullptr; } T* m_ptr = nullptr; }; #if !defined(KERNEL) template inline NonnullOwnPtr adopt_own(T& object) { return NonnullOwnPtr(NonnullOwnPtr::Adopt, object); } #endif template inline NonnullOwnPtr make(Args&&... args) { return NonnullOwnPtr(NonnullOwnPtr::Adopt, *new T(forward(args)...)); } template struct Traits> : public GenericTraits> { using PeekType = T*; using ConstPeekType = const T*; static unsigned hash(const NonnullOwnPtr& p) { return int_hash((u32)p.ptr()); } static bool equals(const NonnullOwnPtr& a, const NonnullOwnPtr& b) { return a.ptr() == b.ptr(); } }; template inline void swap(NonnullOwnPtr& a, NonnullOwnPtr& b) { a.swap(b); } template struct Formatter> : Formatter { void format(FormatBuilder& builder, const NonnullOwnPtr& value) { Formatter::format(builder, value.ptr()); } }; } #if !defined(KERNEL) using AK::adopt_own; #endif using AK::make; using AK::NonnullOwnPtr;