mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 03:20:25 +08:00
This PR adds the ability to subscribe to messages over a websocket. To prevent polling data, the server can now push messages through the websocket, so the client can instantly update when new data is available. The change is backwards compatible, still serving the status updates over the socket. If the client is providing the authentication token, it is auto-subscried to the legacy status message. If the client is using the new authentication message, it needs to subscribe to get the status updates (and any other services it needs). The event system has been extended to support new, and more accurate, events. This is the first step towards removing the general status update and the long-poll mechanism. This also re-introduces the blocking marker, so the client can know if the operation is halted due to too many pending transfers. Some endpoints have been moved to service implementations, to allow serving the exact same data from both endpoints and websocket. This PR also updates the way the progress is handled, so that all transfers are returned to the client, and the transfer speeds for each transfer is calculated based on a small sample buffer, so the values are more accurate even if the program is paused during transfers.
100 lines
3.1 KiB
C#
100 lines
3.1 KiB
C#
// 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;
|
|
|
|
namespace Duplicati.Library.Main.Operation.Backup
|
|
{
|
|
/// <summary>
|
|
/// Asynchronous interface that ensures all stat requests
|
|
/// are performed in a sequential manner
|
|
/// </summary>
|
|
internal class BackupStatsCollector
|
|
{
|
|
private readonly BackupResults m_res;
|
|
private readonly SemaphoreSlim semaphoreSlim = new SemaphoreSlim(1, 1);
|
|
|
|
public BackupStatsCollector(BackupResults res)
|
|
{
|
|
m_res = res;
|
|
}
|
|
|
|
private async Task WithLock(Action action)
|
|
{
|
|
await semaphoreSlim.WaitAsync();
|
|
try
|
|
{
|
|
action();
|
|
}
|
|
finally
|
|
{
|
|
semaphoreSlim.Release();
|
|
}
|
|
}
|
|
|
|
public Task AddOpenedFile(long size)
|
|
{
|
|
return WithLock(() =>
|
|
{
|
|
m_res.SizeOfOpenedFiles += size;
|
|
m_res.OpenedFiles++;
|
|
});
|
|
}
|
|
|
|
public Task AddTimestampChangedFile()
|
|
{
|
|
return WithLock(() =>
|
|
{
|
|
m_res.TimestampChangedFiles++;
|
|
});
|
|
}
|
|
|
|
public Task AddAddedFile(long size)
|
|
{
|
|
return WithLock(() =>
|
|
{
|
|
m_res.SizeOfAddedFiles += size;
|
|
m_res.AddedFiles++;
|
|
});
|
|
}
|
|
|
|
public Task AddModifiedFile(long size)
|
|
{
|
|
return WithLock(() =>
|
|
{
|
|
m_res.SizeOfModifiedFiles += size;
|
|
m_res.ModifiedFiles++;
|
|
});
|
|
}
|
|
|
|
public Task AddExaminedFile(long size)
|
|
{
|
|
return WithLock(() =>
|
|
{
|
|
m_res.SizeOfExaminedFiles += size;
|
|
m_res.ExaminedFiles++;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|