2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2016-10-19 03:38:59 +08:00
|
|
|
|
using System.Linq;
|
2016-10-20 00:51:18 +08:00
|
|
|
|
using System.Linq.Expressions;
|
2016-10-13 22:15:08 +08:00
|
|
|
|
using System.Security.Cryptography;
|
2017-02-24 16:08:13 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2016-10-10 21:20:06 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2016-10-08 01:50:34 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
|
|
|
|
using osu.Game.Beatmaps.IO;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
using osu.Game.IPC;
|
2016-10-19 01:35:01 +08:00
|
|
|
|
using SQLite.Net;
|
|
|
|
|
using SQLiteNetExtensions.Extensions;
|
2016-10-04 23:31:10 +08:00
|
|
|
|
|
2016-10-14 11:33:58 +08:00
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapDatabase
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private SQLiteConnection connection { get; }
|
2017-02-23 14:38:17 +08:00
|
|
|
|
private Storage storage;
|
2016-10-12 01:52:16 +08:00
|
|
|
|
public event Action<BeatmapSetInfo> BeatmapSetAdded;
|
2017-02-24 13:37:54 +08:00
|
|
|
|
public event Action<BeatmapSetInfo> BeatmapSetRemoved;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
// ReSharper disable once NotAccessedField.Local (we should keep a reference to this so it is not finalised)
|
2016-10-21 17:25:22 +08:00
|
|
|
|
private BeatmapImporter ipc;
|
|
|
|
|
|
2017-02-23 14:38:17 +08:00
|
|
|
|
public BeatmapDatabase(Storage storage, GameHost importHost = null)
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2016-10-27 16:34:43 +08:00
|
|
|
|
this.storage = storage;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2016-10-27 16:34:43 +08:00
|
|
|
|
if (importHost != null)
|
|
|
|
|
ipc = new BeatmapImporter(importHost, this);
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2016-10-27 16:08:53 +08:00
|
|
|
|
if (connection == null)
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2017-01-23 12:02:03 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2017-01-23 17:13:06 +08:00
|
|
|
|
connection = prepareConnection();
|
2017-02-24 16:08:13 +08:00
|
|
|
|
deletePending();
|
2017-01-23 12:02:03 +08:00
|
|
|
|
}
|
2017-02-24 16:08:13 +08:00
|
|
|
|
catch (Exception e)
|
2017-01-23 12:02:03 +08:00
|
|
|
|
{
|
2017-02-24 16:08:13 +08:00
|
|
|
|
Logger.Error(e, @"Failed to initialise the beatmap database! Trying again with a clean database...");
|
2017-01-23 12:02:03 +08:00
|
|
|
|
storage.DeleteDatabase(@"beatmaps");
|
2017-01-23 17:13:06 +08:00
|
|
|
|
connection = prepareConnection();
|
2017-01-23 12:02:03 +08:00
|
|
|
|
}
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-10-05 04:29:08 +08:00
|
|
|
|
}
|
2016-10-19 01:35:01 +08:00
|
|
|
|
|
2017-02-24 16:08:13 +08:00
|
|
|
|
private void deletePending()
|
|
|
|
|
{
|
|
|
|
|
foreach (var b in Query<BeatmapSetInfo>().Where(b => b.DeletePending))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
storage.Delete(b.Path);
|
2017-02-27 17:26:51 +08:00
|
|
|
|
|
|
|
|
|
GetChildren(b, true);
|
|
|
|
|
|
|
|
|
|
foreach (var i in b.Beatmaps)
|
|
|
|
|
{
|
|
|
|
|
if (i.Metadata != null) connection.Delete(i.Metadata);
|
|
|
|
|
if (i.BaseDifficulty != null) connection.Delete(i.BaseDifficulty);
|
|
|
|
|
|
|
|
|
|
connection.Delete(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (b.Metadata != null) connection.Delete(b.Metadata);
|
2017-02-24 16:08:13 +08:00
|
|
|
|
connection.Delete(b);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
Logger.Error(e, $@"Could not delete beatmap {b}");
|
2017-02-24 16:08:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//this is required because sqlite migrations don't work, initially inserting nulls into this field.
|
|
|
|
|
//see https://github.com/praeclarum/sqlite-net/issues/326
|
|
|
|
|
connection.Query<BeatmapSetInfo>("UPDATE BeatmapSetInfo SET DeletePending = 0 WHERE DeletePending IS NULL");
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-23 17:13:06 +08:00
|
|
|
|
private SQLiteConnection prepareConnection()
|
|
|
|
|
{
|
|
|
|
|
var conn = storage.GetDatabase(@"beatmaps");
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
conn.CreateTable<BeatmapMetadata>();
|
|
|
|
|
conn.CreateTable<BaseDifficulty>();
|
|
|
|
|
conn.CreateTable<BeatmapSetInfo>();
|
|
|
|
|
conn.CreateTable<BeatmapInfo>();
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
conn.Close();
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-21 16:01:46 +08:00
|
|
|
|
public void Reset()
|
|
|
|
|
{
|
|
|
|
|
foreach (var setInfo in Query<BeatmapSetInfo>())
|
2016-10-27 16:08:53 +08:00
|
|
|
|
{
|
|
|
|
|
if (storage.Exists(setInfo.Path))
|
|
|
|
|
storage.Delete(setInfo.Path);
|
|
|
|
|
}
|
2016-10-21 16:01:46 +08:00
|
|
|
|
|
2016-10-27 16:08:53 +08:00
|
|
|
|
connection.DeleteAll<BeatmapMetadata>();
|
|
|
|
|
connection.DeleteAll<BaseDifficulty>();
|
|
|
|
|
connection.DeleteAll<BeatmapSetInfo>();
|
|
|
|
|
connection.DeleteAll<BeatmapInfo>();
|
2016-10-21 16:01:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 22:37:45 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Import multiple <see cref="BeatmapSetInfo"/> from <paramref name="paths"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="paths">Multiple locations on disk</param>
|
2017-02-12 13:53:33 +08:00
|
|
|
|
public void Import(IEnumerable<string> paths)
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2017-02-28 21:35:42 +08:00
|
|
|
|
Stack<BeatmapSetInfo> sets = new Stack<BeatmapSetInfo>();
|
|
|
|
|
|
2016-10-21 17:25:22 +08:00
|
|
|
|
foreach (string p in paths)
|
2017-02-28 21:35:42 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2017-03-02 00:57:57 +08:00
|
|
|
|
BeatmapSetInfo set = getBeatmapSet(p);
|
2017-02-28 21:35:42 +08:00
|
|
|
|
|
2017-03-03 19:51:07 +08:00
|
|
|
|
//If we have an ID then we already exist in the database.
|
2017-03-02 20:36:01 +08:00
|
|
|
|
if (set.ID == 0)
|
|
|
|
|
sets.Push(set);
|
2017-02-28 21:46:16 +08:00
|
|
|
|
|
2017-02-28 21:35:42 +08:00
|
|
|
|
// We may or may not want to delete the file depending on where it is stored.
|
|
|
|
|
// e.g. reconstructing/repairing database with beatmaps from default storage.
|
2017-03-02 20:39:02 +08:00
|
|
|
|
// Also, not always a single file, i.e. for LegacyFilesystemReader
|
2017-02-28 21:35:42 +08:00
|
|
|
|
// TODO: Add a check to prevent files from storage to be deleted.
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
File.Delete(p);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error(e, $@"Could not delete file at {p}");
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-28 21:46:16 +08:00
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2017-03-02 21:10:32 +08:00
|
|
|
|
e = e.InnerException ?? e;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
Logger.Error(e, @"Could not import beatmap set");
|
2017-02-28 21:46:16 +08:00
|
|
|
|
}
|
2017-02-28 21:35:42 +08:00
|
|
|
|
|
|
|
|
|
// Batch commit with multiple sets to database
|
|
|
|
|
Import(sets);
|
2017-02-12 13:53:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 22:37:45 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Import <see cref="BeatmapSetInfo"/> from <paramref name="path"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">Location on disk</param>
|
2017-02-12 13:53:33 +08:00
|
|
|
|
public void Import(string path)
|
2017-02-28 21:35:42 +08:00
|
|
|
|
{
|
|
|
|
|
Import(new [] { path });
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 00:57:57 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Duplicates content from <paramref name="path"/> to storage and returns a representing <see cref="BeatmapSetInfo"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">Content location</param>
|
2017-03-02 20:39:02 +08:00
|
|
|
|
/// <returns><see cref="BeatmapSetInfo"/></returns>
|
2017-03-02 00:57:57 +08:00
|
|
|
|
private BeatmapSetInfo getBeatmapSet(string path)
|
2017-02-12 13:53:33 +08:00
|
|
|
|
{
|
|
|
|
|
string hash = null;
|
2016-10-21 16:01:34 +08:00
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
BeatmapMetadata metadata;
|
2016-10-21 16:01:34 +08:00
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
using (var reader = ArchiveReader.GetReader(storage, path))
|
|
|
|
|
metadata = reader.ReadMetadata();
|
2016-10-21 16:01:34 +08:00
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
if (File.Exists(path)) // Not always the case, i.e. for LegacyFilesystemReader
|
|
|
|
|
{
|
|
|
|
|
using (var md5 = MD5.Create())
|
|
|
|
|
using (var input = storage.GetStream(path))
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2017-02-12 13:53:33 +08:00
|
|
|
|
hash = BitConverter.ToString(md5.ComputeHash(input)).Replace("-", "").ToLowerInvariant();
|
|
|
|
|
input.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
path = Path.Combine(@"beatmaps", hash.Remove(1), hash.Remove(2), hash);
|
2017-02-24 16:49:19 +08:00
|
|
|
|
if (!storage.Exists(path))
|
|
|
|
|
using (var output = storage.GetStream(path, FileAccess.Write))
|
|
|
|
|
input.CopyTo(output);
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2017-02-12 13:53:33 +08:00
|
|
|
|
}
|
2017-02-24 16:49:19 +08:00
|
|
|
|
|
|
|
|
|
var existing = connection.Table<BeatmapSetInfo>().FirstOrDefault(b => b.Hash == hash);
|
|
|
|
|
|
|
|
|
|
if (existing != null)
|
|
|
|
|
{
|
|
|
|
|
if (existing.DeletePending)
|
|
|
|
|
{
|
|
|
|
|
existing.DeletePending = false;
|
|
|
|
|
Update(existing, false);
|
|
|
|
|
BeatmapSetAdded?.Invoke(existing);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 20:36:01 +08:00
|
|
|
|
return existing;
|
2017-02-24 16:49:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
var beatmapSet = new BeatmapSetInfo
|
|
|
|
|
{
|
|
|
|
|
OnlineBeatmapSetID = metadata.OnlineBeatmapSetID,
|
|
|
|
|
Beatmaps = new List<BeatmapInfo>(),
|
|
|
|
|
Path = path,
|
|
|
|
|
Hash = hash,
|
|
|
|
|
Metadata = metadata
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
using (var reader = ArchiveReader.GetReader(storage, path))
|
|
|
|
|
{
|
2017-02-13 17:30:47 +08:00
|
|
|
|
string[] mapNames = reader.BeatmapFilenames;
|
2017-02-12 13:53:33 +08:00
|
|
|
|
foreach (var name in mapNames)
|
|
|
|
|
using (var stream = new StreamReader(reader.GetStream(name)))
|
2016-10-19 23:00:11 +08:00
|
|
|
|
{
|
2017-02-12 13:53:33 +08:00
|
|
|
|
var decoder = BeatmapDecoder.GetDecoder(stream);
|
|
|
|
|
Beatmap beatmap = decoder.Decode(stream);
|
|
|
|
|
beatmap.BeatmapInfo.Path = name;
|
2016-10-21 16:01:34 +08:00
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
// TODO: Diff beatmap metadata with set metadata and leave it here if necessary
|
|
|
|
|
beatmap.BeatmapInfo.Metadata = null;
|
2016-10-21 16:01:34 +08:00
|
|
|
|
|
2017-02-12 13:53:33 +08:00
|
|
|
|
beatmapSet.Beatmaps.Add(beatmap.BeatmapInfo);
|
2016-10-19 23:00:11 +08:00
|
|
|
|
}
|
2017-03-02 00:08:12 +08:00
|
|
|
|
beatmapSet.StoryboardFile = reader.StoryboardFilename;
|
2016-10-27 16:08:53 +08:00
|
|
|
|
}
|
2017-02-12 13:53:33 +08:00
|
|
|
|
|
2017-02-28 21:35:42 +08:00
|
|
|
|
return beatmapSet;
|
2016-10-27 16:08:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Import(IEnumerable<BeatmapSetInfo> beatmapSets)
|
|
|
|
|
{
|
2017-02-25 09:39:13 +08:00
|
|
|
|
lock (connection)
|
2016-10-27 16:08:53 +08:00
|
|
|
|
{
|
2017-02-25 09:39:13 +08:00
|
|
|
|
connection.BeginTransaction();
|
|
|
|
|
|
|
|
|
|
foreach (var s in beatmapSets)
|
2017-03-02 20:36:01 +08:00
|
|
|
|
{
|
|
|
|
|
connection.InsertWithChildren(s, true);
|
|
|
|
|
BeatmapSetAdded?.Invoke(s);
|
|
|
|
|
}
|
2016-10-27 16:08:53 +08:00
|
|
|
|
|
2017-02-25 09:39:13 +08:00
|
|
|
|
connection.Commit();
|
|
|
|
|
}
|
2016-10-13 22:29:30 +08:00
|
|
|
|
}
|
2016-10-14 11:33:58 +08:00
|
|
|
|
|
2017-02-24 13:37:54 +08:00
|
|
|
|
public void Delete(BeatmapSetInfo beatmapSet)
|
|
|
|
|
{
|
2017-02-24 16:08:13 +08:00
|
|
|
|
beatmapSet.DeletePending = true;
|
|
|
|
|
Update(beatmapSet, false);
|
|
|
|
|
|
2017-02-24 13:37:54 +08:00
|
|
|
|
BeatmapSetRemoved?.Invoke(beatmapSet);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-19 01:35:01 +08:00
|
|
|
|
public ArchiveReader GetReader(BeatmapSetInfo beatmapSet)
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2016-11-01 22:24:14 +08:00
|
|
|
|
if (string.IsNullOrEmpty(beatmapSet.Path))
|
|
|
|
|
return null;
|
|
|
|
|
|
2016-10-19 01:35:01 +08:00
|
|
|
|
return ArchiveReader.GetReader(storage, beatmapSet.Path);
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-10-19 03:48:24 +08:00
|
|
|
|
public BeatmapSetInfo GetBeatmapSet(int id)
|
|
|
|
|
{
|
2017-01-09 21:05:01 +08:00
|
|
|
|
return Query<BeatmapSetInfo>().FirstOrDefault(s => s.OnlineBeatmapSetID == id);
|
2016-10-19 03:48:24 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2017-02-09 22:09:48 +08:00
|
|
|
|
public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo beatmapInfo, WorkingBeatmap previous = null, bool withStoryboard = false)
|
2016-10-19 03:38:59 +08:00
|
|
|
|
{
|
2016-12-20 23:56:49 +08:00
|
|
|
|
var beatmapSetInfo = Query<BeatmapSetInfo>().FirstOrDefault(s => s.ID == beatmapInfo.BeatmapSetInfoID);
|
2016-10-28 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
//we need metadata
|
2016-11-23 14:34:32 +08:00
|
|
|
|
GetChildren(beatmapSetInfo);
|
2016-10-28 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
if (beatmapSetInfo == null)
|
2016-12-20 23:56:49 +08:00
|
|
|
|
throw new InvalidOperationException($@"Beatmap set {beatmapInfo.BeatmapSetInfoID} is not in the local database.");
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-10-28 19:24:14 +08:00
|
|
|
|
if (beatmapInfo.Metadata == null)
|
|
|
|
|
beatmapInfo.Metadata = beatmapSetInfo.Metadata;
|
|
|
|
|
|
2017-02-24 12:43:21 +08:00
|
|
|
|
WorkingBeatmap working = new DatabaseWorkingBeatmap(this, beatmapInfo, beatmapSetInfo, withStoryboard);
|
2016-10-28 19:24:14 +08:00
|
|
|
|
|
|
|
|
|
previous?.TransferTo(working);
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-10-28 19:24:14 +08:00
|
|
|
|
return working;
|
2016-10-19 03:38:59 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-10-19 03:38:59 +08:00
|
|
|
|
public TableQuery<T> Query<T>() where T : class
|
|
|
|
|
{
|
2016-10-27 16:08:53 +08:00
|
|
|
|
return connection.Table<T>();
|
2016-10-19 03:38:59 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-10-20 00:51:18 +08:00
|
|
|
|
public T GetWithChildren<T>(object id) where T : class
|
|
|
|
|
{
|
2016-10-27 16:08:53 +08:00
|
|
|
|
return connection.GetWithChildren<T>(id);
|
2016-10-20 00:51:18 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-11-22 16:21:42 +08:00
|
|
|
|
public List<T> GetAllWithChildren<T>(Expression<Func<T, bool>> filter = null, bool recursive = true)
|
|
|
|
|
where T : class
|
2016-10-20 00:51:18 +08:00
|
|
|
|
{
|
2016-11-22 16:21:42 +08:00
|
|
|
|
return connection.GetAllWithChildren(filter, recursive);
|
2016-10-20 00:51:18 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-11-23 14:34:32 +08:00
|
|
|
|
public T GetChildren<T>(T item, bool recursive = false)
|
2016-10-21 03:42:09 +08:00
|
|
|
|
{
|
2016-10-21 16:02:00 +08:00
|
|
|
|
if (item == null) return default(T);
|
|
|
|
|
|
2016-10-27 16:08:53 +08:00
|
|
|
|
connection.GetChildren(item, recursive);
|
2016-10-21 16:02:00 +08:00
|
|
|
|
return item;
|
2016-10-21 03:42:09 +08:00
|
|
|
|
}
|
2016-10-19 03:38:59 +08:00
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private readonly Type[] validTypes = {
|
2016-10-19 03:38:59 +08:00
|
|
|
|
typeof(BeatmapSetInfo),
|
|
|
|
|
typeof(BeatmapInfo),
|
|
|
|
|
typeof(BeatmapMetadata),
|
|
|
|
|
typeof(BaseDifficulty),
|
|
|
|
|
};
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2016-10-19 03:38:59 +08:00
|
|
|
|
public void Update<T>(T record, bool cascade = true) where T : class
|
|
|
|
|
{
|
2016-11-22 16:21:42 +08:00
|
|
|
|
if (validTypes.All(t => t != typeof(T)))
|
2017-03-07 09:59:19 +08:00
|
|
|
|
throw new ArgumentException("Must be a type managed by BeatmapDatabase", nameof(T));
|
2016-10-19 03:38:59 +08:00
|
|
|
|
if (cascade)
|
2016-10-27 16:08:53 +08:00
|
|
|
|
connection.UpdateWithChildren(record);
|
2016-10-19 03:38:59 +08:00
|
|
|
|
else
|
2016-10-27 16:08:53 +08:00
|
|
|
|
connection.Update(record);
|
2016-10-19 03:38:59 +08:00
|
|
|
|
}
|
2017-02-24 12:43:21 +08:00
|
|
|
|
|
|
|
|
|
public bool Exists(BeatmapSetInfo beatmapSet) => storage.Exists(beatmapSet.Path);
|
|
|
|
|
|
|
|
|
|
private class DatabaseWorkingBeatmap : WorkingBeatmap
|
|
|
|
|
{
|
|
|
|
|
private readonly BeatmapDatabase database;
|
|
|
|
|
|
|
|
|
|
public DatabaseWorkingBeatmap(BeatmapDatabase database, BeatmapInfo beatmapInfo, BeatmapSetInfo beatmapSetInfo, bool withStoryboard = false)
|
|
|
|
|
: base(beatmapInfo, beatmapSetInfo, withStoryboard)
|
|
|
|
|
{
|
|
|
|
|
this.database = database;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ArchiveReader GetReader() => database?.GetReader(BeatmapSetInfo);
|
|
|
|
|
}
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-10-19 23:00:11 +08:00
|
|
|
|
}
|