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.
|
|
|
|
|
|
2016-02-09 09:17:31 +01:00
|
|
|
using CoCoL;
|
|
|
|
|
using Duplicati.Library.Main.Operation.Common;
|
2019-02-22 19:37:35 -06:00
|
|
|
using Duplicati.Library.Main.Volumes;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using static Duplicati.Library.Main.Operation.Common.BackendHandler;
|
2016-02-09 09:17:31 +01:00
|
|
|
|
|
|
|
|
namespace Duplicati.Library.Main.Operation.Backup
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2016-02-25 19:15:51 +01:00
|
|
|
/// This class receives data blocks, registers then in the database.
|
|
|
|
|
/// New blocks are added to a compressed archive and sent
|
|
|
|
|
/// to the uploader
|
2016-02-09 09:17:31 +01:00
|
|
|
/// </summary>
|
|
|
|
|
internal static class DataBlockProcessor
|
|
|
|
|
{
|
2016-02-27 02:15:42 +01:00
|
|
|
public static Task Run(BackupDatabase database, Options options, ITaskReader taskreader)
|
2016-02-09 09:17:31 +01:00
|
|
|
{
|
|
|
|
|
return AutomationExtensions.RunTask(
|
2016-02-24 23:48:42 +01:00
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
Input = Channels.OutputBlocks.ForRead,
|
|
|
|
|
Output = Channels.BackendRequest.ForWrite,
|
|
|
|
|
SpillPickup = Channels.SpillPickup.ForWrite,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async self =>
|
|
|
|
|
{
|
2018-04-30 14:04:30 +02:00
|
|
|
var noIndexFiles = options.IndexfilePolicy == Options.IndexFileStrategy.None;
|
|
|
|
|
var fullIndexFiles = options.IndexfilePolicy == Options.IndexFileStrategy.Full;
|
|
|
|
|
|
2016-02-24 23:48:42 +01:00
|
|
|
BlockVolumeWriter blockvolume = null;
|
2018-04-30 14:04:30 +02:00
|
|
|
TemporaryIndexVolume indexvolume = null;
|
2016-02-24 23:48:42 +01:00
|
|
|
|
|
|
|
|
try
|
2016-02-09 09:17:31 +01:00
|
|
|
{
|
2019-02-22 19:37:35 -06:00
|
|
|
while (true)
|
2016-02-09 09:17:31 +01:00
|
|
|
{
|
2016-02-24 23:48:42 +01:00
|
|
|
var b = await self.Input.ReadAsync();
|
2016-02-09 09:17:31 +01:00
|
|
|
|
2016-02-24 23:48:42 +01:00
|
|
|
// Lazy-start a new block volume
|
|
|
|
|
if (blockvolume == null)
|
|
|
|
|
{
|
|
|
|
|
// Before we start a new volume, probe to see if it exists
|
|
|
|
|
// This will delay creation of volumes for differential backups
|
|
|
|
|
// There can be a race, such that two workers determine that
|
|
|
|
|
// the block is missing, but this will be solved by the AddBlock call
|
|
|
|
|
// which runs atomically
|
|
|
|
|
if (await database.FindBlockIDAsync(b.HashKey, b.Size) >= 0)
|
2016-02-09 09:17:31 +01:00
|
|
|
{
|
2016-02-24 23:48:42 +01:00
|
|
|
b.TaskCompletion.TrySetResult(false);
|
|
|
|
|
continue;
|
2016-02-20 15:06:29 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-24 23:48:42 +01:00
|
|
|
blockvolume = new BlockVolumeWriter(options);
|
|
|
|
|
blockvolume.VolumeID = await database.RegisterRemoteVolumeAsync(blockvolume.RemoteFilename, RemoteVolumeType.Blocks, RemoteVolumeState.Temporary);
|
2018-04-30 14:04:30 +02:00
|
|
|
|
2019-02-22 19:37:35 -06:00
|
|
|
indexvolume = noIndexFiles ? null : new TemporaryIndexVolume(options);
|
2016-02-24 23:48:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var newBlock = await database.AddBlockAsync(b.HashKey, b.Size, blockvolume.VolumeID);
|
|
|
|
|
b.TaskCompletion.TrySetResult(newBlock);
|
2016-02-20 15:06:29 +01:00
|
|
|
|
2016-02-24 23:48:42 +01:00
|
|
|
if (newBlock)
|
|
|
|
|
{
|
|
|
|
|
blockvolume.AddBlock(b.HashKey, b.Data, b.Offset, (int)b.Size, b.Hint);
|
2018-04-30 14:04:30 +02:00
|
|
|
if (indexvolume != null)
|
|
|
|
|
{
|
|
|
|
|
indexvolume.AddBlock(b.HashKey, b.Size);
|
|
|
|
|
if (b.IsBlocklistHashes && fullIndexFiles)
|
|
|
|
|
indexvolume.AddBlockListHash(b.HashKey, b.Size, b.Data);
|
|
|
|
|
}
|
2016-02-09 09:17:31 +01:00
|
|
|
|
2016-02-25 19:15:51 +01:00
|
|
|
// If the volume is full, send to upload
|
2016-02-24 23:48:42 +01:00
|
|
|
if (blockvolume.Filesize > options.VolumeSize - options.Blocksize)
|
|
|
|
|
{
|
2017-08-12 14:20:35 +01:00
|
|
|
//When uploading a new volume, we register the volumes and then flush the transaction
|
2016-02-27 02:15:42 +01:00
|
|
|
// this ensures that the local database and remote storage are as closely related as possible
|
|
|
|
|
await database.UpdateRemoteVolumeAsync(blockvolume.RemoteFilename, RemoteVolumeState.Uploading, -1, null);
|
2019-02-22 19:37:35 -06:00
|
|
|
|
2016-02-27 02:15:42 +01:00
|
|
|
blockvolume.Close();
|
|
|
|
|
|
|
|
|
|
await database.CommitTransactionAsync("CommitAddBlockToOutputFlush");
|
2017-08-12 14:20:35 +01:00
|
|
|
|
2019-10-04 21:37:33 -07:00
|
|
|
FileEntryItem blockEntry = blockvolume.CreateFileEntryForUpload(options);
|
2019-02-22 19:37:35 -06:00
|
|
|
|
2019-10-04 22:02:20 -07:00
|
|
|
TemporaryIndexVolume indexVolumeCopy = null;
|
2019-03-30 19:55:36 -05:00
|
|
|
if (indexvolume != null)
|
2019-02-22 19:37:35 -06:00
|
|
|
{
|
2019-10-04 22:02:20 -07:00
|
|
|
indexVolumeCopy = new TemporaryIndexVolume(options);
|
|
|
|
|
indexvolume.CopyTo(indexVolumeCopy, false);
|
2019-02-22 19:37:35 -06:00
|
|
|
}
|
|
|
|
|
|
2019-10-04 22:02:20 -07:00
|
|
|
var uploadRequest = new VolumeUploadRequest(blockvolume, blockEntry, indexVolumeCopy, options, database);
|
2019-02-22 19:37:35 -06:00
|
|
|
|
2016-02-27 02:15:42 +01:00
|
|
|
blockvolume = null;
|
2018-04-30 14:04:30 +02:00
|
|
|
indexvolume = null;
|
2020-01-05 21:43:56 -06:00
|
|
|
|
|
|
|
|
// Write to output at the end here to prevent sending a full volume to the SpillCollector
|
|
|
|
|
await self.Output.WriteAsync(uploadRequest);
|
2016-02-20 15:06:29 +01:00
|
|
|
}
|
2016-02-24 23:48:42 +01:00
|
|
|
|
2016-02-09 09:17:31 +01:00
|
|
|
}
|
2016-02-27 02:15:42 +01:00
|
|
|
|
|
|
|
|
// We ignore the stop signal, but not the pause and terminate
|
|
|
|
|
await taskreader.ProgressAsync;
|
2016-02-09 09:17:31 +01:00
|
|
|
}
|
2016-02-24 23:48:42 +01:00
|
|
|
}
|
2019-02-22 19:37:35 -06:00
|
|
|
catch (Exception ex)
|
2016-02-24 23:48:42 +01:00
|
|
|
{
|
|
|
|
|
if (ex.IsRetiredException())
|
2016-02-09 09:17:31 +01:00
|
|
|
{
|
2016-02-24 23:48:42 +01:00
|
|
|
// If we have collected data, merge all pending volumes into a single volume
|
|
|
|
|
if (blockvolume != null && blockvolume.SourceSize > 0)
|
2017-08-13 11:58:39 +01:00
|
|
|
{
|
2019-02-22 19:37:35 -06:00
|
|
|
await self.SpillPickup.WriteAsync(new SpillVolumeRequest(blockvolume, indexvolume));
|
2017-08-13 11:58:39 +01:00
|
|
|
}
|
2016-02-09 09:17:31 +01:00
|
|
|
}
|
2016-02-24 23:48:42 +01:00
|
|
|
|
|
|
|
|
throw;
|
2016-02-09 09:17:31 +01:00
|
|
|
}
|
2016-02-24 23:48:42 +01:00
|
|
|
});
|
2016-02-09 09:17:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|