mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
90 lines
3.1 KiB
C#
90 lines
3.1 KiB
C#
using System;
|
|
using System.Reactive.Subjects;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Downloaders;
|
|
using Wabbajack.DTOs;
|
|
using Wabbajack.Paths;
|
|
using Wabbajack.Paths.IO;
|
|
using Wabbajack.RateLimiter;
|
|
using Wabbajack.VFS;
|
|
|
|
namespace Wabbajack.Services.OSIntegrated.Services;
|
|
|
|
public class ModListDownloadMaintainer
|
|
{
|
|
private readonly ILogger<ModListDownloadMaintainer> _logger;
|
|
private readonly Configuration _configuration;
|
|
private readonly DownloadDispatcher _dispatcher;
|
|
private readonly FileHashCache _hashCache;
|
|
private readonly IResource<DownloadDispatcher> _rateLimiter;
|
|
private int _downloadingCount;
|
|
|
|
public ModListDownloadMaintainer(ILogger<ModListDownloadMaintainer> logger, Configuration configuration,
|
|
DownloadDispatcher dispatcher, FileHashCache hashCache, IResource<DownloadDispatcher> rateLimiter)
|
|
{
|
|
_logger = logger;
|
|
_configuration = configuration;
|
|
_dispatcher = dispatcher;
|
|
_hashCache = hashCache;
|
|
_rateLimiter = rateLimiter;
|
|
_downloadingCount = 0;
|
|
}
|
|
|
|
public AbsolutePath ModListPath(ModlistMetadata metadata)
|
|
{
|
|
return _configuration.ModListsDownloadLocation.Combine(metadata.Links.MachineURL).WithExtension(Ext.Wabbajack);
|
|
}
|
|
|
|
public async Task<bool> HaveModList(ModlistMetadata metadata, CancellationToken? token = null)
|
|
{
|
|
token ??= CancellationToken.None;
|
|
var path = ModListPath(metadata);
|
|
if (!path.FileExists()) return false;
|
|
|
|
if (_hashCache.TryGetHashCache(path, out var hash) && hash == metadata.DownloadMetadata!.Hash) return true;
|
|
if (_downloadingCount > 0) return false;
|
|
|
|
return await _hashCache.FileHashCachedAsync(path, token.Value) == metadata.DownloadMetadata!.Hash;
|
|
}
|
|
|
|
public (IObservable<Percent> Progress, Task Task) DownloadModlist(ModlistMetadata metadata, CancellationToken? token = null)
|
|
{
|
|
var path = ModListPath(metadata);
|
|
|
|
token ??= CancellationToken.None;
|
|
|
|
var progress = new Subject<Percent>();
|
|
progress.OnNext(Percent.Zero);
|
|
|
|
var tsk = Task.Run(async () =>
|
|
{
|
|
try
|
|
{
|
|
Interlocked.Increment(ref _downloadingCount);
|
|
var job = await _rateLimiter.Begin($"Downloading {metadata.Title}", metadata.DownloadMetadata!.Size,
|
|
token.Value);
|
|
|
|
job.OnUpdate += (_, pr) => { progress.OnNext(pr.Progress); };
|
|
|
|
var hash = await _dispatcher.Download(new Archive()
|
|
{
|
|
State = _dispatcher.Parse(new Uri(metadata.Links.Download))!,
|
|
Size = metadata.DownloadMetadata.Size,
|
|
Hash = metadata.DownloadMetadata.Hash
|
|
}, path, job, token.Value);
|
|
|
|
_hashCache.FileHashWriteCache(path, hash);
|
|
}
|
|
finally
|
|
{
|
|
progress.OnCompleted();
|
|
Interlocked.Decrement(ref _downloadingCount);
|
|
}
|
|
});
|
|
|
|
return (progress, tsk);
|
|
}
|
|
} |