Files
SabreTools.Serialization/SabreTools.Wrappers/InstallShieldArchiveV3.cs
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

182 lines
5.9 KiB
C#

using System.Collections.Generic;
using System.IO;
using SabreTools.Data.Models.InstallShieldArchiveV3;
namespace SabreTools.Wrappers
{
/// <remarks>
/// Reference (de)compressor: https://www.sac.sk/download/pack/icomp95.zip
/// </remarks>
/// <see href="https://github.com/wfr/unshieldv3"/>
public partial class InstallShieldArchiveV3 : WrapperBase<Archive>
{
#region Descriptive Properties
/// <inheritdoc/>
public override string DescriptionString => "InstallShield Archive V3";
#endregion
#region Extension Properties
/// <inheritdoc cref="Header.DirCount"/>
public ushort DirCount => Model.Header.DirCount;
/// <inheritdoc cref="Header.FileCount"/>
public ushort FileCount => Model.Header.FileCount;
/// <inheritdoc cref="Archive.Directories"/>
public Data.Models.InstallShieldArchiveV3.Directory[] Directories => Model.Directories;
/// <inheritdoc cref="Archive.Files"/>
public Data.Models.InstallShieldArchiveV3.File[] Files => Model.Files;
/// <summary>
/// Map of all files to their parent directories by index
/// </summary>
public Dictionary<int, int> FileDirMap
{
get
{
// Return the prebuilt map
if (field is not null)
return field;
// Build the file map
field = [];
int fileId = 0;
for (int i = 0; i < Directories.Length; i++)
{
var dir = Directories[i];
for (int j = 0; j < dir.FileCount; j++)
{
field[fileId++] = i;
}
}
return field;
}
} = null;
/// <summary>
/// Map of all files found in the archive
/// </summary>
public Dictionary<string, Data.Models.InstallShieldArchiveV3.File> FileNameMap
{
get
{
// Return the prebuilt map
if (field is not null)
return field;
// Build the file map
field = [];
for (int fileIndex = 0; fileIndex < Files.Length; fileIndex++)
{
// Get the current file
var file = Files[fileIndex];
// Get the parent directory
int dirIndex = FileDirMap[fileIndex];
if (dirIndex < 0 || dirIndex >= DirCount)
continue;
// Create the filename
string filename = Path.Combine(
Directories[dirIndex].Name.Length == 0 ? $"dir_{dirIndex}" : Directories[dirIndex].Name,
file.Name.Length == 0 ? $"file_{fileIndex}" : file.Name
);
// Add to the map
field[filename] = file;
}
return field;
}
} = null;
/// <summary>
/// Data offset for all archives
/// </summary>
private const uint DataStart = 255;
#endregion
#region Constructors
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, byte[] data) : base(model, data) { }
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, byte[] data, int offset) : base(model, data, offset) { }
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, Stream data) : base(model, data) { }
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, Stream data, long offset) : base(model, data, offset) { }
/// <inheritdoc/>
public InstallShieldArchiveV3(Archive model, Stream data, long offset, long length) : base(model, data, offset, length) { }
#endregion
#region Static Constructors
/// <summary>
/// Create an InstallShield Archive V3 from a byte array and offset
/// </summary>
/// <param name="data">Byte array representing the archive</param>
/// <param name="offset">Offset within the array to parse</param>
/// <returns>A archive wrapper on success, null on failure</returns>
public static InstallShieldArchiveV3? Create(byte[]? data, int offset)
{
// If the data is invalid
if (data is null || data.Length == 0)
return null;
// If the offset is out of bounds
if (offset < 0 || offset >= data.Length)
return null;
// Create a memory stream and use that
var dataStream = new MemoryStream(data, offset, data.Length - offset);
return Create(dataStream);
}
/// <summary>
/// Create a InstallShield Archive V3 from a Stream
/// </summary>
/// <param name="data">Stream representing the archive</param>
/// <returns>A archive wrapper on success, null on failure</returns>
public static InstallShieldArchiveV3? Create(Stream? data)
{
// If the data is invalid
if (data is null || !data.CanRead)
return null;
try
{
// Cache the current offset
long currentOffset = data.Position;
var model = new Serialization.Readers.InstallShieldArchiveV3().Deserialize(data);
if (model is null)
return null;
return new InstallShieldArchiveV3(model, data, currentOffset);
}
catch
{
return null;
}
}
#endregion
}
}