2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2018-05-28 18:56:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
public class DatabaseWriteUsage : IDisposable
|
|
|
|
|
{
|
|
|
|
|
public readonly OsuDbContext Context;
|
|
|
|
|
private readonly Action<DatabaseWriteUsage> usageCompleted;
|
|
|
|
|
|
|
|
|
|
public DatabaseWriteUsage(OsuDbContext context, Action<DatabaseWriteUsage> onCompleted)
|
|
|
|
|
{
|
|
|
|
|
Context = context;
|
|
|
|
|
usageCompleted = onCompleted;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool PerformedWrite { get; private set; }
|
|
|
|
|
|
|
|
|
|
private bool isDisposed;
|
2018-05-28 18:56:27 +08:00
|
|
|
|
public List<Exception> Errors = new List<Exception>();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether this write usage will commit a transaction on completion.
|
|
|
|
|
/// If false, there is a parent usage responsible for transaction commit.
|
|
|
|
|
/// </summary>
|
2020-11-02 01:47:40 +08:00
|
|
|
|
public bool IsTransactionLeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
protected void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (isDisposed) return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
isDisposed = true;
|
|
|
|
|
|
2018-05-28 17:38:42 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2018-05-28 18:56:27 +08:00
|
|
|
|
PerformedWrite |= Context.SaveChanges() > 0;
|
2018-05-28 17:38:42 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2018-05-28 18:56:27 +08:00
|
|
|
|
Errors.Add(e);
|
2018-05-29 13:25:27 +08:00
|
|
|
|
throw;
|
2018-05-28 17:38:42 +08:00
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
usageCompleted?.Invoke(this);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|