You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
namespace EternalArrowBackup.SourceStorage.InMemorySourceStorage
|
|
{
|
|
using System;
|
|
using System.Collections.Immutable;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks.Dataflow;
|
|
using EternalArrowBackup.SourceStorage.Contracts;
|
|
|
|
public class SourceStorage : ISourceStorage
|
|
{
|
|
public SourceStorage(ImmutableDictionary<string, ImmutableDictionary<string, byte[]>> storageData)
|
|
{
|
|
this.StorageData = storageData;
|
|
}
|
|
|
|
private ImmutableDictionary<string, ImmutableDictionary<string, byte[]>> StorageData { get; }
|
|
|
|
public Task GetAllDirectories(ActionBlock<ISourceDirectory> actionBlock, CancellationToken ct)
|
|
{
|
|
return Task.Run(() =>
|
|
{
|
|
foreach (var kvp in this.StorageData)
|
|
{
|
|
if (ct.IsCancellationRequested)
|
|
{
|
|
break;
|
|
}
|
|
|
|
actionBlock.Post(new SourceDirectory(kvp.Key, kvp.Value));
|
|
}
|
|
|
|
actionBlock.Complete();
|
|
});
|
|
}
|
|
|
|
public Task<ISourceDirectory> GetDirectory(string normalizedRelativePath)
|
|
{
|
|
return Task.Run(() => (ISourceDirectory)new SourceDirectory(normalizedRelativePath, this.StorageData[normalizedRelativePath]));
|
|
}
|
|
}
|
|
}
|
|
|