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 { /// /// 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 XZ : IExtractable { /// 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(); filename = filename.TrimStart(['\\', '/']); 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 } } }