Files
2023-11-14 14:50:47 -05:00

78 lines
2.2 KiB
C#

using System.IO;
namespace SabreTools.Serialization.Wrappers
{
public class IRD : WrapperBase<Models.IRD.File>
{
#region Descriptive Properties
/// <inheritdoc/>
public override string DescriptionString => "PS3 IRD file";
#endregion
#region Constructors
/// <inheritdoc/>
public IRD(Models.IRD.File? model, byte[]? data, int offset)
: base(model, data, offset)
{
// All logic is handled by the base class
}
/// <inheritdoc/>
public IRD(Models.IRD.File? model, Stream? data)
: base(model, data)
{
// All logic is handled by the base class
}
/// <summary>
/// Create an IRD 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>An IRD wrapper on success, null on failure</returns>
public static IRD? Create(byte[]? data, int offset)
{
// If the data is invalid
if (data == null)
return null;
// If the offset is out of bounds
if (offset < 0 || offset >= data.Length)
return null;
// Create a memory stream and use that
MemoryStream dataStream = new MemoryStream(data, offset, data.Length - offset);
return Create(dataStream);
}
/// <summary>
/// Create an IRD from a Stream
/// </summary>
/// <param name="data">Stream representing the archive</param>
/// <returns>An IRD wrapper on success, null on failure</returns>
public static IRD? Create(Stream? data)
{
// If the data is invalid
if (data == null || data.Length == 0 || !data.CanSeek || !data.CanRead)
return null;
var ird = new Streams.IRD().Deserialize(data);
if (ird == null)
return null;
try
{
return new IRD(ird, data);
}
catch
{
return null;
}
}
#endregion
}
}