2020-09-04 21:00:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading.Tasks;
|
2020-09-05 14:01:32 +00:00
|
|
|
|
using Compression.BSA;
|
2020-09-04 21:00:37 +00:00
|
|
|
|
using Wabbajack.Common;
|
|
|
|
|
using Wabbajack.Common.FileSignatures;
|
|
|
|
|
using Wabbajack.VirtualFileSystem.SevenZipExtractor;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.VirtualFileSystem
|
|
|
|
|
{
|
|
|
|
|
public static class FileExtractor2
|
|
|
|
|
{
|
|
|
|
|
public static readonly SignatureChecker ArchiveSigs = new SignatureChecker(Definitions.FileType.TES3,
|
|
|
|
|
Definitions.FileType.BSA,
|
|
|
|
|
Definitions.FileType.BA2,
|
|
|
|
|
Definitions.FileType.ZIP,
|
2020-09-05 14:01:32 +00:00
|
|
|
|
//Definitions.FileType.EXE,
|
2020-09-04 21:00:37 +00:00
|
|
|
|
Definitions.FileType.RAR,
|
|
|
|
|
Definitions.FileType._7Z);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static async Task<Dictionary<RelativePath, T>> GatheringExtract<T>(IStreamFactory sFn,
|
|
|
|
|
Predicate<RelativePath> shouldExtract, Func<RelativePath, IStreamFactory, ValueTask<T>> mapfn)
|
|
|
|
|
{
|
|
|
|
|
await using var archive = await sFn.GetStream();
|
|
|
|
|
var sig = await ArchiveSigs.MatchesAsync(archive);
|
|
|
|
|
archive.Position = 0;
|
|
|
|
|
|
|
|
|
|
switch (sig)
|
|
|
|
|
{
|
|
|
|
|
case Definitions.FileType.ZIP:
|
|
|
|
|
return await GatheringExtractWith7Zip<T>(archive, (Definitions.FileType)sig, shouldExtract, mapfn);
|
|
|
|
|
|
2020-09-05 14:01:32 +00:00
|
|
|
|
case Definitions.FileType.TES3:
|
|
|
|
|
case Definitions.FileType.BSA:
|
|
|
|
|
case Definitions.FileType.BA2:
|
|
|
|
|
return await GatheringExtractWithBSA(sFn, (Definitions.FileType)sig, shouldExtract, mapfn);
|
|
|
|
|
|
|
|
|
|
|
2020-09-04 21:00:37 +00:00
|
|
|
|
default:
|
2020-09-05 14:01:32 +00:00
|
|
|
|
throw new Exception($"Invalid file format {sFn.Name}");
|
2020-09-04 21:00:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-05 14:01:32 +00:00
|
|
|
|
private static async Task<Dictionary<RelativePath,T>> GatheringExtractWithBSA<T>(IStreamFactory sFn, Definitions.FileType sig, Predicate<RelativePath> shouldExtract, Func<RelativePath,IStreamFactory,ValueTask<T>> mapfn)
|
|
|
|
|
{
|
|
|
|
|
var archive = await BSADispatch.OpenRead(sFn, sig);
|
|
|
|
|
var results = new Dictionary<RelativePath, T>();
|
|
|
|
|
foreach (var entry in archive.Files)
|
|
|
|
|
{
|
|
|
|
|
if (!shouldExtract(entry.Path))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
var result = await mapfn(entry.Path, await entry.GetStreamFactory());
|
|
|
|
|
results.Add(entry.Path, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-04 21:00:37 +00:00
|
|
|
|
private static async Task<Dictionary<RelativePath,T>> GatheringExtractWith7Zip<T>(Stream stream, Definitions.FileType sig, Predicate<RelativePath> shouldExtract, Func<RelativePath,IStreamFactory,ValueTask<T>> mapfn)
|
|
|
|
|
{
|
|
|
|
|
return await new GatheringExtractor<T>(stream, sig, shouldExtract, mapfn).Extract();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|