2024-04-27 22:45:49 -04:00
|
|
|
using System.IO;
|
2025-09-26 13:06:18 -04:00
|
|
|
using SabreTools.Data.Models.PKZIP;
|
2024-04-27 22:45:49 -04:00
|
|
|
|
2026-03-18 16:37:59 -04:00
|
|
|
namespace SabreTools.Wrappers
|
2024-04-27 22:45:49 -04:00
|
|
|
{
|
2025-09-12 09:02:03 -04:00
|
|
|
public partial class PKZIP : WrapperBase<Archive>
|
2024-04-27 22:45:49 -04:00
|
|
|
{
|
|
|
|
|
#region Descriptive Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public override string DescriptionString => "PKZIP Archive (or Derived Format)";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2025-08-27 21:59:30 -04:00
|
|
|
#region Extension Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="Archive.CentralDirectoryHeaders"/>
|
|
|
|
|
public CentralDirectoryFileHeader[]? CentralDirectoryHeader => Model.CentralDirectoryHeaders;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="Archive.EndOfCentralDirectoryRecord"/>
|
|
|
|
|
public EndOfCentralDirectoryRecord? EndOfCentralDirectoryRecord => Model.EndOfCentralDirectoryRecord;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="Archive.ZIP64EndOfCentralDirectoryLocator"/>
|
|
|
|
|
public EndOfCentralDirectoryLocator64? ZIP64EndOfCentralDirectoryLocator => Model.ZIP64EndOfCentralDirectoryLocator;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="Archive.ZIP64EndOfCentralDirectoryRecord"/>
|
|
|
|
|
public EndOfCentralDirectoryRecord64? ZIP64EndOfCentralDirectoryRecord => Model.ZIP64EndOfCentralDirectoryRecord;
|
|
|
|
|
|
2025-09-01 16:43:21 -04:00
|
|
|
/// <inheritdoc cref="Archive.LocalFiles"/>
|
|
|
|
|
public LocalFile[]? LocalFiles => Model.LocalFiles;
|
2025-08-27 21:59:30 -04:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2024-04-27 22:45:49 -04:00
|
|
|
#region Constructors
|
|
|
|
|
|
2025-08-28 19:59:24 -04:00
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public PKZIP(Archive model, byte[] data) : base(model, data) { }
|
2025-08-28 19:59:24 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public PKZIP(Archive model, byte[] data, int offset) : base(model, data, offset) { }
|
2025-08-28 19:59:24 -04:00
|
|
|
|
2024-04-27 22:45:49 -04:00
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public PKZIP(Archive model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
|
2024-04-27 22:45:49 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public PKZIP(Archive model, Stream data) : base(model, data) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public PKZIP(Archive model, Stream data, long offset) : base(model, data, offset) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public PKZIP(Archive model, Stream data, long offset, long length) : base(model, data, offset, length) { }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Static Constructors
|
2024-04-27 22:45:49 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a PKZIP archive (or derived format) 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 PKZIP wrapper on success, null on failure</returns>
|
|
|
|
|
public static PKZIP? Create(byte[]? data, int offset)
|
|
|
|
|
{
|
|
|
|
|
// If the data is invalid
|
2026-01-25 14:30:18 -05:00
|
|
|
if (data is null || data.Length == 0)
|
2024-04-27 22:45:49 -04:00
|
|
|
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 PKZIP archive (or derived format) from a Stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Stream representing the archive</param>
|
|
|
|
|
/// <returns>A PKZIP wrapper on success, null on failure</returns>
|
|
|
|
|
public static PKZIP? Create(Stream? data)
|
|
|
|
|
{
|
|
|
|
|
// If the data is invalid
|
2026-01-25 14:30:18 -05:00
|
|
|
if (data is null || !data.CanRead)
|
2024-04-27 22:45:49 -04:00
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2025-08-28 14:10:08 -04:00
|
|
|
// Cache the current offset
|
|
|
|
|
long currentOffset = data.Position;
|
|
|
|
|
|
2026-03-18 16:37:59 -04:00
|
|
|
var model = new Serialization.Readers.PKZIP().Deserialize(data);
|
2026-01-25 14:30:18 -05:00
|
|
|
if (model is null)
|
2024-11-28 21:58:49 -05:00
|
|
|
return null;
|
|
|
|
|
|
2025-09-16 21:54:26 -04:00
|
|
|
return new PKZIP(model, data, currentOffset);
|
2024-04-27 22:45:49 -04:00
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
2025-07-24 09:31:28 -04:00
|
|
|
}
|