mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
3b1166d1e6
FirstOrDefault when called on a TableQuery with a predicate doesn't use table indices
132 lines
4.4 KiB
C#
132 lines
4.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using SQLite.Net;
|
|
using SQLiteNetExtensions.Extensions;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public abstract class DatabaseBackedStore
|
|
{
|
|
protected readonly Storage Storage;
|
|
protected readonly SQLiteConnection Connection;
|
|
|
|
protected virtual int StoreVersion => 1;
|
|
|
|
protected DatabaseBackedStore(SQLiteConnection connection, Storage storage = null)
|
|
{
|
|
Storage = storage;
|
|
Connection = connection;
|
|
|
|
try
|
|
{
|
|
Prepare();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Error(e, $@"Failed to initialise the {GetType()}! Trying again with a clean database...");
|
|
Prepare(true);
|
|
}
|
|
|
|
checkMigrations();
|
|
}
|
|
|
|
private void checkMigrations()
|
|
{
|
|
var storeName = GetType().Name;
|
|
|
|
var reportedVersion = Connection.Table<StoreVersion>().Where(s => s.StoreName == storeName).FirstOrDefault() ?? new StoreVersion
|
|
{
|
|
StoreName = storeName,
|
|
Version = 0
|
|
};
|
|
|
|
if (reportedVersion.Version != StoreVersion)
|
|
PerformMigration(reportedVersion.Version, reportedVersion.Version = StoreVersion);
|
|
|
|
Connection.InsertOrReplace(reportedVersion);
|
|
|
|
StartupTasks();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when the database version of this store doesn't match the local version.
|
|
/// Any manual migration operations should be performed in this.
|
|
/// </summary>
|
|
/// <param name="currentVersion">The current store version. This will be zero on a fresh database initialisation.</param>
|
|
/// <param name="targetVersion">The target version which we are migrating to (equal to the current <see cref="StoreVersion"/>).</param>
|
|
protected virtual void PerformMigration(int currentVersion, int targetVersion)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Perform any common startup tasks. Runs after <see cref="Prepare(bool)"/> and <see cref="PerformMigration(int, int)"/>.
|
|
/// </summary>
|
|
protected virtual void StartupTasks()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Prepare this database for use. Tables should be created here.
|
|
/// </summary>
|
|
protected abstract void Prepare(bool reset = false);
|
|
|
|
/// <summary>
|
|
/// Reset this database to a default state. Undo all changes to database and storage backings.
|
|
/// </summary>
|
|
public void Reset() => Prepare(true);
|
|
|
|
|
|
public TableQuery<T> Query<T>(Expression<Func<T, bool>> filter = null) where T : class
|
|
{
|
|
checkType(typeof(T));
|
|
|
|
var query = Connection.Table<T>();
|
|
|
|
if (filter != null)
|
|
query = query.Where(filter);
|
|
|
|
return query;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Query and populate results.
|
|
/// </summary>
|
|
/// <param name="filter">An filter to refine results.</param>
|
|
/// <returns></returns>
|
|
public List<T> QueryAndPopulate<T>(Expression<Func<T, bool>> filter)
|
|
where T : class
|
|
{
|
|
checkType(typeof(T));
|
|
|
|
return Connection.GetAllWithChildren(filter, true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Populate a database-backed item.
|
|
/// </summary>
|
|
/// <param name="item"></param>
|
|
/// <param name="recursive">Whether population should recurse beyond a single level.</param>
|
|
public void Populate<T>(T item, bool recursive = true)
|
|
{
|
|
checkType(item.GetType());
|
|
Connection.GetChildren(item, recursive);
|
|
}
|
|
|
|
private void checkType(Type type)
|
|
{
|
|
if (!ValidTypes.Contains(type))
|
|
throw new InvalidOperationException($"The requested operation specified a type of {type}, which is invalid for this {nameof(DatabaseBackedStore)}.");
|
|
}
|
|
|
|
protected abstract Type[] ValidTypes { get; }
|
|
}
|
|
}
|