2024-02-28 15:45:30 +01:00
// Copyright (C) 2024, 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.
2013-03-27 16:06:45 +01:00
2013-05-08 20:17:07 +02:00
using Duplicati.Library.Main.Database ;
using Duplicati.Library.Main.Volumes ;
2020-01-19 21:57:08 -06:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
2013-03-27 16:06:45 +01:00
2013-05-08 20:17:07 +02:00
namespace Duplicati.Library.Main.Operation
2013-03-27 16:06:45 +01:00
{
2016-09-15 11:39:27 +02:00
internal class CompactHandler
{
2018-03-12 14:07:11 +01:00
/// <summary>
/// The tag used for logging
/// </summary>
private static readonly string LOGTAG = Logging . Log . LogTagFromType < CompactHandler >();
2019-10-19 10:56:21 -07:00
protected readonly string m_backendurl ;
protected readonly Options m_options ;
protected readonly CompactResults m_result ;
2013-03-27 16:06:45 +01:00
2016-09-15 11:39:27 +02:00
public CompactHandler ( string backend , Options options , CompactResults result )
{
2013-03-27 16:06:45 +01:00
m_backendurl = backend ;
m_options = options ;
2013-05-25 16:40:15 +02:00
m_result = result ;
2016-09-15 11:39:27 +02:00
}
public virtual void Run ()
2013-06-09 16:26:08 +02:00
{
if (! System . IO . File . Exists ( m_options . Dbpath ))
throw new Exception ( string . Format ( "Database file does not exist: {0}" , m_options . Dbpath ));
2016-09-15 11:39:27 +02:00
2016-12-29 22:41:13 +01:00
using ( var db = new LocalDeleteDatabase ( m_options . Dbpath , "Compact" ))
2013-06-09 16:26:08 +02:00
{
2015-11-17 12:37:33 +01:00
var tr = db . BeginTransaction ();
try
2013-06-09 16:26:08 +02:00
{
2015-11-17 12:37:33 +01:00
m_result . SetDatabase ( db );
Utility . UpdateOptionsFromDb ( db , m_options );
Utility . VerifyParameters ( db , m_options );
2016-09-15 11:39:27 +02:00
2017-09-18 11:54:48 +02:00
var changed = DoCompact ( db , false , ref tr , null );
2015-11-17 12:37:33 +01:00
if ( changed && m_options . UploadVerificationFile )
FilelistProcessor . UploadVerificationFile ( m_backendurl , m_options , m_result . BackendWriter , db , null );
if (! m_options . Dryrun )
2014-07-16 00:57:57 +02:00
{
2018-03-12 14:07:11 +01:00
using ( new Logging . Timer ( LOGTAG , "CommitCompact" , "CommitCompact" ))
2015-11-17 12:37:33 +01:00
tr . Commit ();
if ( changed )
{
2017-08-04 12:09:01 +01:00
db . WriteResults ();
if ( m_options . AutoVacuum )
{
2019-07-29 17:56:43 -07:00
m_result . VacuumResults = new VacuumResults ( m_result );
new VacuumHandler ( m_options , ( VacuumResults ) m_result . VacuumResults ). Run ();
2017-08-04 12:09:01 +01:00
}
2015-11-17 12:37:33 +01:00
}
2014-07-16 00:57:57 +02:00
}
2016-09-15 11:39:27 +02:00
else
tr . Rollback ();
2015-11-17 12:37:33 +01:00
tr = null ;
}
finally
{
if ( tr != null )
try { tr . Rollback (); }
catch { }
2013-06-09 16:26:08 +02:00
}
2013-08-23 22:15:07 +02:00
}
2016-09-15 11:39:27 +02:00
}
2017-09-18 11:54:48 +02:00
internal bool DoCompact ( LocalDeleteDatabase db , bool hasVerifiedBackend , ref System . Data . IDbTransaction transaction , BackendManager sharedBackend )
2014-05-15 12:47:16 +02:00
{
var report = db . GetCompactReport ( m_options . VolumeSize , m_options . Threshold , m_options . SmallFileSize , m_options . SmallFileMaxCount , transaction );
2018-03-12 14:07:11 +01:00
report . ReportCompactData ();
2016-09-15 11:39:27 +02:00
2014-05-15 12:47:16 +02:00
if ( report . ShouldReclaim || report . ShouldCompact )
2019-02-16 20:43:05 -08:00
{
// Workaround where we allow a running backendmanager to be used
2017-09-18 11:54:48 +02:00
using ( var bk = sharedBackend == null ? new BackendManager ( m_backendurl , m_options , m_result . BackendWriter , db ) : null )
2014-05-15 12:47:16 +02:00
{
2017-09-18 11:54:48 +02:00
var backend = bk ?? sharedBackend ;
2020-04-05 11:41:48 -07:00
if (! hasVerifiedBackend )
2020-02-29 16:33:32 -06:00
{
2020-04-05 11:41:48 -07:00
FilelistProcessor . VerifyRemoteList ( backend , m_options , db , m_result . BackendWriter , true , transaction );
2020-02-29 16:33:32 -06:00
}
2020-01-19 21:57:08 -06:00
2014-05-15 12:47:16 +02:00
BlockVolumeWriter newvol = new BlockVolumeWriter ( m_options );
newvol . VolumeID = db . RegisterRemoteVolume ( newvol . RemoteFilename , RemoteVolumeType . Blocks , RemoteVolumeState . Temporary , transaction );
2016-09-15 11:39:27 +02:00
2014-05-15 12:47:16 +02:00
IndexVolumeWriter newvolindex = null ;
if ( m_options . IndexfilePolicy != Options . IndexFileStrategy . None )
{
newvolindex = new IndexVolumeWriter ( m_options );
newvolindex . VolumeID = db . RegisterRemoteVolume ( newvolindex . RemoteFilename , RemoteVolumeType . Index , RemoteVolumeState . Temporary , transaction );
2013-08-27 10:23:21 +02:00
db . AddIndexBlockLink ( newvolindex . VolumeID , newvol . VolumeID , transaction );
2014-05-15 12:47:16 +02:00
}
2019-02-16 14:15:19 -08:00
2014-05-15 12:47:16 +02:00
long blocksInVolume = 0 ;
byte [] buffer = new byte [ m_options . Blocksize ];
2015-09-16 21:25:32 +02:00
var remoteList = db . GetRemoteVolumes (). Where ( n => n . State == RemoteVolumeState . Uploaded || n . State == RemoteVolumeState . Verified ). ToArray ();
2019-02-16 14:15:19 -08:00
2014-05-15 12:47:16 +02:00
//These are for bookkeeping
var uploadedVolumes = new List < KeyValuePair < string , long >>();
var deletedVolumes = new List < KeyValuePair < string , long >>();
var downloadedVolumes = new List < KeyValuePair < string , long >>();
2019-02-16 14:15:19 -08:00
2014-05-15 12:47:16 +02:00
//We start by deleting unused volumes to save space before uploading new stuff
var fullyDeleteable = ( from v in remoteList
where report . DeleteableVolumes . Contains ( v . Name )
2015-11-17 12:37:33 +01:00
select ( IRemoteVolume ) v ). ToList ();
deletedVolumes . AddRange ( DoDelete ( db , backend , fullyDeleteable , ref transaction ));
2013-04-08 22:24:54 +02:00
2014-05-15 12:47:16 +02:00
// This list is used to pick up unused volumes,
// so they can be deleted once the upload of the
// required fragments is complete
var deleteableVolumes = new List < IRemoteVolume >();
2013-04-08 22:24:54 +02:00
2014-05-15 12:47:16 +02:00
if ( report . ShouldCompact )
{
2019-02-16 20:43:05 -08:00
newvolindex ?. StartVolume ( newvol . RemoteFilename );
2014-05-15 12:47:16 +02:00
var volumesToDownload = ( from v in remoteList
where report . CompactableVolumes . Contains ( v . Name )
select ( IRemoteVolume ) v ). ToList ();
2019-02-16 14:15:19 -08:00
2020-01-19 21:57:08 -06:00
using ( var q = db . CreateBlockQueryHelper ( transaction ))
2014-05-15 12:47:16 +02:00
{
2018-05-12 17:24:33 -07:00
foreach ( var entry in new AsyncDownloader ( volumesToDownload , backend ))
2014-05-15 12:47:16 +02:00
{
2018-05-12 17:24:33 -07:00
using ( var tmpfile = entry . TempFile )
2014-05-15 12:47:16 +02:00
{
2018-05-12 17:24:33 -07:00
if ( m_result . TaskControlRendevouz () == TaskControlState . Stop )
{
backend . WaitForComplete ( db , transaction );
return false ;
}
downloadedVolumes . Add ( new KeyValuePair < string , long >( entry . Name , entry . Size ));
var inst = VolumeBase . ParseFilename ( entry . Name );
using ( var f = new BlockVolumeReader ( inst . CompressionModule , tmpfile , m_options ))
2016-09-15 11:39:27 +02:00
{
2018-05-12 17:24:33 -07:00
foreach ( var e in f . Blocks )
2016-09-15 11:39:27 +02:00
{
2018-05-12 17:24:33 -07:00
if ( q . UseBlock ( e . Key , e . Value , transaction ))
2016-09-15 11:39:27 +02:00
{
2018-05-12 17:24:33 -07:00
//TODO: How do we get the compression hint? Reverse query for filename in db?
var s = f . ReadBlock ( e . Key , buffer );
if ( s != e . Value )
throw new Exception ( string . Format ( "Size mismatch problem for block {0}, {1} vs {2}" , e . Key , s , e . Value ));
newvol . AddBlock ( e . Key , buffer , 0 , s , Duplicati . Library . Interface . CompressionHint . Compressible );
2016-09-15 11:39:27 +02:00
if ( newvolindex != null )
2018-05-12 17:24:33 -07:00
newvolindex . AddBlock ( e . Key , e . Value );
db . MoveBlockToNewVolume ( e . Key , e . Value , newvol . VolumeID , transaction );
blocksInVolume ++;
if ( newvol . Filesize > m_options . VolumeSize )
2016-09-15 11:39:27 +02:00
{
2020-01-19 21:57:08 -06:00
FinishVolumeAndUpload ( db , backend , newvol , newvolindex , uploadedVolumes );
2018-05-12 17:24:33 -07:00
newvol = new BlockVolumeWriter ( m_options );
newvol . VolumeID = db . RegisterRemoteVolume ( newvol . RemoteFilename , RemoteVolumeType . Blocks , RemoteVolumeState . Temporary , transaction );
if ( m_options . IndexfilePolicy != Options . IndexFileStrategy . None )
{
newvolindex = new IndexVolumeWriter ( m_options );
newvolindex . VolumeID = db . RegisterRemoteVolume ( newvolindex . RemoteFilename , RemoteVolumeType . Index , RemoteVolumeState . Temporary , transaction );
db . AddIndexBlockLink ( newvolindex . VolumeID , newvol . VolumeID , transaction );
newvolindex . StartVolume ( newvol . RemoteFilename );
}
blocksInVolume = 0 ;
//After we upload this volume, we can delete all previous encountered volumes
deletedVolumes . AddRange ( DoDelete ( db , backend , deleteableVolumes , ref transaction ));
deleteableVolumes = new List < IRemoteVolume >();
2016-09-15 11:39:27 +02:00
}
}
}
}
2018-05-12 17:24:33 -07:00
deleteableVolumes . Add ( entry );
2016-09-15 11:39:27 +02:00
}
}
if ( blocksInVolume > 0 )
{
2020-01-19 21:57:08 -06:00
FinishVolumeAndUpload ( db , backend , newvol , newvolindex , uploadedVolumes );
2016-09-15 11:39:27 +02:00
}
else
{
db . RemoveRemoteVolume ( newvol . RemoteFilename , transaction );
if ( newvolindex != null )
{
db . RemoveRemoteVolume ( newvolindex . RemoteFilename , transaction );
newvolindex . FinishVolume ( null , 0 );
}
}
}
}
2019-02-16 14:15:19 -08:00
else
{
2019-02-16 20:43:05 -08:00
newvolindex ?. Dispose ();
2019-02-16 14:15:19 -08:00
newvol . Dispose ();
}
2016-09-15 11:39:27 +02:00
deletedVolumes . AddRange ( DoDelete ( db , backend , deleteableVolumes , ref transaction ));
2015-09-16 21:25:32 +02:00
var downloadSize = downloadedVolumes . Where ( x => x . Value >= 0 ). Aggregate ( 0L , ( a , x ) => a + x . Value );
var deletedSize = deletedVolumes . Where ( x => x . Value >= 0 ). Aggregate ( 0L , ( a , x ) => a + x . Value );
var uploadSize = uploadedVolumes . Where ( x => x . Value >= 0 ). Aggregate ( 0L , ( a , x ) => a + x . Value );
2019-02-16 14:15:19 -08:00
2013-05-25 16:40:15 +02:00
m_result . DeletedFileCount = deletedVolumes . Count ;
m_result . DownloadedFileCount = downloadedVolumes . Count ;
m_result . UploadedFileCount = uploadedVolumes . Count ;
m_result . DeletedFileSize = deletedSize ;
m_result . DownloadedFileSize = downloadSize ;
m_result . UploadedFileSize = uploadSize ;
2013-05-25 16:56:53 +02:00
m_result . Dryrun = m_options . Dryrun ;
2013-05-25 16:40:15 +02:00
2016-09-15 11:39:27 +02:00
if ( m_result . Dryrun )
{
2013-08-24 22:31:16 +02:00
if ( downloadedVolumes . Count == 0 )
2018-03-12 14:07:11 +01:00
Logging . Log . WriteDryrunMessage ( LOGTAG , "CompactResults" , "Would delete {0} files, which would reduce storage by {1}" , m_result . DeletedFileCount , Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize ));
2013-08-24 22:31:16 +02:00
else
2018-03-12 14:07:11 +01:00
Logging . Log . WriteDryrunMessage ( LOGTAG , "CompactResults" , "Would download {0} file(s) with a total size of {1}, delete {2} file(s) with a total size of {3}, and compact to {4} file(s) with a size of {5}, which would reduce storage by {6} file(s) and {7}" ,
2017-09-18 13:27:30 +02:00
m_result . DownloadedFileCount ,
Library . Utility . Utility . FormatSizeString ( m_result . DownloadedFileSize ),
m_result . DeletedFileCount ,
Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize ), m_result . UploadedFileCount ,
Library . Utility . Utility . FormatSizeString ( m_result . UploadedFileSize ),
m_result . DeletedFileCount - m_result . UploadedFileCount ,
2018-03-12 14:07:11 +01:00
Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize - m_result . UploadedFileSize ));
2016-09-15 11:39:27 +02:00
}
else
{
2013-08-24 22:31:16 +02:00
if ( m_result . DownloadedFileCount == 0 )
2018-03-12 14:07:11 +01:00
Logging . Log . WriteInformationMessage ( LOGTAG , "CompactResults" , "Deleted {0} files, which reduced storage by {1}" , m_result . DeletedFileCount , Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize ));
2013-08-24 22:31:16 +02:00
else
2018-03-12 14:07:11 +01:00
Logging . Log . WriteInformationMessage ( LOGTAG , "CompactResults" , "Downloaded {0} file(s) with a total size of {1}, deleted {2} file(s) with a total size of {3}, and compacted to {4} file(s) with a size of {5}, which reduced storage by {6} file(s) and {7}" ,
2017-09-18 13:27:30 +02:00
m_result . DownloadedFileCount ,
Library . Utility . Utility . FormatSizeString ( downloadSize ),
m_result . DeletedFileCount ,
Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize ),
m_result . UploadedFileCount ,
Library . Utility . Utility . FormatSizeString ( m_result . UploadedFileSize ),
m_result . DeletedFileCount - m_result . UploadedFileCount ,
2018-03-12 14:07:11 +01:00
Library . Utility . Utility . FormatSizeString ( m_result . DeletedFileSize - m_result . UploadedFileSize ));
2016-09-15 11:39:27 +02:00
}
backend . WaitForComplete ( db , transaction );
}
2016-12-01 23:59:54 +01:00
m_result . EndTime = DateTime . UtcNow ;
2013-07-01 14:40:45 +02:00
return ( m_result . DeletedFileCount + m_result . UploadedFileCount ) > 0 ;
2016-09-15 11:39:27 +02:00
}
else
{
2016-12-01 23:59:54 +01:00
m_result . EndTime = DateTime . UtcNow ;
2013-07-01 14:40:45 +02:00
return false ;
2016-09-15 11:39:27 +02:00
}
}
2015-11-17 12:37:33 +01:00
private IEnumerable < KeyValuePair < string , long >> DoDelete ( LocalDeleteDatabase db , BackendManager backend , IEnumerable < IRemoteVolume > deleteableVolumes , ref System . Data . IDbTransaction transaction )
{
2023-06-14 23:42:46 +02:00
// Mark all volumes and relevant index files as disposable
List < IRemoteVolume > remoteFilesToRemove = db . GetDeletableVolumes ( deleteableVolumes , transaction ). ToList ();
foreach ( var f in remoteFilesToRemove )
2015-11-17 12:37:33 +01:00
db . UpdateRemoteVolume ( f . Name , RemoteVolumeState . Deleting , f . Size , f . Hash , transaction );
// Before we commit the current state, make sure the backend has caught up
backend . WaitForEmpty ( db , transaction );
if (! m_options . Dryrun )
{
transaction . Commit ();
transaction = db . BeginTransaction ();
}
2023-06-14 23:42:46 +02:00
return PerformDelete ( backend , remoteFilesToRemove );
2015-11-17 12:37:33 +01:00
}
2020-01-19 21:57:08 -06:00
private void FinishVolumeAndUpload ( LocalDeleteDatabase db , BackendManager backend , BlockVolumeWriter newvol , IndexVolumeWriter newvolindex , List < KeyValuePair < string , long >> uploadedVolumes )
{
Action indexVolumeFinished = () => {
if ( newvolindex != null && m_options . IndexfilePolicy == Options . IndexFileStrategy . Full )
{
foreach ( var blocklist in db . GetBlocklists ( newvol . VolumeID , m_options . Blocksize , m_options . BlockhashSize ))
{
newvolindex . WriteBlocklist ( blocklist . Item1 , blocklist . Item2 , 0 , blocklist . Item3 );
}
}
};
uploadedVolumes . Add ( new KeyValuePair < string , long >( newvol . RemoteFilename , newvol . Filesize ));
if ( newvolindex != null )
uploadedVolumes . Add ( new KeyValuePair < string , long >( newvolindex . RemoteFilename , newvolindex . Filesize ));
if (! m_options . Dryrun )
backend . Put ( newvol , newvolindex , indexVolumeFinished );
else
Logging . Log . WriteDryrunMessage ( LOGTAG , "WouldUploadGeneratedBlockset" , "Would upload generated blockset of size {0}" , Library . Utility . Utility . FormatSizeString ( newvol . Filesize ));
}
2015-11-17 12:37:33 +01:00
private IEnumerable < KeyValuePair < string , long >> PerformDelete ( BackendManager backend , IEnumerable < IRemoteVolume > list )
2016-09-15 11:39:27 +02:00
{
2015-11-17 12:37:33 +01:00
foreach ( var f in list )
2016-09-15 11:39:27 +02:00
{
if (! m_options . Dryrun )
backend . Delete ( f . Name , f . Size );
else
2018-03-12 14:07:11 +01:00
Logging . Log . WriteDryrunMessage ( LOGTAG , "WouldDeleteRemoteFile" , "Would delete remote file: {0}, size: {1}" , f . Name , Library . Utility . Utility . FormatSizeString ( f . Size ));
2013-04-08 22:24:54 +02:00
2016-09-15 11:39:27 +02:00
yield return new KeyValuePair < string , long >( f . Name , f . Size );
2020-01-19 21:57:08 -06:00
}
2016-09-15 11:39:27 +02:00
}
}
2013-03-27 16:06:45 +01:00
}