1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game/Database/RealmLive.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

173 lines
5.7 KiB
C#
Raw Normal View History

2021-09-30 22:46:16 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Diagnostics;
using osu.Framework.Development;
using osu.Framework.Extensions.ObjectExtensions;
2022-01-26 11:42:24 +08:00
using osu.Framework.Statistics;
2021-09-30 22:46:16 +08:00
using Realms;
namespace osu.Game.Database
{
/// <summary>
/// Provides a method of working with realm objects over longer application lifetimes.
/// </summary>
/// <typeparam name="T">The underlying object type.</typeparam>
public class RealmLive<T> : Live<T> where T : RealmObject, IHasGuidPrimaryKey
2021-09-30 22:46:16 +08:00
{
public override bool IsManaged => data.IsManaged;
2021-09-30 22:46:16 +08:00
/// <summary>
/// The original live data used to create this instance.
/// </summary>
private T data;
private bool dataIsFromUpdateThread;
2021-09-30 22:46:16 +08:00
private readonly RealmAccess realm;
2021-09-30 22:46:16 +08:00
/// <summary>
/// Construct a new instance of live realm data.
/// </summary>
/// <param name="data">The realm data.</param>
/// <param name="realm">The realm factory the data was sourced from. May be null for an unmanaged object.</param>
public RealmLive(T data, RealmAccess realm)
: base(data.ID)
2021-09-30 22:46:16 +08:00
{
this.data = data;
this.realm = realm;
dataIsFromUpdateThread = ThreadSafety.IsUpdateThread;
2021-09-30 22:46:16 +08:00
}
/// <summary>
/// Perform a read operation on this live object.
/// </summary>
/// <param name="perform">The action to perform.</param>
public override void PerformRead(Action<T> perform)
2021-09-30 22:46:16 +08:00
{
if (!IsManaged)
2021-09-30 22:46:16 +08:00
{
perform(data);
return;
}
realm.Run(r =>
{
if (ThreadSafety.IsUpdateThread)
{
ensureDataIsFromUpdateThread();
perform(data);
return;
}
perform(retrieveFromID(r));
2022-01-26 12:29:12 +08:00
RealmLiveStatistics.USAGE_ASYNC.Value++;
});
2021-09-30 22:46:16 +08:00
}
/// <summary>
/// Perform a read operation on this live object.
/// </summary>
/// <param name="perform">The action to perform.</param>
public override TReturn PerformRead<TReturn>(Func<T, TReturn> perform)
2021-09-30 22:46:16 +08:00
{
if (!IsManaged)
2021-09-30 22:46:16 +08:00
return perform(data);
if (ThreadSafety.IsUpdateThread)
{
ensureDataIsFromUpdateThread();
return perform(data);
}
return realm.Run(r =>
{
var returnData = perform(retrieveFromID(r));
2022-01-26 12:29:12 +08:00
RealmLiveStatistics.USAGE_ASYNC.Value++;
if (returnData is RealmObjectBase realmObject && realmObject.IsManaged)
throw new InvalidOperationException(@$"Managed realm objects should not exit the scope of {nameof(PerformRead)}.");
return returnData;
});
2021-09-30 22:46:16 +08:00
}
/// <summary>
/// Perform a write operation on this live object.
/// </summary>
/// <param name="perform">The action to perform.</param>
public override void PerformWrite(Action<T> perform)
{
if (!IsManaged)
throw new InvalidOperationException(@"Can't perform writes on a non-managed underlying value");
2021-09-30 22:46:16 +08:00
PerformRead(t =>
{
2023-07-06 12:37:42 +08:00
using (var transaction = t.Realm!.BeginWrite())
{
perform(t);
transaction.Commit();
}
2022-01-26 12:29:12 +08:00
RealmLiveStatistics.WRITES.Value++;
2021-09-30 22:46:16 +08:00
});
}
2021-09-30 22:46:16 +08:00
public override T Value
2021-09-30 22:46:16 +08:00
{
get
{
if (!IsManaged)
2021-09-30 22:46:16 +08:00
return data;
if (!ThreadSafety.IsUpdateThread)
throw new InvalidOperationException($"Can't use {nameof(Value)} on managed objects from non-update threads");
2021-09-30 22:46:16 +08:00
ensureDataIsFromUpdateThread();
return data;
2021-09-30 22:46:16 +08:00
}
}
private void ensureDataIsFromUpdateThread()
{
Debug.Assert(ThreadSafety.IsUpdateThread);
if (dataIsFromUpdateThread && !data.Realm.AsNonNull().IsClosed)
2022-01-26 11:42:24 +08:00
{
2022-01-26 12:29:12 +08:00
RealmLiveStatistics.USAGE_UPDATE_IMMEDIATE.Value++;
return;
2022-01-26 11:42:24 +08:00
}
dataIsFromUpdateThread = true;
data = retrieveFromID(realm.Realm);
2022-01-26 12:29:12 +08:00
RealmLiveStatistics.USAGE_UPDATE_REFETCH.Value++;
}
private T retrieveFromID(Realm realm)
{
var found = realm.Find<T>(ID);
if (found == null)
{
// It may be that we access this from the update thread before a refresh has taken place.
// To ensure that behaviour matches what we'd expect (the object *is* available), force
// a refresh to bring in any off-thread changes immediately.
realm.Refresh();
2023-07-06 12:37:42 +08:00
found = realm.Find<T>(ID)!;
}
return found;
}
2021-09-30 22:46:16 +08:00
}
2022-01-26 11:42:24 +08:00
2022-01-26 12:29:12 +08:00
internal static class RealmLiveStatistics
2022-01-26 11:42:24 +08:00
{
2022-01-26 12:29:12 +08:00
public static readonly GlobalStatistic<int> WRITES = GlobalStatistics.Get<int>(@"Realm", @"Live writes");
public static readonly GlobalStatistic<int> USAGE_UPDATE_IMMEDIATE = GlobalStatistics.Get<int>(@"Realm", @"Live update read (fast)");
public static readonly GlobalStatistic<int> USAGE_UPDATE_REFETCH = GlobalStatistics.Get<int>(@"Realm", @"Live update read (slow)");
public static readonly GlobalStatistic<int> USAGE_ASYNC = GlobalStatistics.Get<int>(@"Realm", @"Live async read");
2022-01-26 11:42:24 +08:00
}
2021-09-30 22:46:16 +08:00
}