1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:07:24 +08:00
osu-lazer/osu.Game/Database/RealmContextFactory.cs

157 lines
4.8 KiB
C#
Raw Normal View History

// 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.Threading;
using osu.Framework.Graphics;
using osu.Framework.Logging;
using osu.Framework.Platform;
using osu.Framework.Statistics;
2021-01-19 17:22:23 +08:00
using osu.Game.Input.Bindings;
using Realms;
namespace osu.Game.Database
{
public class RealmContextFactory : Component, IRealmFactory
{
private readonly Storage storage;
2021-01-13 17:24:19 +08:00
private const string database_name = @"client";
2021-01-19 17:22:23 +08:00
private const int schema_version = 6;
2021-01-12 13:25:07 +08:00
/// <summary>
/// Lock object which is held for the duration of a write operation (via <see cref="GetForWrite"/>).
/// </summary>
private readonly object writeLock = new object();
private static readonly GlobalStatistic<int> reads = GlobalStatistics.Get<int>("Realm", "Get (Read)");
private static readonly GlobalStatistic<int> writes = GlobalStatistics.Get<int>("Realm", "Get (Write)");
2021-01-13 17:24:19 +08:00
private static readonly GlobalStatistic<int> refreshes = GlobalStatistics.Get<int>("Realm", "Dirty Refreshes");
private static readonly GlobalStatistic<int> contexts_created = GlobalStatistics.Get<int>("Realm", "Contexts (Created)");
private static readonly GlobalStatistic<int> pending_writes = GlobalStatistics.Get<int>("Realm", "Pending writes");
private Realm context;
public Realm Context
{
get
{
if (IsDisposed)
throw new InvalidOperationException($"Attempted to access {nameof(Context)} on a disposed context factory");
if (context == null)
{
context = createContext();
Logger.Log($"Opened realm \"{context.Config.DatabasePath}\" at version {context.Config.SchemaVersion}");
}
// creating a context will ensure our schema is up-to-date and migrated.
2021-01-07 14:41:29 +08:00
return context;
}
2021-01-07 14:41:29 +08:00
}
public RealmContextFactory(Storage storage)
2021-01-07 14:41:29 +08:00
{
this.storage = storage;
}
public Realm GetForRead()
{
reads.Value++;
return createContext();
}
public RealmWriteUsage GetForWrite()
{
writes.Value++;
pending_writes.Value++;
Monitor.Enter(writeLock);
2021-01-13 17:24:19 +08:00
return new RealmWriteUsage(this);
}
protected override void Update()
{
base.Update();
if (Context.Refresh())
refreshes.Value++;
}
private Realm createContext()
{
contexts_created.Value++;
return Realm.GetInstance(new RealmConfiguration(storage.GetFullPath($"{database_name}.realm", true))
{
SchemaVersion = schema_version,
MigrationCallback = onMigration,
});
}
2021-01-13 17:24:19 +08:00
private void onMigration(Migration migration, ulong lastSchemaVersion)
{
2021-01-19 17:22:23 +08:00
switch (lastSchemaVersion)
{
case 5:
// let's keep things simple. changing the type of the primary key is a bit involved.
migration.NewRealm.RemoveAll<RealmKeyBinding>();
break;
}
2021-01-13 17:24:19 +08:00
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
context?.Dispose();
context = null;
}
/// <summary>
/// A transaction used for making changes to realm data.
/// </summary>
public class RealmWriteUsage : IDisposable
2021-01-13 17:24:19 +08:00
{
public readonly Realm Realm;
private readonly RealmContextFactory factory;
private readonly Transaction transaction;
internal RealmWriteUsage(RealmContextFactory factory)
{
this.factory = factory;
Realm = factory.createContext();
transaction = Realm.BeginWrite();
}
/// <summary>
/// Commit all changes made in this transaction.
/// </summary>
public void Commit() => transaction.Commit();
/// <summary>
/// Revert all changes made in this transaction.
/// </summary>
public void Rollback() => transaction.Rollback();
/// <summary>
/// Disposes this instance, calling the initially captured action.
/// </summary>
public virtual void Dispose()
2021-01-13 17:24:19 +08:00
{
// rollback if not explicitly committed.
transaction?.Dispose();
Realm?.Dispose();
2021-01-13 17:24:19 +08:00
Monitor.Exit(factory.writeLock);
pending_writes.Value--;
2021-01-13 17:24:19 +08:00
}
}
}
}