2013-07-18 23:36:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using ICSharpCode.SharpZipLib.Core;
|
|
|
|
|
using ICSharpCode.SharpZipLib.Zip;
|
2011-10-21 05:04:26 +00:00
|
|
|
|
using NLog;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-07-18 23:36:49 +00:00
|
|
|
|
public interface IArchiveService
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-07-18 23:36:49 +00:00
|
|
|
|
void Extract(string compressedFile, string destination);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ArchiveService : IArchiveService
|
|
|
|
|
{
|
|
|
|
|
private readonly Logger _logger;
|
2011-10-11 04:00:31 +00:00
|
|
|
|
|
2013-07-18 23:36:49 +00:00
|
|
|
|
public ArchiveService(Logger logger)
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
2013-07-18 23:36:49 +00:00
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
2011-10-21 05:04:26 +00:00
|
|
|
|
|
2013-07-18 23:36:49 +00:00
|
|
|
|
public void Extract(string compressedFile, string destination)
|
|
|
|
|
{
|
|
|
|
|
_logger.Trace("Extracting archive [{0}] to [{1}]", compressedFile, destination);
|
|
|
|
|
|
|
|
|
|
using (var fileStream = File.OpenRead(compressedFile))
|
2011-10-21 05:04:26 +00:00
|
|
|
|
{
|
2013-07-18 23:36:49 +00:00
|
|
|
|
var zipFile = new ZipFile(fileStream);
|
|
|
|
|
|
|
|
|
|
_logger.Debug("Validating Archive {0}", compressedFile);
|
|
|
|
|
|
|
|
|
|
if (!zipFile.TestArchive(true, TestStrategy.FindFirstError, OnZipError))
|
|
|
|
|
{
|
|
|
|
|
throw new IOException(string.Format("File {0} failed archive validation.", compressedFile));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (ZipEntry zipEntry in zipFile)
|
|
|
|
|
{
|
|
|
|
|
if (!zipEntry.IsFile)
|
|
|
|
|
{
|
|
|
|
|
continue; // Ignore directories
|
|
|
|
|
}
|
|
|
|
|
String entryFileName = zipEntry.Name;
|
|
|
|
|
// to remove the folder from the entry:- entryFileName = Path.GetFileName(entryFileName);
|
|
|
|
|
// Optionally match entrynames against a selection list here to skip as desired.
|
|
|
|
|
// The unpacked length is available in the zipEntry.Size property.
|
|
|
|
|
|
|
|
|
|
byte[] buffer = new byte[4096]; // 4K is optimum
|
|
|
|
|
Stream zipStream = zipFile.GetInputStream(zipEntry);
|
|
|
|
|
|
|
|
|
|
// Manipulate the output filename here as desired.
|
|
|
|
|
String fullZipToPath = Path.Combine(destination, entryFileName);
|
|
|
|
|
string directoryName = Path.GetDirectoryName(fullZipToPath);
|
|
|
|
|
if (directoryName.Length > 0)
|
|
|
|
|
Directory.CreateDirectory(directoryName);
|
|
|
|
|
|
|
|
|
|
// Unzip file in buffered chunks. This is just as fast as unpacking to a buffer the full size
|
|
|
|
|
// of the file, but does not waste memory.
|
|
|
|
|
// The "using" will close the stream even if an exception occurs.
|
|
|
|
|
using (FileStream streamWriter = File.Create(fullZipToPath))
|
|
|
|
|
{
|
|
|
|
|
StreamUtils.Copy(zipStream, streamWriter, buffer);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-21 05:04:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-18 23:36:49 +00:00
|
|
|
|
_logger.Trace("Extraction complete.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnZipError(TestStatus status, string message)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(message))
|
|
|
|
|
{
|
|
|
|
|
_logger.Error("File {0} failed zip validation. {1}", status.File.Name, message);
|
|
|
|
|
}
|
2011-10-21 05:04:26 +00:00
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|