mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
64 lines
2.2 KiB
C#
64 lines
2.2 KiB
C#
using System;
|
|
#if NET462_OR_GREATER || NETCOREAPP || NETSTANDARD2_0_OR_GREATER
|
|
using System.IO;
|
|
using SabreTools.IO.Extensions;
|
|
using SharpCompress.Compressors.Xz;
|
|
#endif
|
|
|
|
namespace SabreTools.Wrappers
|
|
{
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
public partial class XZ : IExtractable
|
|
{
|
|
/// <inheritdoc/>
|
|
public bool Extract(string outputDirectory, bool includeDebug)
|
|
{
|
|
if (_dataSource is null || !_dataSource.CanRead)
|
|
return false;
|
|
|
|
#if NET462_OR_GREATER || NETCOREAPP || NETSTANDARD2_0_OR_GREATER
|
|
try
|
|
{
|
|
// Try opening the stream
|
|
using var xzFile = new XZStream(_dataSource);
|
|
|
|
// Ensure directory separators are consistent
|
|
string filename = Filename is not null
|
|
? Path.GetFileNameWithoutExtension(Filename)
|
|
: Guid.NewGuid().ToString();
|
|
if (Path.DirectorySeparatorChar == '\\')
|
|
filename = filename.Replace('/', '\\');
|
|
else if (Path.DirectorySeparatorChar == '/')
|
|
filename = filename.Replace('\\', '/');
|
|
|
|
// Ensure the full output directory exists
|
|
filename = Path.Combine(outputDirectory, filename);
|
|
var directoryName = Path.GetDirectoryName(filename);
|
|
if (directoryName is not null && !Directory.Exists(directoryName))
|
|
Directory.CreateDirectory(directoryName);
|
|
|
|
// Extract the file
|
|
using var fs = File.Open(filename, FileMode.Create, FileAccess.Write, FileShare.None);
|
|
xzFile.BlockCopy(fs);
|
|
fs.Flush();
|
|
|
|
return true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (includeDebug) Console.Error.WriteLine(ex);
|
|
return false;
|
|
}
|
|
#else
|
|
Console.WriteLine("Extraction is not supported for this framework!");
|
|
Console.WriteLine();
|
|
return false;
|
|
#endif
|
|
}
|
|
}
|
|
}
|