mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
39 lines
917 B
C#
39 lines
917 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.DTOs.Vfs;
|
|
using Wabbajack.Hashing.xxHash64;
|
|
using Wabbajack.VFS.Interfaces;
|
|
|
|
namespace Wabbajack.VFS;
|
|
|
|
public class FallthroughVFSCache : IVfsCache
|
|
{
|
|
private readonly IVfsCache[] _caches;
|
|
|
|
public FallthroughVFSCache(IVfsCache[] caches)
|
|
{
|
|
_caches = caches;
|
|
}
|
|
|
|
public async Task<IndexedVirtualFile?> Get(Hash hash, CancellationToken token)
|
|
{
|
|
IndexedVirtualFile? result = null;
|
|
foreach (var cache in _caches)
|
|
{
|
|
if (result == null)
|
|
result = await cache.Get(hash, token);
|
|
else
|
|
await cache.Put(result, token);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public async Task Put(IndexedVirtualFile file, CancellationToken token)
|
|
{
|
|
foreach (var cache in _caches)
|
|
{
|
|
await cache.Put(file, token);
|
|
}
|
|
}
|
|
} |