// Copyright (C) 2025, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using System; using System.Threading; using System.Threading.Tasks; using Duplicati.Library.Utility; using Microsoft.Data.Sqlite; #nullable enable namespace Duplicati.Library.Main.Database; /// /// Wraps a transaction so it can be comitted and restarted. /// /// /// Creates a new reusable transaction. /// /// The database to use. /// The transaction to use. If null, a new transaction is created. internal class ReusableTransaction(SqliteConnection con, SqliteTransaction? transaction = null) : IDisposable, IAsyncDisposable { /// /// The tag used for logging. /// private static readonly string LOGTAG = Logging.Log.LogTagFromType(typeof(ReusableTransaction)); /// /// The database to use. /// private readonly SqliteConnection m_con = con; /// /// The current transaction. /// private SqliteTransaction m_transaction = transaction ?? con.BeginTransaction(deferred: true); /// /// True if the transaction is disposed. /// private bool m_disposed = false; /// /// Creates a new reusable transaction. /// /// The database this transaction relates to. /// An optional existing transaction to use. If null, a new transaction is created. public ReusableTransaction(LocalDatabase db, SqliteTransaction? transaction = null) : this(db.Connection, transaction) { } /// /// The current transaction. /// public SqliteTransaction Transaction => m_disposed ? throw new InvalidOperationException("Transaction is disposed") : m_transaction; /// /// Commits the transaction and restarts it. /// /// A cancellation token to cancel the operation. /// A task that completes when the commit is done and a new transaction has been started. public async Task CommitAsync(CancellationToken token) { await CommitAsync(null, true, token).ConfigureAwait(false); } /// /// Async version of Commit: /// /// The log message to use. /// True if the transaction should be restarted. /// A task that completes when the commit is done and (potentially) a new transaction has been started. /// If the transaction is already Disposed. public async Task CommitAsync(string? message = null, bool restart = true, CancellationToken token = default) { if (m_disposed) throw new InvalidOperationException("Transaction is already disposed"); message ??= "Unnamed commit"; using (var timer = new Logging.Timer(LOGTAG, message, $"CommitTransaction: {message}")) await m_transaction.CommitAsync().ConfigureAwait(false); await m_transaction.DisposeAsync().ConfigureAwait(false); if (restart) m_transaction = m_con.BeginTransaction(deferred: true); else m_disposed = true; } /// public void Dispose() { DisposeAsync().AsTask().Await(); } /// public async ValueTask DisposeAsync() { if (!m_disposed) { try { using (var timer = new Logging.Timer(LOGTAG, "Dispose", "Rollback during transaction dispose")) await m_transaction.RollbackAsync().ConfigureAwait(false); } catch (Exception ex) { Logging.Log.WriteErrorMessage(LOGTAG, "ReusableTransaction dispose", ex, "Transaction disposed with error: {0}", ex.Message); throw; } finally { m_disposed = true; await m_transaction.DisposeAsync().ConfigureAwait(false); } } } /// /// Rolls back the transaction and restarts it. /// /// A cancellation token to cancel the operation. /// A task that completes when the rollback is done and a new transaction has been started. public async Task RollBackAsync(CancellationToken token) { await RollBackAsync(null, true, token).ConfigureAwait(false); } /// /// Rolls back the transaction and optionally restarts it. /// /// Message to log. /// Whether to restart the transaction after rolling back. /// A cancellation token to cancel the operation. /// A task that completes when the rollback is done and (potentially) a new transaction has been started. /// If the transaction has already been disposed. public async Task RollBackAsync(string? message = null, bool restart = true, CancellationToken token = default) { if (m_disposed) throw new InvalidOperationException("Transaction is already disposed"); using (var timer = new Logging.Timer(LOGTAG, message, $"RollbackTransaction: {message}")) await m_transaction.RollbackAsync().ConfigureAwait(false); await m_transaction.DisposeAsync().ConfigureAwait(false); if (restart) { m_transaction = m_con.BeginTransaction(); } else { m_disposed = true; } } }