mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 03:20:25 +08:00
191 lines
No EOL
8.5 KiB
C#
191 lines
No EOL
8.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Duplicati.Library.Logging;
|
|
using Duplicati.Library.Main.Database;
|
|
|
|
namespace Duplicati.Library.Main.Backend;
|
|
|
|
#nullable enable
|
|
|
|
partial class BackendManager
|
|
{
|
|
/// <summary>
|
|
/// A class to collect operations performed on the remote destination.
|
|
/// This class is used to log operations so they can later be written to the database.
|
|
/// The goal is to keep the database state as close as possible to the remote operation state.
|
|
/// Since the backend communication is done in parallel with the actual operations,
|
|
/// we store the performed operations in a queue and flush them to the database when the database is available.
|
|
/// The main operations are responsible for flushing the messages when comitting a transaction.
|
|
/// If the operation fails, the logged messages here should still be flushed to the database,
|
|
/// as they have already been performed on the remote destination.
|
|
/// </summary>
|
|
private class DatabaseCollector
|
|
{
|
|
/// <summary>
|
|
/// The log tag for this class
|
|
/// </summary>
|
|
private static readonly string LOGTAG = Log.LogTagFromType<DatabaseCollector>();
|
|
/// <summary>
|
|
/// The lock object for the database queue
|
|
/// </summary>
|
|
private readonly object m_dbqueuelock = new object();
|
|
/// <summary>
|
|
/// The queue of database operations
|
|
/// </summary>
|
|
private List<IRemoteOperationEntry> m_dbqueue = [];
|
|
|
|
/// <summary>
|
|
/// Interface for database entries
|
|
/// </summary>
|
|
private interface IRemoteOperationEntry { }
|
|
|
|
/// <summary>
|
|
/// Logs an operation performed on the remote destination
|
|
/// </summary>
|
|
/// <param name="Action">The performed action</param>
|
|
/// <param name="File">The file the operation is performed on</param>
|
|
/// <param name="Result">The result of the operation</param>
|
|
private sealed record RemoteOperationLogEntry(string Action, string File, string? Result) : IRemoteOperationEntry;
|
|
|
|
|
|
/// <summary>
|
|
/// Logs a database update after a remote file operation
|
|
/// </summary>
|
|
/// <param name="Remotename">The remote name of the volume</param>
|
|
/// <param name="State">The new state of the volume</param>
|
|
/// <param name="Size">The new size of the volume</param>
|
|
/// <param name="Hash">The new hash of the volume</param>
|
|
private sealed record RemoteVolumeUpdate(string Remotename, RemoteVolumeState State, long Size, string? Hash) : IRemoteOperationEntry;
|
|
|
|
/// <summary>
|
|
/// Logs a rename of a remote file
|
|
/// </summary>
|
|
/// <param name="Oldname">The old name of the file</param>
|
|
/// <param name="Newname">The new name of the file</param>
|
|
private sealed record RenameRemoteVolume(string Oldname, string Newname) : IRemoteOperationEntry;
|
|
|
|
/// <summary>
|
|
/// Logs an operation performed on the remote destination
|
|
/// </summary>
|
|
/// <param name="action">The action of the operation</param>
|
|
/// <param name="file">The file of the operation</param>
|
|
/// <param name="result">The result of the operation</param>
|
|
public void LogRemoteOperation(string action, string file, string? result)
|
|
{
|
|
lock (m_dbqueuelock)
|
|
m_dbqueue.Add(new RemoteOperationLogEntry(action, file, result));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Logs a database update after a remote file operation
|
|
/// </summary>
|
|
/// <param name="remotename">The remote name of the volume</param>
|
|
/// <param name="state">The new state of the volume</param>
|
|
/// <param name="size">The new size of the volume</param>
|
|
/// <param name="hash">The new hash of the volume</param>
|
|
public void LogRemoteVolumeUpdated(string remotename, RemoteVolumeState state, long size, string? hash)
|
|
{
|
|
lock (m_dbqueuelock)
|
|
m_dbqueue.Add(new RemoteVolumeUpdate(remotename, state, size, hash));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Logs a remote file rename
|
|
/// </summary>
|
|
/// <param name="oldname">The old name of the file</param>
|
|
/// <param name="newname">The new name of the file</param>
|
|
public void LogRemoteVolumeRenamed(string oldname, string newname)
|
|
{
|
|
lock (m_dbqueuelock)
|
|
m_dbqueue.Add(new RenameRemoteVolume(oldname, newname));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drops all pending messages from the queue
|
|
/// </summary>
|
|
public void ClearPendingMessages()
|
|
{
|
|
lock (m_dbqueuelock)
|
|
m_dbqueue = [];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Flushes all messages to the database.
|
|
/// </summary>
|
|
/// <param name="db">The database to write pending messages to.</param>
|
|
/// <param name="cancellationToken">A cancellation token to cancel the operation.</param>
|
|
/// <returns>A task that when awaited contains whether any messages were flushed.</returns>
|
|
public async Task<bool> FlushPendingMessages(LocalDatabase db, CancellationToken cancellationToken)
|
|
{
|
|
List<IRemoteOperationEntry> entries;
|
|
lock (m_dbqueuelock)
|
|
if (m_dbqueue.Count == 0)
|
|
return false;
|
|
else
|
|
{
|
|
entries = m_dbqueue;
|
|
m_dbqueue = [];
|
|
}
|
|
|
|
// Collect removed volumes for final db cleanup.
|
|
var volsRemoved = new HashSet<string>();
|
|
|
|
// As we replace the list, we can now freely access the elements without locking
|
|
foreach (var e in entries)
|
|
if (e is RemoteOperationLogEntry operation)
|
|
await db.LogRemoteOperation(operation.Action, operation.File, operation.Result, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
else if (e is RemoteVolumeUpdate update && update.State == RemoteVolumeState.Deleted)
|
|
{
|
|
await db.UpdateRemoteVolume(update.Remotename, RemoteVolumeState.Deleted, update.Size, update.Hash, true, TimeSpan.FromHours(2), null, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
volsRemoved.Add(update.Remotename);
|
|
}
|
|
else if (e is RemoteVolumeUpdate dbUpdate)
|
|
await db.UpdateRemoteVolume(dbUpdate.Remotename, dbUpdate.State, dbUpdate.Size, dbUpdate.Hash, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
else if (e is RenameRemoteVolume rename)
|
|
await db.RenameRemoteFile(rename.Oldname, rename.Newname, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
else if (e != null)
|
|
Log.WriteErrorMessage(LOGTAG, "InvalidQueueElement", null, "Queue had element of type: {0}, {1}", e.GetType(), e);
|
|
|
|
// Finally remove volumes from DB.
|
|
if (volsRemoved.Count > 0)
|
|
{
|
|
await db.RemoveRemoteVolumes(volsRemoved, cancellationToken).ConfigureAwait(false);
|
|
// This commit is to mimic the pre Microsoft.Data.Sqlite backend
|
|
// behavior, in which RemoveRemoteVolumes started a new
|
|
// transaction, if none was passed down.
|
|
await db.Transaction.CommitAsync(token: cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Flushes all messages to the log after stopping the processing
|
|
/// </summary>
|
|
public void FlushMessagesToLog()
|
|
{
|
|
if (m_dbqueue.Count == 0)
|
|
return;
|
|
|
|
string message;
|
|
lock (m_dbqueuelock)
|
|
message = string.Join("\n", m_dbqueue.Select(e => e switch
|
|
{
|
|
RemoteOperationLogEntry operation => $"Operation: {operation.Action} File: {operation.File} Result: {operation.Result}",
|
|
RemoteVolumeUpdate update => $"Update: {update.Remotename} State: {update.State} Size: {update.Size} Hash: {update.Hash}",
|
|
RenameRemoteVolume rename => $"Rename: {rename.Oldname} -> {rename.Newname}",
|
|
_ => $"InvalidQueueElement: {e.GetType()} {e}"
|
|
}));
|
|
|
|
Log.WriteWarningMessage(LOGTAG, "FlushingMessagesToLog", null, message);
|
|
|
|
}
|
|
}
|
|
} |