// Copyright (C) 2026, 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.Interface;
namespace Duplicati.Library.Main.Backend;
#nullable enable
partial class BackendManager
{
///
/// Represents a pending get object lock operation
///
private class GetObjectLockOperation : PendingOperation
{
///
/// The log tag for this class
///
private static readonly string LOGTAG = Logging.Log.LogTagFromType();
///
/// The remote filename to check for lock
///
public override string RemoteFilename { get; }
///
/// The operation type
///
public override BackendActionType Operation => BackendActionType.GetObjectLock;
///
/// Creates a new GetObjectLockOperation
///
/// The remote file name to check
/// The execution context
/// The cancellation token
public GetObjectLockOperation(string remoteName, ExecuteContext context, CancellationToken cancelToken)
: base(context, true, cancelToken)
{
RemoteFilename = remoteName;
}
///
public override async Task ExecuteAsync(IBackend backend, CancellationToken cancelToken)
{
if (backend is not ILockingBackend lockingBackend)
throw new NotSupportedException("Backend does not support object locking operations");
Context.Statwriter.SendEvent(BackendActionType.GetObjectLock, BackendEventType.Started, RemoteFilename, 0);
try
{
return await lockingBackend.GetObjectLockUntilAsync(RemoteFilename, cancelToken).ConfigureAwait(false);
}
catch (Exception ex)
{
Logging.Log.WriteWarningMessage(LOGTAG, "GetObjectLockFailed", ex, "Failed to get object lock for {0}: {1}", RemoteFilename, ex.Message);
throw;
}
finally
{
Context.Statwriter.SendEvent(BackendActionType.GetObjectLock, BackendEventType.Completed, RemoteFilename, 0);
}
}
}
}