mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-13 04:16:53 +00:00
Re-add Wix for MS-CAB
Added until LibMSPackSharp can be fixed
This commit is contained in:
@@ -57,6 +57,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Dtf\src\WixToolset.Dtf.Compression.Cab\WixToolset.Dtf.Compression.Cab.csproj" />
|
||||
<ProjectReference Include="..\HLLibSharp\HLLibSharp\HLLibSharp.csproj" />
|
||||
<ProjectReference Include="..\LibMSPackSharp\LibMSPackSharp\LibMSPackSharp.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -3,8 +3,7 @@ using System.Collections.Concurrent;
|
||||
using System.IO;
|
||||
using BurnOutSharp.Interfaces;
|
||||
using BurnOutSharp.Tools;
|
||||
using LibMSPackSharp;
|
||||
using LibMSPackSharp.CABExtract;
|
||||
using WixToolset.Dtf.Compression.Cab;
|
||||
|
||||
namespace BurnOutSharp.FileType
|
||||
{
|
||||
@@ -32,7 +31,6 @@ namespace BurnOutSharp.FileType
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: Add stream opening support
|
||||
/// <inheritdoc/>
|
||||
public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, Stream stream, string file)
|
||||
{
|
||||
@@ -42,55 +40,8 @@ namespace BurnOutSharp.FileType
|
||||
string tempPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
|
||||
Directory.CreateDirectory(tempPath);
|
||||
|
||||
// Create the decompressor
|
||||
var decompressor = Library.CreateCABDecompressor(null);
|
||||
decompressor.Debug = scanner.IncludeDebug;
|
||||
|
||||
// Open the cab file
|
||||
var cabFile = decompressor.Open(file);
|
||||
if (cabFile == null)
|
||||
{
|
||||
if (scanner.IncludeDebug) Console.WriteLine($"Error occurred opening of '{file}': {decompressor.Error}");
|
||||
return null;
|
||||
}
|
||||
|
||||
// If we have a previous CAB and it exists, don't try scanning
|
||||
string directory = Path.GetDirectoryName(file);
|
||||
if (!string.IsNullOrWhiteSpace(cabFile.PreviousCabinetName))
|
||||
{
|
||||
if (File.Exists(Path.Combine(directory, cabFile.PreviousCabinetName)))
|
||||
return null;
|
||||
}
|
||||
|
||||
// If there are additional next CABs, add those
|
||||
string fileName = Path.GetFileName(file);
|
||||
CABExtract.LoadSpanningCabinets(cabFile, fileName);
|
||||
|
||||
// Loop through the found internal files
|
||||
var sub = cabFile.Files;
|
||||
while (sub != null)
|
||||
{
|
||||
// If an individual entry fails
|
||||
try
|
||||
{
|
||||
// The trim here is for some very odd and stubborn files
|
||||
string tempFile = Path.Combine(tempPath, sub.Filename.TrimEnd('\0', ' ', '.'));
|
||||
Error error = decompressor.Extract(sub, tempFile);
|
||||
if (error != Error.MSPACK_ERR_OK)
|
||||
{
|
||||
if (scanner.IncludeDebug) Console.WriteLine($"Error occurred during extraction of '{sub.Filename}': {error}");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (scanner.IncludeDebug) Console.WriteLine(ex);
|
||||
}
|
||||
|
||||
sub = sub.Next;
|
||||
}
|
||||
|
||||
// Destroy the decompressor
|
||||
Library.DestroyCABDecompressor(decompressor);
|
||||
CabInfo cabInfo = new CabInfo(file);
|
||||
cabInfo.Unpack(tempPath);
|
||||
|
||||
// Collect and format all found protections
|
||||
var protections = scanner.GetProtections(tempPath);
|
||||
@@ -117,5 +68,95 @@ namespace BurnOutSharp.FileType
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
#region LibMSPackSharp
|
||||
|
||||
// TODO: Add stream opening support
|
||||
/// <inheritdoc/>
|
||||
//public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, Stream stream, string file)
|
||||
//{
|
||||
// // If the cab file itself fails
|
||||
// try
|
||||
// {
|
||||
// string tempPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
|
||||
// Directory.CreateDirectory(tempPath);
|
||||
|
||||
// // Create the decompressor
|
||||
// var decompressor = Library.CreateCABDecompressor(null);
|
||||
// decompressor.Debug = scanner.IncludeDebug;
|
||||
|
||||
// // Open the cab file
|
||||
// var cabFile = decompressor.Open(file);
|
||||
// if (cabFile == null)
|
||||
// {
|
||||
// if (scanner.IncludeDebug) Console.WriteLine($"Error occurred opening of '{file}': {decompressor.Error}");
|
||||
// return null;
|
||||
// }
|
||||
|
||||
// // If we have a previous CAB and it exists, don't try scanning
|
||||
// string directory = Path.GetDirectoryName(file);
|
||||
// if (!string.IsNullOrWhiteSpace(cabFile.PreviousCabinetName))
|
||||
// {
|
||||
// if (File.Exists(Path.Combine(directory, cabFile.PreviousCabinetName)))
|
||||
// return null;
|
||||
// }
|
||||
|
||||
// // If there are additional next CABs, add those
|
||||
// string fileName = Path.GetFileName(file);
|
||||
// CABExtract.LoadSpanningCabinets(cabFile, fileName);
|
||||
|
||||
// // Loop through the found internal files
|
||||
// var sub = cabFile.Files;
|
||||
// while (sub != null)
|
||||
// {
|
||||
// // If an individual entry fails
|
||||
// try
|
||||
// {
|
||||
// // The trim here is for some very odd and stubborn files
|
||||
// string tempFile = Path.Combine(tempPath, sub.Filename.TrimEnd('\0', ' ', '.'));
|
||||
// Error error = decompressor.Extract(sub, tempFile);
|
||||
// if (error != Error.MSPACK_ERR_OK)
|
||||
// {
|
||||
// if (scanner.IncludeDebug) Console.WriteLine($"Error occurred during extraction of '{sub.Filename}': {error}");
|
||||
// }
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// if (scanner.IncludeDebug) Console.WriteLine(ex);
|
||||
// }
|
||||
|
||||
// sub = sub.Next;
|
||||
// }
|
||||
|
||||
// // Destroy the decompressor
|
||||
// Library.DestroyCABDecompressor(decompressor);
|
||||
|
||||
// // Collect and format all found protections
|
||||
// var protections = scanner.GetProtections(tempPath);
|
||||
|
||||
// // If temp directory cleanup fails
|
||||
// try
|
||||
// {
|
||||
// Directory.Delete(tempPath, true);
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// if (scanner.IncludeDebug) Console.WriteLine(ex);
|
||||
// }
|
||||
|
||||
// // Remove temporary path references
|
||||
// Utilities.StripFromKeys(protections, tempPath);
|
||||
|
||||
// return protections;
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// if (scanner.IncludeDebug) Console.WriteLine(ex);
|
||||
// }
|
||||
|
||||
// return null;
|
||||
//}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user