mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
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.
108 lines
3.4 KiB
C#
108 lines
3.4 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using SabreTools.Data.Models.ISO9660;
|
|
|
|
namespace SabreTools.Wrappers
|
|
{
|
|
public partial class ISO9660 : WrapperBase<Volume>
|
|
{
|
|
#region Descriptive Properties
|
|
|
|
/// <inheritdoc/>
|
|
public override string DescriptionString => "ISO 9660 Volume";
|
|
|
|
#endregion
|
|
|
|
#region Extension Properties
|
|
|
|
/// <inheritdoc cref="Volume.SystemArea"/>
|
|
public byte[] SystemArea => Model.SystemArea;
|
|
|
|
/// <inheritdoc cref="Volume.VolumeDescriptorSet"/>
|
|
public VolumeDescriptor[] VolumeDescriptorSet => Model.VolumeDescriptorSet;
|
|
|
|
/// <inheritdoc cref="Volume.PathTableGroups"/>
|
|
public PathTableGroup[] PathTableGroups => Model.PathTableGroups;
|
|
|
|
/// <inheritdoc cref="Volume.DirectoryDescriptors"/>
|
|
public Dictionary<int, FileExtent> DirectoryDescriptors => Model.DirectoryDescriptors;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, byte[] data) : base(model, data) { }
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, byte[] data, int offset) : base(model, data, offset) { }
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, Stream data) : base(model, data) { }
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, Stream data, long offset) : base(model, data, offset) { }
|
|
|
|
/// <inheritdoc/>
|
|
public ISO9660(Volume model, Stream data, long offset, long length) : base(model, data, offset, length) { }
|
|
|
|
#endregion
|
|
|
|
#region Static Constructors
|
|
|
|
/// <summary>
|
|
/// Create an ISO9660 Volume from a byte array and offset
|
|
/// </summary>
|
|
/// <param name="data">Byte array representing the ISO9660 Volume</param>
|
|
/// <param name="offset">Offset within the array to parse</param>
|
|
/// <returns>An ISO 9660 Volume wrapper on success, null on failure</returns>
|
|
public static ISO9660? 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 an ISO9660 Volume from a Stream
|
|
/// </summary>
|
|
/// <param name="data">Stream representing the ISO9660 Volume</param>
|
|
/// <returns>An ISO9660 Volume wrapper on success, null on failure</returns>
|
|
public static ISO9660? 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.ISO9660().Deserialize(data);
|
|
if (model is null)
|
|
return null;
|
|
|
|
return new ISO9660(model, data, currentOffset);
|
|
}
|
|
catch
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|