using System.IO; using SabreTools.Data.Models.BZip2; namespace SabreTools.Wrappers { /// /// This is a shell wrapper; one that does not contain /// any actual parsing. It is used as a placeholder for /// types that typically do not have models. /// public partial class BZip2 : WrapperBase { #region Descriptive Properties /// public override string DescriptionString => "bzip2 Archive"; #endregion #region Constructors /// public BZip2(Archive model, byte[] data) : base(model, data) { } /// public BZip2(Archive model, byte[] data, int offset) : base(model, data, offset) { } /// public BZip2(Archive model, byte[] data, int offset, int length) : base(model, data, offset, length) { } /// public BZip2(Archive model, Stream data) : base(model, data) { } /// public BZip2(Archive model, Stream data, long offset) : base(model, data, offset) { } /// public BZip2(Archive model, Stream data, long offset, long length) : base(model, data, offset, length) { } #endregion #region Static Constructors /// /// Create a BZip2 archive from a byte array and offset /// /// Byte array representing the archive /// Offset within the array to parse /// A BZip2 wrapper on success, null on failure public static BZip2? 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); } /// /// Create a BZip2 archive from a Stream /// /// Stream representing the archive /// A BZip2 wrapper on success, null on failure public static BZip2? Create(Stream? data) { // If the data is invalid if (data is null || !data.CanRead) return null; return new BZip2(new Archive(), data); } #endregion } }