mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
132 lines
4.1 KiB
C#
132 lines
4.1 KiB
C#
// 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 osu.Framework.Development;
|
|
using Realms;
|
|
|
|
#nullable enable
|
|
|
|
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> : ILive<T> where T : RealmObject, IHasGuidPrimaryKey
|
|
{
|
|
public Guid ID { get; }
|
|
|
|
public bool IsManaged => data.IsManaged;
|
|
|
|
/// <summary>
|
|
/// The original live data used to create this instance.
|
|
/// </summary>
|
|
private readonly T data;
|
|
|
|
private readonly RealmContextFactory realmFactory;
|
|
|
|
/// <summary>
|
|
/// Construct a new instance of live realm data.
|
|
/// </summary>
|
|
/// <param name="data">The realm data.</param>
|
|
/// <param name="realmFactory">The realm factory the data was sourced from. May be null for an unmanaged object.</param>
|
|
public RealmLive(T data, RealmContextFactory realmFactory)
|
|
{
|
|
this.data = data;
|
|
this.realmFactory = realmFactory;
|
|
|
|
ID = data.ID;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Perform a read operation on this live object.
|
|
/// </summary>
|
|
/// <param name="perform">The action to perform.</param>
|
|
public void PerformRead(Action<T> perform)
|
|
{
|
|
if (!IsManaged)
|
|
{
|
|
perform(data);
|
|
return;
|
|
}
|
|
|
|
realmFactory.Run(realm =>
|
|
{
|
|
perform(retrieveFromID(realm, ID));
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Perform a read operation on this live object.
|
|
/// </summary>
|
|
/// <param name="perform">The action to perform.</param>
|
|
public TReturn PerformRead<TReturn>(Func<T, TReturn> perform)
|
|
{
|
|
if (!IsManaged)
|
|
return perform(data);
|
|
|
|
return realmFactory.Run(realm =>
|
|
{
|
|
var returnData = perform(retrieveFromID(realm, ID));
|
|
|
|
if (returnData is RealmObjectBase realmObject && realmObject.IsManaged)
|
|
throw new InvalidOperationException(@$"Managed realm objects should not exit the scope of {nameof(PerformRead)}.");
|
|
|
|
return returnData;
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Perform a write operation on this live object.
|
|
/// </summary>
|
|
/// <param name="perform">The action to perform.</param>
|
|
public void PerformWrite(Action<T> perform)
|
|
{
|
|
if (!IsManaged)
|
|
throw new InvalidOperationException(@"Can't perform writes on a non-managed underlying value");
|
|
|
|
PerformRead(t =>
|
|
{
|
|
var transaction = t.Realm.BeginWrite();
|
|
perform(t);
|
|
transaction.Commit();
|
|
});
|
|
}
|
|
|
|
public T Value
|
|
{
|
|
get
|
|
{
|
|
if (!IsManaged)
|
|
return data;
|
|
|
|
if (!ThreadSafety.IsUpdateThread)
|
|
throw new InvalidOperationException($"Can't use {nameof(Value)} on managed objects from non-update threads");
|
|
|
|
return realmFactory.Context.Find<T>(ID);
|
|
}
|
|
}
|
|
|
|
private T retrieveFromID(Realm realm, Guid id)
|
|
{
|
|
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();
|
|
found = realm.Find<T>(ID);
|
|
}
|
|
|
|
return found;
|
|
}
|
|
|
|
public bool Equals(ILive<T>? other) => ID == other?.ID;
|
|
|
|
public override string ToString() => PerformRead(i => i.ToString());
|
|
}
|
|
}
|