2021-08-27 15:03:47 +00:00
|
|
|
using System;
|
2020-06-13 16:49:05 +00:00
|
|
|
using System.Data;
|
|
|
|
using System.Data.Common;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
using Npgsql;
|
|
|
|
|
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
2020-06-13 17:36:43 +00:00
|
|
|
internal class PKTransaction: DbTransaction, IPKTransaction
|
2020-06-13 16:49:05 +00:00
|
|
|
{
|
|
|
|
public NpgsqlTransaction Inner { get; }
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-06-13 16:49:05 +00:00
|
|
|
public PKTransaction(NpgsqlTransaction inner)
|
|
|
|
{
|
|
|
|
Inner = inner;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Commit() => throw SyncError(nameof(Commit));
|
|
|
|
public override Task CommitAsync(CancellationToken ct = default) => Inner.CommitAsync(ct);
|
|
|
|
|
|
|
|
public override void Rollback() => throw SyncError(nameof(Rollback));
|
|
|
|
public override Task RollbackAsync(CancellationToken ct = default) => Inner.RollbackAsync(ct);
|
|
|
|
|
|
|
|
protected override DbConnection DbConnection => Inner.Connection;
|
|
|
|
public override IsolationLevel IsolationLevel => Inner.IsolationLevel;
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-06-13 16:49:05 +00:00
|
|
|
private static Exception SyncError(string caller) => throw new Exception($"Executed synchronous IDbTransaction function {caller}!");
|
|
|
|
}
|
|
|
|
}
|