2018-10-10 05:53:07 -04:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-25 06:43:52 -05:00
|
|
|
#include <AK/Retained.h>
|
2019-05-28 05:53:16 -04:00
|
|
|
#include <AK/Types.h>
|
2018-10-10 05:53:07 -04:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class RetainPtr {
|
|
|
|
public:
|
2019-06-07 11:13:23 -04:00
|
|
|
enum AdoptTag {
|
2019-05-28 05:53:16 -04:00
|
|
|
Adopt
|
|
|
|
};
|
|
|
|
|
|
|
|
RetainPtr() {}
|
|
|
|
RetainPtr(const T* ptr)
|
|
|
|
: m_ptr(const_cast<T*>(ptr))
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2019-05-28 05:53:16 -04:00
|
|
|
}
|
|
|
|
RetainPtr(T* ptr)
|
|
|
|
: m_ptr(ptr)
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2019-05-28 05:53:16 -04:00
|
|
|
}
|
|
|
|
RetainPtr(T& object)
|
|
|
|
: m_ptr(&object)
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
m_ptr->ref();
|
2019-05-28 05:53:16 -04:00
|
|
|
}
|
|
|
|
RetainPtr(const T& object)
|
|
|
|
: m_ptr(const_cast<T*>(&object))
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
m_ptr->ref();
|
2019-05-28 05:53:16 -04:00
|
|
|
}
|
|
|
|
RetainPtr(AdoptTag, T& object)
|
|
|
|
: m_ptr(&object)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RetainPtr(RetainPtr& other)
|
|
|
|
: m_ptr(other.copy_ref().leak_ref())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RetainPtr(RetainPtr&& other)
|
|
|
|
: m_ptr(other.leak_ref())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
template<typename U>
|
|
|
|
RetainPtr(Retained<U>&& other)
|
|
|
|
: m_ptr(static_cast<T*>(&other.leak_ref()))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
template<typename U>
|
|
|
|
RetainPtr(RetainPtr<U>&& other)
|
|
|
|
: m_ptr(static_cast<T*>(other.leak_ref()))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RetainPtr(const RetainPtr& other)
|
|
|
|
: m_ptr(const_cast<RetainPtr&>(other).copy_ref().leak_ref())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
template<typename U>
|
|
|
|
RetainPtr(const RetainPtr<U>& other)
|
|
|
|
: m_ptr(const_cast<RetainPtr<U>&>(other).copy_ref().leak_ref())
|
|
|
|
{
|
|
|
|
}
|
2018-10-16 06:20:51 -04:00
|
|
|
~RetainPtr()
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
#ifdef SANITIZE_PTRS
|
2019-05-28 05:53:16 -04:00
|
|
|
if constexpr (sizeof(T*) == 8)
|
2018-10-16 06:20:51 -04:00
|
|
|
m_ptr = (T*)(0xe0e0e0e0e0e0e0e0);
|
|
|
|
else
|
|
|
|
m_ptr = (T*)(0xe0e0e0e0);
|
|
|
|
#endif
|
|
|
|
}
|
2019-05-28 05:53:16 -04:00
|
|
|
RetainPtr(std::nullptr_t) {}
|
2018-10-10 05:53:07 -04:00
|
|
|
|
|
|
|
RetainPtr& operator=(RetainPtr&& other)
|
|
|
|
{
|
|
|
|
if (this != &other) {
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-01-31 11:31:23 -05:00
|
|
|
m_ptr = other.leak_ref();
|
2018-10-10 05:53:07 -04:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
RetainPtr& operator=(RetainPtr<U>&& other)
|
|
|
|
{
|
|
|
|
if (this != static_cast<void*>(&other)) {
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-01-31 11:31:23 -05:00
|
|
|
m_ptr = other.leak_ref();
|
2018-10-10 05:53:07 -04:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-04-13 20:36:06 -04:00
|
|
|
template<typename U>
|
|
|
|
RetainPtr& operator=(Retained<U>&& other)
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-04-13 20:36:06 -04:00
|
|
|
m_ptr = &other.leak_ref();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-06-15 12:45:44 -04:00
|
|
|
template<typename U>
|
|
|
|
RetainPtr& operator=(const Retained<U>& other)
|
|
|
|
{
|
|
|
|
if (m_ptr != other.ptr())
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
m_ptr = const_cast<T*>(other.ptr());
|
|
|
|
ASSERT(m_ptr);
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
RetainPtr& operator=(const RetainPtr<U>& other)
|
|
|
|
{
|
|
|
|
if (m_ptr != other.ptr())
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
m_ptr = const_cast<T*>(other.ptr());
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
RetainPtr& operator=(const T* ptr)
|
2018-10-10 05:53:07 -04:00
|
|
|
{
|
|
|
|
if (m_ptr != ptr)
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
m_ptr = const_cast<T*>(ptr);
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2018-10-10 05:53:07 -04:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-06-15 12:45:44 -04:00
|
|
|
RetainPtr& operator=(const T& object)
|
2018-10-10 05:53:07 -04:00
|
|
|
{
|
|
|
|
if (m_ptr != &object)
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2019-06-15 12:45:44 -04:00
|
|
|
m_ptr = const_cast<T*>(&object);
|
2019-06-21 09:29:31 -04:00
|
|
|
ref_if_not_null(m_ptr);
|
2018-10-10 05:53:07 -04:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
RetainPtr& operator=(std::nullptr_t)
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2019-01-31 11:31:23 -05:00
|
|
|
RetainPtr copy_ref() const
|
2018-10-10 05:53:07 -04:00
|
|
|
{
|
|
|
|
return RetainPtr(m_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
{
|
2019-06-21 09:29:31 -04:00
|
|
|
deref_if_not_null(m_ptr);
|
2018-10-10 05:53:07 -04:00
|
|
|
m_ptr = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!() const { return !m_ptr; }
|
|
|
|
|
2019-01-31 11:31:23 -05:00
|
|
|
T* leak_ref()
|
2018-10-10 05:53:07 -04:00
|
|
|
{
|
|
|
|
T* leakedPtr = m_ptr;
|
|
|
|
m_ptr = nullptr;
|
|
|
|
return leakedPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
T* ptr() { return m_ptr; }
|
|
|
|
const T* ptr() const { return m_ptr; }
|
|
|
|
|
|
|
|
T* operator->() { return m_ptr; }
|
|
|
|
const T* operator->() const { return m_ptr; }
|
|
|
|
|
|
|
|
T& operator*() { return *m_ptr; }
|
|
|
|
const T& operator*() const { return *m_ptr; }
|
|
|
|
|
2019-04-13 20:36:06 -04:00
|
|
|
operator const T*() const { return m_ptr; }
|
|
|
|
operator T*() { return m_ptr; }
|
|
|
|
|
2018-10-10 05:53:07 -04:00
|
|
|
operator bool() { return !!m_ptr; }
|
|
|
|
|
2019-04-13 20:36:06 -04:00
|
|
|
bool operator==(std::nullptr_t) const { return !m_ptr; }
|
|
|
|
bool operator!=(std::nullptr_t) const { return m_ptr; }
|
|
|
|
|
|
|
|
bool operator==(const RetainPtr& other) const { return m_ptr == other.m_ptr; }
|
|
|
|
bool operator!=(const RetainPtr& other) const { return m_ptr != other.m_ptr; }
|
|
|
|
|
2019-04-19 15:36:11 -04:00
|
|
|
bool operator==(RetainPtr& other) { return m_ptr == other.m_ptr; }
|
|
|
|
bool operator!=(RetainPtr& other) { return m_ptr != other.m_ptr; }
|
|
|
|
|
2019-04-13 20:36:06 -04:00
|
|
|
bool operator==(const T* other) const { return m_ptr == other; }
|
|
|
|
bool operator!=(const T* other) const { return m_ptr != other; }
|
|
|
|
|
2019-04-19 15:34:47 -04:00
|
|
|
bool operator==(T* other) { return m_ptr == other; }
|
|
|
|
bool operator!=(T* other) { return m_ptr != other; }
|
|
|
|
|
2018-11-05 04:23:00 -05:00
|
|
|
bool is_null() const { return !m_ptr; }
|
|
|
|
|
2018-10-10 05:53:07 -04:00
|
|
|
private:
|
|
|
|
T* m_ptr = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using AK::RetainPtr;
|