2020-01-18 08:38:21 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 08:38:21 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-08-19 15:26:07 +00:00
|
|
|
#include <AK/Assertions.h>
|
|
|
|
#include <AK/Checked.h>
|
|
|
|
#include <AK/Noncopyable.h>
|
|
|
|
#include <AK/Platform.h>
|
2018-10-10 09:53:07 +00:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2019-06-21 13:29:31 +00:00
|
|
|
class RefCountedBase {
|
2020-08-26 19:52:24 +00:00
|
|
|
AK_MAKE_NONCOPYABLE(RefCountedBase);
|
|
|
|
AK_MAKE_NONMOVABLE(RefCountedBase);
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
public:
|
2020-11-11 22:21:01 +00:00
|
|
|
using RefCountType = unsigned int;
|
2020-11-03 14:51:56 +00:00
|
|
|
using AllowOwnPtr = FalseType;
|
2020-06-12 13:33:38 +00:00
|
|
|
|
2021-10-08 20:11:39 +00:00
|
|
|
ALWAYS_INLINE void ref() const
|
2021-06-02 23:12:09 +00:00
|
|
|
{
|
2021-10-07 17:12:37 +00:00
|
|
|
VERIFY(m_ref_count > 0);
|
|
|
|
VERIFY(!Checked<RefCountType>::addition_would_overflow(m_ref_count, 1));
|
|
|
|
++m_ref_count;
|
2021-06-02 23:12:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] bool try_ref() const
|
|
|
|
{
|
2021-10-07 17:12:37 +00:00
|
|
|
if (m_ref_count == 0)
|
|
|
|
return false;
|
|
|
|
ref();
|
|
|
|
return true;
|
2021-06-02 23:12:09 +00:00
|
|
|
}
|
|
|
|
|
2021-10-07 17:12:37 +00:00
|
|
|
[[nodiscard]] RefCountType ref_count() const { return m_ref_count; }
|
2018-10-10 09:53:07 +00:00
|
|
|
|
|
|
|
protected:
|
2021-01-10 23:29:28 +00:00
|
|
|
RefCountedBase() = default;
|
2021-10-07 17:12:37 +00:00
|
|
|
~RefCountedBase() { VERIFY(!m_ref_count); }
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2021-10-08 20:11:39 +00:00
|
|
|
ALWAYS_INLINE RefCountType deref_base() const
|
2021-06-02 23:12:09 +00:00
|
|
|
{
|
2021-10-07 17:12:37 +00:00
|
|
|
VERIFY(m_ref_count);
|
|
|
|
return --m_ref_count;
|
2021-06-02 23:12:09 +00:00
|
|
|
}
|
2019-03-16 12:48:56 +00:00
|
|
|
|
2021-10-07 17:12:37 +00:00
|
|
|
RefCountType mutable m_ref_count { 1 };
|
2018-10-10 09:53:07 +00:00
|
|
|
};
|
|
|
|
|
2019-03-16 11:47:19 +00:00
|
|
|
template<typename T>
|
2019-06-21 13:29:31 +00:00
|
|
|
class RefCounted : public RefCountedBase {
|
2019-03-16 11:47:19 +00:00
|
|
|
public:
|
2020-12-29 20:14:21 +00:00
|
|
|
bool unref() const
|
2019-03-16 11:47:19 +00:00
|
|
|
{
|
2022-01-08 18:35:43 +00:00
|
|
|
auto* that = const_cast<T*>(static_cast<T const*>(this));
|
2022-01-08 14:15:55 +00:00
|
|
|
|
2020-06-12 13:38:24 +00:00
|
|
|
auto new_ref_count = deref_base();
|
|
|
|
if (new_ref_count == 0) {
|
2022-01-08 14:15:55 +00:00
|
|
|
if constexpr (requires { that->will_be_destroyed(); })
|
|
|
|
that->will_be_destroyed();
|
2022-08-19 15:26:07 +00:00
|
|
|
delete static_cast<T const*>(this);
|
2020-12-29 20:14:21 +00:00
|
|
|
return true;
|
2019-03-16 11:47:19 +00:00
|
|
|
}
|
2020-12-29 20:14:21 +00:00
|
|
|
return false;
|
2019-03-16 11:47:19 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#if USING_AK_GLOBALLY
|
2019-06-21 13:29:31 +00:00
|
|
|
using AK::RefCounted;
|
2021-08-15 10:26:22 +00:00
|
|
|
using AK::RefCountedBase;
|
2022-11-26 11:18:30 +00:00
|
|
|
#endif
|