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