2020-08-20 15:35:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-20 15:35:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-08-25 01:35:19 +00:00
|
|
|
#include <AK/Assertions.h>
|
2020-08-20 15:35:13 +00:00
|
|
|
#include <AK/Atomic.h>
|
2020-11-22 01:02:56 +00:00
|
|
|
#include <AK/Noncopyable.h>
|
2024-06-17 22:12:53 +00:00
|
|
|
#ifdef AK_OS_WINDOWS
|
2022-09-20 07:15:12 +00:00
|
|
|
// Forward declare to avoid pulling Windows.h into every file in existence.
|
|
|
|
extern "C" __declspec(dllimport) void __stdcall Sleep(unsigned long);
|
|
|
|
# ifndef sched_yield
|
|
|
|
# define sched_yield() Sleep(0)
|
|
|
|
# endif
|
2022-01-18 20:17:05 +00:00
|
|
|
#else
|
|
|
|
# include <sched.h>
|
2020-08-25 01:35:19 +00:00
|
|
|
#endif
|
2020-08-20 15:35:13 +00:00
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifndef AK_OS_SERENITY
|
2020-08-25 01:35:19 +00:00
|
|
|
# include <new>
|
|
|
|
#endif
|
2020-08-20 15:35:13 +00:00
|
|
|
|
2020-08-25 01:35:19 +00:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct SingletonInstanceCreator {
|
|
|
|
static T* create()
|
|
|
|
{
|
|
|
|
return new T();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T, T* (*InitFunction)() = SingletonInstanceCreator<T>::create>
|
2020-08-20 15:35:13 +00:00
|
|
|
class Singleton {
|
2020-08-25 01:35:19 +00:00
|
|
|
AK_MAKE_NONCOPYABLE(Singleton);
|
|
|
|
AK_MAKE_NONMOVABLE(Singleton);
|
2020-09-18 07:49:51 +00:00
|
|
|
|
2020-08-20 15:35:13 +00:00
|
|
|
public:
|
2020-08-25 01:35:19 +00:00
|
|
|
Singleton() = default;
|
|
|
|
|
2021-01-08 19:01:53 +00:00
|
|
|
template<bool allow_create = true>
|
2021-06-24 08:28:36 +00:00
|
|
|
static T* get(Atomic<T*>& obj_var)
|
2020-08-20 15:35:13 +00:00
|
|
|
{
|
2021-06-24 08:28:36 +00:00
|
|
|
T* obj = obj_var.load(AK::memory_order_acquire);
|
2020-08-20 15:35:13 +00:00
|
|
|
if (FlatPtr(obj) <= 0x1) {
|
|
|
|
// If this is the first time, see if we get to initialize it
|
2021-01-08 19:01:53 +00:00
|
|
|
if constexpr (allow_create) {
|
2021-06-24 08:28:36 +00:00
|
|
|
if (obj == nullptr && obj_var.compare_exchange_strong(obj, (T*)0x1, AK::memory_order_acq_rel)) {
|
2021-01-08 19:01:53 +00:00
|
|
|
// We're the first one
|
|
|
|
obj = InitFunction();
|
2021-06-24 08:28:36 +00:00
|
|
|
obj_var.store(obj, AK::memory_order_release);
|
2021-01-08 19:01:53 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Someone else was faster, wait until they're done
|
|
|
|
while (obj == (T*)0x1) {
|
2022-01-18 20:17:05 +00:00
|
|
|
sched_yield();
|
2021-06-24 08:28:36 +00:00
|
|
|
obj = obj_var.load(AK::memory_order_acquire);
|
2021-01-08 19:01:53 +00:00
|
|
|
}
|
|
|
|
if constexpr (allow_create) {
|
|
|
|
// We should always return an instance if we allow creating one
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(obj != nullptr);
|
2020-08-20 15:35:13 +00:00
|
|
|
}
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(obj != (T*)0x1);
|
2020-08-20 15:35:13 +00:00
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2021-01-08 19:01:53 +00:00
|
|
|
T* ptr() const
|
|
|
|
{
|
|
|
|
return get(m_obj);
|
|
|
|
}
|
|
|
|
|
2020-08-20 15:35:13 +00:00
|
|
|
T* operator->() const
|
|
|
|
{
|
|
|
|
return ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
T& operator*() const
|
|
|
|
{
|
|
|
|
return *ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator T*() const
|
|
|
|
{
|
|
|
|
return ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator T&() const
|
|
|
|
{
|
|
|
|
return *ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_initialized() const
|
|
|
|
{
|
2021-06-24 08:28:36 +00:00
|
|
|
T* obj = m_obj.load(AK::MemoryOrder::memory_order_consume);
|
2020-08-20 15:35:13 +00:00
|
|
|
return FlatPtr(obj) > 0x1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ensure_instance()
|
|
|
|
{
|
2020-12-20 23:09:48 +00:00
|
|
|
ptr();
|
2020-08-20 15:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2021-06-24 08:28:36 +00:00
|
|
|
mutable Atomic<T*> m_obj { nullptr };
|
2020-08-20 15:35:13 +00:00
|
|
|
};
|
2021-08-07 19:33:20 +00:00
|
|
|
|
2020-08-20 15:35:13 +00:00
|
|
|
}
|
2021-08-07 19:33:20 +00:00
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#if USING_AK_GLOBALLY
|
2021-08-07 19:33:20 +00:00
|
|
|
using AK::Singleton;
|
2022-11-26 11:18:30 +00:00
|
|
|
#endif
|