feat: Upgrades serialization v4 (Threaded Heap Serialization) (#1947)

### Summary

- `GenericEntityPersistence` is now a type of `GenericPersistence`. This allows developers to serialize both entities and non-entities in the same system. 🎉
- Each `SerializationThreadWorker` now allocates 1MB of heap for serialization _permanently_. If more memory is needed, that thread will double it's memory, not to exceed increments of 64MB.
- Several bugs with serialization introduced with the pure MMF implementation have been fixed.
- `BinaryFileReader` has been added back. 🎉
- Adds `world.useMultithreadedSaves` to allow disabling threaded saves.

> [!IMPORTANT]
> **Developer Note**
> The split file serialization has been deprecated and is no longer used. We have effectively gone back to the same file writing we had before the pure MMF implementation.
This commit is contained in:
Kamron Batman 2024-09-14 09:57:43 -07:00 committed by GitHub
parent aaac0c596c
commit 465d3c8187
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 564 additions and 373 deletions

View file

@ -21,10 +21,10 @@ namespace Server;
public static class SerializationExtensions
{
private static readonly Dictionary<Type, Func<Serial, bool, bool, ISerializable>> _directFinderTable = new();
private static readonly Dictionary<Type, Func<Serial, bool, bool, ISerializable>> _searchTable = new();
private static readonly Dictionary<Type, Func<Serial, bool, ISerializable>> _directFinderTable = new();
private static readonly Dictionary<Type, Func<Serial, bool, ISerializable>> _searchTable = new();
public static void RegisterFindEntity(this Type type, Func<Serial, bool, bool, ISerializable> func)
public static void RegisterFindEntity(this Type type, Func<Serial, bool, ISerializable> func)
{
_searchTable[type] = func;
}
@ -47,12 +47,12 @@ public static class SerializationExtensions
if (typeof(IEntity).IsAssignableFrom(typeT))
{
return World.FindEntity<IEntity>(serial, returnPending: false) as T;
return World.FindEntity<IEntity>(serial) as T;
}
if (_directFinderTable.TryGetValue(typeT, out var finder))
{
return finder(serial, false, false) as T;
return finder(serial, false) as T;
}
Type type = null;
@ -87,7 +87,7 @@ public static class SerializationExtensions
finder = _searchTable[type];
_directFinderTable[type] = finder;
return finder(serial, false, false) as T;
return finder(serial, false) as T;
}
public static List<T> ReadEntityList<T>(