using System.IO; namespace SabreTools.Wrappers { public partial class XZP : WrapperBase { #region Descriptive Properties /// public override string DescriptionString => "Xbox Package File (XZP)"; #endregion #region Extension Properties /// public Data.Models.XZP.DirectoryEntry[] DirectoryEntries => Model.DirectoryEntries; /// public Data.Models.XZP.DirectoryItem[] DirectoryItems => Model.DirectoryItems; #endregion #region Constructors /// public XZP(Data.Models.XZP.File model, byte[] data) : base(model, data) { } /// public XZP(Data.Models.XZP.File model, byte[] data, int offset) : base(model, data, offset) { } /// public XZP(Data.Models.XZP.File model, byte[] data, int offset, int length) : base(model, data, offset, length) { } /// public XZP(Data.Models.XZP.File model, Stream data) : base(model, data) { } /// public XZP(Data.Models.XZP.File model, Stream data, long offset) : base(model, data, offset) { } /// public XZP(Data.Models.XZP.File model, Stream data, long offset, long length) : base(model, data, offset, length) { } #endregion #region Static Constructors /// /// Create a XZP from a byte array and offset /// /// Byte array representing the XZP /// Offset within the array to parse /// A XZP wrapper on success, null on failure public static XZP? 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 XZP from a Stream /// /// Stream representing the XZP /// A XZP wrapper on success, null on failure public static XZP? 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.XZP().Deserialize(data); if (model is null) return null; return new XZP(model, data, currentOffset); } catch { return null; } } #endregion } }