// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using Realms; namespace osu.Game.Database { /// /// Provides a method of working with unmanaged realm objects. /// Usually used for testing purposes where the instance is never required to be managed. /// /// The underlying object type. public class RealmLiveUnmanaged : Live where T : RealmObjectBase, IHasGuidPrimaryKey { /// /// The original live data used to create this instance. /// public override T Value { get; } /// /// Construct a new instance of live realm data. /// /// The realm data. public RealmLiveUnmanaged(T data) : base(data.ID) { if (data.IsManaged) throw new InvalidOperationException($"Cannot use {nameof(RealmLiveUnmanaged)} with managed instances"); Value = data; } public override void PerformRead(Action perform) => perform(Value); public override TReturn PerformRead(Func perform) => perform(Value); public override void PerformWrite(Action perform) => throw new InvalidOperationException(@"Can't perform writes on a non-managed underlying value"); public override bool IsManaged => false; } }