mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Common.FileSignatures
|
|
{
|
|
public class SignatureChecker
|
|
{
|
|
private readonly HashSet<Definitions.FileType> _types;
|
|
private readonly (Definitions.FileType, byte[])[] _signatures;
|
|
|
|
private readonly int _maxLength;
|
|
|
|
public SignatureChecker(params Definitions.FileType[] types)
|
|
{
|
|
_types = new HashSet<Definitions.FileType>(types);
|
|
_signatures = Definitions.Signatures.Where(row => _types.Contains(row.Item1)).OrderByDescending(x => x.Item2.Length).ToArray();
|
|
_maxLength = _signatures.First().Item2.Length;
|
|
}
|
|
|
|
public async Task<Definitions.FileType?> MatchesAsync(AbsolutePath path)
|
|
{
|
|
await using var fs = await path.OpenShared();
|
|
return await MatchesAsync(fs);
|
|
}
|
|
|
|
public async Task<Definitions.FileType?> MatchesAsync(Stream stream)
|
|
{
|
|
var buffer = new byte[_maxLength];
|
|
stream.Position = 0;
|
|
await stream.ReadAsync(buffer);
|
|
|
|
foreach (var (fileType, signature) in _signatures)
|
|
{
|
|
if (AreEqual(buffer, signature))
|
|
return fileType;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private static bool AreEqual(IReadOnlyList<byte> a, IEnumerable<byte> b)
|
|
{
|
|
return !b.Where((t, i) => a[i] != t).Any();
|
|
}
|
|
}
|
|
}
|