2025-01-28 08:54:50 +01:00
// 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
2024-02-28 15:45:30 +01:00
// DEALINGS IN THE SOFTWARE.
2020-02-23 13:21:17 -06:00
using Duplicati.Library.Main.Operation.Common ;
2016-02-22 22:40:27 +01:00
using Duplicati.Library.Main.Volumes ;
2020-02-23 13:21:17 -06:00
using System ;
2016-02-22 22:40:27 +01:00
using System.Linq ;
2020-02-23 13:21:17 -06:00
using System.Threading.Tasks ;
2016-02-22 22:40:27 +01:00
namespace Duplicati.Library.Main.Operation.Backup
{
2016-02-25 19:15:51 +01:00
/// <summary>
/// This class encapsulates generation of synthetic file list
/// </summary>
2016-02-22 22:40:27 +01:00
internal static class UploadSyntheticFilelist
{
2018-04-11 23:02:47 +02:00
/// <summary>
/// The tag used for log messages
/// </summary>
private static readonly string LOGTAG = Logging . Log . LogTagFromType ( typeof ( UploadSyntheticFilelist ));
2025-01-28 08:54:50 +01:00
public static async Task Run ( BackupDatabase database , Options options , BackupResults result , ITaskReader taskreader , IBackendManager backendManager , string lastTempFilelist , long lastTempFilesetId )
2016-02-22 22:40:27 +01:00
{
2025-01-28 08:54:50 +01:00
// Check if we should upload a synthetic filelist
if ( options . DisableSyntheticFilelist || string . IsNullOrWhiteSpace ( lastTempFilelist ) || lastTempFilesetId <= 0 )
return ;
2016-02-24 23:48:42 +01:00
2025-01-28 08:54:50 +01:00
// Check that we still need to process this after the cleanup has performed its duties
var syntbase = await database . GetRemoteVolumeFromFilesetIDAsync ( lastTempFilesetId );
2017-05-30 00:35:31 +02:00
2025-01-28 08:54:50 +01:00
// If we do not have a valid entry, warn and quit
if ( syntbase . Name == null )
{
// TODO: If the repair succeeds, this could give a false warning?
Logging . Log . WriteWarningMessage ( LOGTAG , "MissingTemporaryFilelist" , null , "Expected there to be a temporary fileset for synthetic filelist ({0}, {1}), but none was found?" , lastTempFilesetId , lastTempFilelist );
return ;
}
2017-05-30 00:35:31 +02:00
2025-01-28 08:54:50 +01:00
// Files is missing or repaired
if ( syntbase . State != RemoteVolumeState . Uploading && syntbase . State != RemoteVolumeState . Temporary )
{
Logging . Log . WriteInformationMessage ( LOGTAG , "SkippingSyntheticListUpload" , "Skipping synthetic upload because temporary fileset appers to be complete: ({0}, {1}, {2})" , lastTempFilesetId , lastTempFilelist , syntbase . State );
return ;
}
2016-02-22 22:40:27 +01:00
2025-01-28 08:54:50 +01:00
// Ready to build and upload the synthetic list
await database . CommitTransactionAsync ( "PreSyntheticFilelist" );
var incompleteFilesets = ( await database . GetIncompleteFilesetsAsync ()). OrderBy ( x => x . Value ). ToList ();
2017-05-30 00:35:31 +02:00
2025-01-28 08:54:50 +01:00
if (! incompleteFilesets . Any ())
{
return ;
}
2017-05-30 00:35:31 +02:00
2025-01-28 08:54:50 +01:00
if (! await taskreader . ProgressRendevouz (). ConfigureAwait ( false ))
return ;
2016-02-24 23:48:42 +01:00
2025-01-28 08:54:50 +01:00
result . OperationProgressUpdater . UpdatePhase ( OperationPhase . Backup_PreviousBackupFinalize );
Logging . Log . WriteInformationMessage ( LOGTAG , "PreviousBackupFilelistUpload" , "Uploading filelist from previous interrupted backup" );
2016-02-27 02:15:42 +01:00
2025-01-28 08:54:50 +01:00
var incompleteSet = incompleteFilesets . Last ();
var badIds = from n in incompleteFilesets select n . Key ;
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
var prevs = ( from n in await database . GetFilesetTimesAsync ()
where
n . Key < incompleteSet . Key
&&
! badIds . Contains ( n . Key )
orderby n . Key
select n . Key ). ToArray ();
2016-02-24 23:48:42 +01:00
2025-01-28 08:54:50 +01:00
var prevId = prevs . Length == 0 ? - 1 : prevs . Last ();
2016-02-24 23:48:42 +01:00
2025-01-28 08:54:50 +01:00
FilesetVolumeWriter fsw = null ;
try
{
var s = 1 ;
var fileTime = incompleteSet . Value + TimeSpan . FromSeconds ( s );
2016-02-22 22:40:27 +01:00
2025-01-28 08:54:50 +01:00
// Probe for an unused filename
while ( s < 60 )
2020-02-23 13:21:17 -06:00
{
2025-01-28 08:54:50 +01:00
var id = await database . GetRemoteVolumeIDAsync ( VolumeBase . GenerateFilename ( RemoteVolumeType . Files , options , null , fileTime ));
if ( id < 0 )
break ;
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
fileTime = incompleteSet . Value + TimeSpan . FromSeconds (++ s );
}
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
fsw = new FilesetVolumeWriter ( options , fileTime );
fsw . VolumeID = await database . RegisterRemoteVolumeAsync ( fsw . RemoteFilename , RemoteVolumeType . Files , RemoteVolumeState . Temporary );
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
if (! string . IsNullOrEmpty ( options . ControlFiles ))
foreach ( var p in options . ControlFiles . Split ( new char [] { System . IO . Path . PathSeparator }, StringSplitOptions . RemoveEmptyEntries ))
fsw . AddControlFile ( p , options . GetCompressionHintFromFilename ( p ));
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
// We declare this to be a partial backup since the synthetic filelist is only created
// when a backup is interrupted.
fsw . CreateFilesetFile ( false );
var newFilesetID = await database . CreateFilesetAsync ( fsw . VolumeID , fileTime );
await database . LinkFilesetToVolumeAsync ( newFilesetID , fsw . VolumeID );
await database . AppendFilesFromPreviousSetAsync ( null , newFilesetID , prevId , fileTime );
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
await database . WriteFilesetAsync ( fsw , newFilesetID );
fsw . Close ();
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
if (! await taskreader . ProgressRendevouz (). ConfigureAwait ( false ))
return ;
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
await database . UpdateRemoteVolumeAsync ( fsw . RemoteFilename , RemoteVolumeState . Uploading , - 1 , null );
await database . CommitTransactionAsync ( "CommitUpdateFilelistVolume" );
2020-02-23 13:21:17 -06:00
2025-01-28 08:54:50 +01:00
await backendManager . PutAsync ( fsw , null , null , false , taskreader . ProgressToken );
}
catch
{
await database . RollbackTransactionAsync ();
fsw ?. Dispose ();
throw ;
2020-02-23 13:21:17 -06:00
}
2016-02-22 22:40:27 +01:00
}
}
}