using System; using System.IO; using System.IO.Compression; using SharpCompress.Archive; using SharpCompress.Common; using SharpCompress.Reader; using SharpCompress.Writer; namespace SabreTools.Helper { public class ArchiveTools { /// /// Copy a file either to an output archive or to an output folder /// /// Input filename to be moved /// Output directory to build to /// Type of archive to attempt to write to /// RomData representing the new information public static void WriteArchiveOrFile(string input, string output, ArchiveType archiveType, RomData rom) { string archiveFileName = output + Path.DirectorySeparatorChar + rom.Game + ".zip"; string singleFileName = output + Path.DirectorySeparatorChar + rom.Game + Path.DirectorySeparatorChar + rom.Name; IWriter outarchive = null; FileStream fs = null; try { fs = File.OpenWrite(archiveFileName); outarchive = WriterFactory.Open(fs, ArchiveType.Zip, CompressionType.Deflate); outarchive.Write(rom.Name, input); } catch { if (!File.Exists(singleFileName)) { File.Copy(input, singleFileName); } } finally { outarchive?.Dispose(); fs?.Close(); fs?.Dispose(); } } /// /// Attempt to extract a file as an archive /// /// Name of the file to be extracted /// Temporary directory for archive extraction /// Logger object for file and console output /// True if the extraction was a success, false otherwise public static bool ExtractArchive(string input, string tempdir, Logger logger) { return ExtractArchive(input, tempdir, ArchiveScanLevel.Both, ArchiveScanLevel.External, ArchiveScanLevel.External, ArchiveScanLevel.Both, logger); } /// /// Attempt to extract a file as an archive /// /// Name of the file to be extracted /// Temporary directory for archive extraction /// Integer representing the archive handling level for 7z /// Integer representing the archive handling level for GZip /// Integer representing the archive handling level for RAR /// Integer representing the archive handling level for Zip /// Logger object for file and console output /// True if the extraction was a success, false otherwise public static bool ExtractArchive(string input, string tempdir, int sevenzip, int gz, int rar, int zip, Logger logger) { return ExtractArchive(input, tempdir, (ArchiveScanLevel)sevenzip, (ArchiveScanLevel)gz, (ArchiveScanLevel)rar, (ArchiveScanLevel)zip, logger); } /// /// Attempt to extract a file as an archive /// /// Name of the file to be extracted /// Temporary directory for archive extraction /// Archive handling level for 7z /// Archive handling level for GZip /// Archive handling level for RAR /// Archive handling level for Zip /// Logger object for file and console output /// True if the extraction was a success, false otherwise public static bool ExtractArchive(string input, string tempdir, ArchiveScanLevel sevenzip, ArchiveScanLevel gz, ArchiveScanLevel rar, ArchiveScanLevel zip, Logger logger) { bool encounteredErrors = true; IArchive archive = null; try { archive = ArchiveFactory.Open(input); ArchiveType at = archive.Type; logger.Log("Found archive of type: " + at); if ((at == ArchiveType.Zip && zip != ArchiveScanLevel.External) || (at == ArchiveType.SevenZip && sevenzip != ArchiveScanLevel.External) || (at == ArchiveType.Rar && rar != ArchiveScanLevel.External)) { // Create the temp directory DirectoryInfo di = Directory.CreateDirectory(tempdir); // Extract all files to the temp directory IReader reader = archive.ExtractAllEntries(); reader.WriteAllToDirectory(tempdir, ExtractOptions.ExtractFullPath); encounteredErrors = false; } else if (at == ArchiveType.GZip && gz != ArchiveScanLevel.External) { // Close the original archive handle archive.Dispose(); // Create the temp directory DirectoryInfo di = Directory.CreateDirectory(tempdir); using (FileStream itemstream = File.OpenRead(input)) { using (FileStream outstream = File.Create(tempdir + Path.GetFileNameWithoutExtension(input))) { using (GZipStream gzstream = new GZipStream(itemstream, CompressionMode.Decompress)) { gzstream.CopyTo(outstream); } } } encounteredErrors = false; } archive.Dispose(); } catch (InvalidOperationException) { encounteredErrors = true; if (archive != null) { archive.Dispose(); } } catch (Exception ex) { logger.Error(ex.ToString()); encounteredErrors = true; if (archive != null) { archive.Dispose(); } } return !encounteredErrors; } } }