mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-27 10:54:30 +01:00
669 lines
14 KiB
C++
669 lines
14 KiB
C++
#pragma once
|
|
|
|
#include "Utilities/SharedMutex.h"
|
|
|
|
#include <set>
|
|
#include <map>
|
|
|
|
// Mostly helper namespace
|
|
namespace id_manager
|
|
{
|
|
// Optional ID traits
|
|
template<typename T, typename = void>
|
|
struct id_traits
|
|
{
|
|
using tag = void;
|
|
|
|
static constexpr u32 min = 1;
|
|
static constexpr u32 max = 0x7fffffff;
|
|
};
|
|
|
|
template<typename T>
|
|
struct id_traits<T, void_t<typename T::id_base, decltype(&T::id_min), decltype(&T::id_max)>>
|
|
{
|
|
using tag = typename T::id_base;
|
|
|
|
static constexpr u32 min = T::id_min;
|
|
static constexpr u32 max = T::id_max;
|
|
};
|
|
|
|
// Optional ID storage
|
|
template<typename T, typename = void>
|
|
struct id_storage
|
|
{
|
|
static const u32* get(T*)
|
|
{
|
|
return nullptr;
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
struct id_storage<T, void_t<decltype(&T::id)>>
|
|
{
|
|
static const u32* get(T* ptr)
|
|
{
|
|
return &ptr->id;
|
|
}
|
|
};
|
|
|
|
// Optional object initialization function (called after ID registration)
|
|
template<typename T, typename = void>
|
|
struct on_init
|
|
{
|
|
static void func(T*)
|
|
{
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
struct on_init<T, decltype(std::declval<T>().on_init())>
|
|
{
|
|
static void func(T* ptr)
|
|
{
|
|
ptr->on_init();
|
|
}
|
|
};
|
|
|
|
// Optional object finalization function (called after ID removal)
|
|
template<typename T, typename = void>
|
|
struct on_stop
|
|
{
|
|
static void func(T*)
|
|
{
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
struct on_stop<T, decltype(std::declval<T>().on_stop())>
|
|
{
|
|
static void func(T* ptr)
|
|
{
|
|
ptr->on_stop();
|
|
}
|
|
};
|
|
|
|
template<typename>
|
|
class typeinfo
|
|
{
|
|
// Global variable for each registered type
|
|
template<typename T>
|
|
struct registered
|
|
{
|
|
static const u32 index;
|
|
};
|
|
|
|
// Access global type list
|
|
static never_inline auto& access()
|
|
{
|
|
static std::vector<typeinfo> list;
|
|
|
|
return list;
|
|
}
|
|
|
|
static never_inline u32 add_type(typeinfo info)
|
|
{
|
|
auto& list = access();
|
|
|
|
list.emplace_back(info);
|
|
|
|
return ::size32(list) - 1;
|
|
}
|
|
|
|
public:
|
|
const std::type_info* info;
|
|
void(*on_init)(void*);
|
|
void(*on_stop)(void*);
|
|
|
|
// Get type index
|
|
template<typename T>
|
|
static inline u32 get_index()
|
|
{
|
|
// Forbid forward declarations (It'd be better to allow them sometimes but it seems too dangerous)
|
|
static constexpr auto size = sizeof(std::conditional_t<std::is_void<T>::value, void*, T>);
|
|
|
|
return registered<T>::index;
|
|
}
|
|
|
|
// Read all registered types
|
|
static inline const auto& get()
|
|
{
|
|
return access();
|
|
}
|
|
};
|
|
|
|
template<typename TAG> template<typename T>
|
|
const u32 typeinfo<TAG>::registered<T>::index = typeinfo<TAG>::add_type(
|
|
{
|
|
&typeid(T),
|
|
PURE_EXPR(id_manager::on_init<T>::func(static_cast<T*>(ptr)), void* ptr),
|
|
PURE_EXPR(id_manager::on_stop<T>::func(static_cast<T*>(ptr)), void* ptr),
|
|
});
|
|
}
|
|
|
|
// Object manager for emulated process. Multiple objects of specified arbitrary type are given unique IDs.
|
|
class idm
|
|
{
|
|
// Rules for ID allocation:
|
|
// 0) Individual ID counter may be specified for each type by defining 'using id_base = ...;'
|
|
// 1) If no id_base specified, void is assumed.
|
|
// 2) g_id[id_base] indicates next ID allocated in g_map.
|
|
// 3) g_map[id_base] contains the additional copy of object pointer.
|
|
|
|
// Custom hasher for ID values
|
|
struct id_hash_t final
|
|
{
|
|
std::size_t operator ()(u32 value) const
|
|
{
|
|
return value;
|
|
}
|
|
};
|
|
|
|
using map_type = std::unordered_map<u32, std::shared_ptr<void>, id_hash_t>;
|
|
|
|
// Type Index -> ID -> Object. Use global since only one process is supported atm.
|
|
static std::vector<map_type> g_map;
|
|
|
|
// Next ID for each category
|
|
static std::vector<u32> g_id;
|
|
|
|
static shared_mutex g_mutex;
|
|
|
|
static const auto& get_types()
|
|
{
|
|
return id_manager::typeinfo<idm>::get();
|
|
}
|
|
|
|
template<typename T>
|
|
static inline u32 get_type()
|
|
{
|
|
return id_manager::typeinfo<idm>::get_index<T>();
|
|
}
|
|
|
|
template<typename T>
|
|
static inline u32 get_tag()
|
|
{
|
|
return get_type<typename id_manager::id_traits<T>::tag>();
|
|
}
|
|
|
|
// Prepares new ID, returns nullptr if out of resources
|
|
static map_type::pointer allocate_id(u32 tag, u32 min, u32 max)
|
|
{
|
|
// Check all IDs starting from "next id"
|
|
for (u32 i = 0; i <= max - min; i++)
|
|
{
|
|
// Fix current ID (wrap around)
|
|
if (g_id[tag] < min || g_id[tag] > max) g_id[tag] = min;
|
|
|
|
// Get ID
|
|
const auto r = g_map[tag].emplace(g_id[tag]++, nullptr);
|
|
|
|
if (r.second)
|
|
{
|
|
return &*r.first;
|
|
}
|
|
}
|
|
|
|
// Nothing found
|
|
return nullptr;
|
|
}
|
|
|
|
// Deallocate ID, returns object
|
|
static std::shared_ptr<void> deallocate_id(u32 tag, u32 id)
|
|
{
|
|
const auto found = g_map[tag].find(id);
|
|
|
|
if (found == g_map[tag].end()) return nullptr;
|
|
|
|
auto ptr = std::move(found->second);
|
|
|
|
g_map[tag].erase(found);
|
|
|
|
return ptr;
|
|
}
|
|
|
|
// Allocate new ID and construct it from the provider()
|
|
template<typename T, typename F, typename = std::result_of_t<F()>>
|
|
static map_type::pointer create_id(F&& provider)
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
if (auto place = allocate_id(get_tag<T>(), id_manager::id_traits<T>::min, id_manager::id_traits<T>::max))
|
|
{
|
|
try
|
|
{
|
|
// Get object, write it
|
|
place->second = provider();
|
|
|
|
// Update ID storage if available
|
|
if (const u32* id = id_manager::id_storage<T>::get(static_cast<T*>(place->second.get())))
|
|
{
|
|
*const_cast<u32*>(id) = place->first;
|
|
}
|
|
|
|
return &*g_map[get_type<T>()].emplace(*place).first;
|
|
}
|
|
catch (...)
|
|
{
|
|
deallocate_id(get_tag<T>(), place->first);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
// Remove ID and return object
|
|
static std::shared_ptr<void> delete_id(u32 type, u32 tag, u32 id)
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
auto&& ptr = deallocate_id(tag, id);
|
|
|
|
g_map[type].erase(id);
|
|
|
|
return ptr;
|
|
}
|
|
|
|
public:
|
|
// Initialize object manager
|
|
static void init()
|
|
{
|
|
g_map.resize(get_types().size(), {});
|
|
g_id.resize(get_types().size(), 0);
|
|
}
|
|
|
|
// Remove all objects
|
|
static void clear()
|
|
{
|
|
// Call recorded finalization functions for all IDs
|
|
for (std::size_t i = 0; i < g_map.size(); i++)
|
|
{
|
|
for (auto& id : g_map[i])
|
|
{
|
|
get_types()[i].on_stop(id.second.get());
|
|
}
|
|
|
|
g_map[i].clear();
|
|
g_id[i] = 0;
|
|
}
|
|
}
|
|
|
|
// Add a new ID of specified type with specified constructor arguments (returns object or nullptr)
|
|
template<typename T, typename Make = T, typename... Args>
|
|
static std::enable_if_t<std::is_constructible<Make, Args...>::value, std::shared_ptr<T>> make_ptr(Args&&... args)
|
|
{
|
|
if (auto pair = create_id<T>(WRAP_EXPR(std::make_shared<Make>(std::forward<Args>(args)...))))
|
|
{
|
|
id_manager::on_init<T>::func(static_cast<T*>(pair->second.get()));
|
|
return{ pair->second, static_cast<T*>(pair->second.get()) };
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
// Add a new ID of specified type with specified constructor arguments (returns id)
|
|
template<typename T, typename Make = T, typename... Args>
|
|
static std::enable_if_t<std::is_constructible<Make, Args...>::value, u32> make(Args&&... args)
|
|
{
|
|
if (auto pair = create_id<T>(WRAP_EXPR(std::make_shared<Make>(std::forward<Args>(args)...))))
|
|
{
|
|
id_manager::on_init<T>::func(static_cast<T*>(pair->second.get()));
|
|
return pair->first;
|
|
}
|
|
|
|
throw EXCEPTION("Out of IDs ('%s')", typeid(T).name());
|
|
}
|
|
|
|
// Add a new ID for an existing object provided (returns new id)
|
|
template<typename T>
|
|
static u32 import_existing(const std::shared_ptr<T>& ptr)
|
|
{
|
|
if (auto pair = create_id<T>(WRAP_EXPR(ptr)))
|
|
{
|
|
id_manager::on_init<T>::func(static_cast<T*>(pair->second.get()));
|
|
return pair->first;
|
|
}
|
|
|
|
throw EXCEPTION("Out of IDs ('%s')", typeid(T).name());
|
|
}
|
|
|
|
// Add a new ID for an object returned by provider()
|
|
template<typename T, typename F, typename = std::result_of_t<F()>>
|
|
static std::shared_ptr<T> import(F&& provider)
|
|
{
|
|
if (auto pair = create_id<T>(std::forward<F>(provider)))
|
|
{
|
|
id_manager::on_init<T>::func(static_cast<T*>(pair->second.get()));
|
|
return { pair->second, static_cast<T*>(pair->second.get()) };
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
// Check whether ID exists
|
|
template<typename T>
|
|
static bool check(u32 id)
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
return g_map[get_type<T>()].count(id) != 0;
|
|
}
|
|
|
|
// Get ID
|
|
template<typename T>
|
|
static std::shared_ptr<T> get(u32 id)
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
const auto found = g_map[get_type<T>()].find(id);
|
|
|
|
if (found == g_map[get_type<T>()].end())
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
return{ found->second, static_cast<T*>(found->second.get()) };
|
|
}
|
|
|
|
// Get all IDs (unsorted)
|
|
template<typename T>
|
|
static std::vector<std::shared_ptr<T>> get_all()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
std::vector<std::shared_ptr<T>> result;
|
|
|
|
for (auto& id : g_map[get_type<T>()])
|
|
{
|
|
result.emplace_back(id.second, static_cast<T*>(id.second.get()));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Remove the ID
|
|
template<typename T>
|
|
static bool remove(u32 id)
|
|
{
|
|
auto&& ptr = delete_id(get_type<T>(), get_tag<T>(), id);
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(ptr.get()));
|
|
}
|
|
|
|
return ptr.operator bool();
|
|
}
|
|
|
|
// Remove the ID and return it
|
|
template<typename T>
|
|
static std::shared_ptr<T> withdraw(u32 id)
|
|
{
|
|
auto&& ptr = delete_id(get_type<T>(), get_tag<T>(), id);
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(ptr.get()));
|
|
}
|
|
|
|
return{ ptr, static_cast<T*>(ptr.get()) };
|
|
}
|
|
|
|
template<typename T>
|
|
static u32 get_count()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
return ::size32(g_map[get_type<T>()]);
|
|
}
|
|
|
|
// Get sorted list of all IDs of specified type
|
|
template<typename T>
|
|
static std::set<u32> get_set()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
std::set<u32> result;
|
|
|
|
for (auto& id : g_map[get_type<T>()])
|
|
{
|
|
result.emplace(id.first);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// Get sorted map (ID value -> ID data) of all IDs of specified type
|
|
template<typename T>
|
|
static std::map<u32, std::shared_ptr<T>> get_map()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
std::map<u32, std::shared_ptr<T>> result;
|
|
|
|
for (auto& id : g_map[get_type<T>()])
|
|
{
|
|
result[id.first] = { id.second, static_cast<T*>(id.second.get()) };
|
|
}
|
|
|
|
return result;
|
|
}
|
|
};
|
|
|
|
// Object manager for emulated process. One unique object per type, or zero.
|
|
class fxm
|
|
{
|
|
// Type Index -> Object. Use global since only one process is supported atm.
|
|
static std::vector<std::shared_ptr<void>> g_map;
|
|
|
|
static shared_mutex g_mutex;
|
|
|
|
static inline const auto& get_types()
|
|
{
|
|
return id_manager::typeinfo<fxm>::get();
|
|
}
|
|
|
|
template<typename T>
|
|
static inline u32 get_type()
|
|
{
|
|
return id_manager::typeinfo<fxm>::get_index<T>();
|
|
}
|
|
|
|
static std::shared_ptr<void> remove(u32 type)
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
return std::move(g_map[type]);
|
|
}
|
|
|
|
public:
|
|
// Initialize object manager
|
|
static void init()
|
|
{
|
|
g_map.resize(get_types().size(), {});
|
|
}
|
|
|
|
// Remove all objects
|
|
static void clear()
|
|
{
|
|
// Call recorded finalization functions for all IDs
|
|
for (std::size_t i = 0; i < g_map.size(); i++)
|
|
{
|
|
if (g_map[i])
|
|
{
|
|
get_types()[i].on_stop(g_map[i].get());
|
|
}
|
|
|
|
g_map[i].reset();
|
|
}
|
|
}
|
|
|
|
// Create the object (returns nullptr if it already exists)
|
|
template<typename T, typename Make = T, typename... Args>
|
|
static std::enable_if_t<std::is_constructible<Make, Args...>::value, std::shared_ptr<T>> make(Args&&... args)
|
|
{
|
|
std::shared_ptr<T> ptr;
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
if (!g_map[get_type<T>()])
|
|
{
|
|
ptr = std::make_shared<Make>(std::forward<Args>(args)...);
|
|
|
|
g_map[get_type<T>()] = ptr;
|
|
}
|
|
}
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_init<T>::func(ptr.get());
|
|
}
|
|
|
|
return ptr;
|
|
}
|
|
|
|
// Create the object unconditionally (old object will be removed if it exists)
|
|
template<typename T, typename Make = T, typename... Args>
|
|
static std::enable_if_t<std::is_constructible<Make, Args...>::value, std::shared_ptr<T>> make_always(Args&&... args)
|
|
{
|
|
std::shared_ptr<T> ptr;
|
|
std::shared_ptr<void> old;
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
old = std::move(g_map[get_type<T>()]);
|
|
ptr = std::make_shared<Make>(std::forward<Args>(args)...);
|
|
|
|
g_map[get_type<T>()] = ptr;
|
|
}
|
|
|
|
if (old)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(old.get()));
|
|
}
|
|
|
|
id_manager::on_init<T>::func(ptr.get());
|
|
return ptr;
|
|
}
|
|
|
|
// Emplace the object returned by provider() and return it if no object exists
|
|
template<typename T, typename F>
|
|
static auto import(F&& provider) -> decltype(static_cast<std::shared_ptr<T>>(provider()))
|
|
{
|
|
std::shared_ptr<T> ptr;
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
if (!g_map[get_type<T>()])
|
|
{
|
|
ptr = provider();
|
|
|
|
g_map[get_type<T>()] = ptr;
|
|
}
|
|
}
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_init<T>::func(ptr.get());
|
|
}
|
|
|
|
return ptr;
|
|
}
|
|
|
|
// Emplace the object return by provider() (old object will be removed if it exists)
|
|
template<typename T, typename F>
|
|
static auto import_always(F&& provider) -> decltype(static_cast<std::shared_ptr<T>>(provider()))
|
|
{
|
|
std::shared_ptr<T> ptr;
|
|
std::shared_ptr<void> old;
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
old = std::move(g_map[get_type<T>()]);
|
|
ptr = provider();
|
|
|
|
g_map[get_type<T>()] = ptr;
|
|
}
|
|
|
|
if (old)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(old.get()));
|
|
}
|
|
|
|
id_manager::on_init<T>::func(ptr.get());
|
|
return ptr;
|
|
}
|
|
|
|
// Get the object unconditionally (create an object if it doesn't exist)
|
|
template<typename T, typename Make = T, typename... Args>
|
|
static std::enable_if_t<std::is_constructible<Make, Args...>::value, std::shared_ptr<T>> get_always(Args&&... args)
|
|
{
|
|
std::shared_ptr<T> ptr;
|
|
{
|
|
std::lock_guard<shared_mutex> lock(g_mutex);
|
|
|
|
if (auto& value = g_map[get_type<T>()])
|
|
{
|
|
return{ value, static_cast<T*>(value.get()) };
|
|
}
|
|
else
|
|
{
|
|
ptr = std::make_shared<Make>(std::forward<Args>(args)...);
|
|
|
|
g_map[get_type<T>()] = ptr;
|
|
}
|
|
}
|
|
|
|
id_manager::on_init<T>::func(ptr.get());
|
|
return ptr;
|
|
}
|
|
|
|
// Check whether the object exists
|
|
template<typename T>
|
|
static bool check()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
return g_map[get_type<T>()].operator bool();
|
|
}
|
|
|
|
// Get the object (returns nullptr if it doesn't exist)
|
|
template<typename T>
|
|
static std::shared_ptr<T> get()
|
|
{
|
|
reader_lock lock(g_mutex);
|
|
|
|
auto& ptr = g_map[get_type<T>()];
|
|
|
|
return{ ptr, static_cast<T*>(ptr.get()) };
|
|
}
|
|
|
|
// Delete the object
|
|
template<typename T>
|
|
static bool remove()
|
|
{
|
|
auto&& ptr = remove(get_type<T>());
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(ptr.get()));
|
|
}
|
|
|
|
return ptr.operator bool();
|
|
}
|
|
|
|
// Delete the object and return it
|
|
template<typename T>
|
|
static std::shared_ptr<T> withdraw()
|
|
{
|
|
auto&& ptr = remove(get_type<T>());
|
|
|
|
if (ptr)
|
|
{
|
|
id_manager::on_stop<T>::func(static_cast<T*>(ptr.get()));
|
|
}
|
|
|
|
return{ ptr, static_cast<T*>(ptr.get()) };
|
|
}
|
|
};
|