ShareX/ShareX.HelpersLib/Zip/ZipManager.cs

197 lines
7 KiB
C#
Raw Normal View History

2018-03-03 09:46:39 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2023-01-10 09:31:02 +13:00
Copyright (c) 2007-2023 ShareX Team
2018-03-03 09:46:39 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
2018-03-03 09:46:39 +13:00
namespace ShareX.HelpersLib
{
2018-03-03 10:06:40 +13:00
public static class ZipManager
2018-03-03 09:46:39 +13:00
{
public static void Extract(string archivePath, string destination, bool retainDirectoryStructure = true, Func<ZipArchiveEntry, bool> filter = null,
long maxUncompressedSize = 0)
2018-03-03 09:46:39 +13:00
{
using (ZipArchive archive = ZipFile.OpenRead(archivePath))
{
if (maxUncompressedSize > 0)
2018-03-03 09:46:39 +13:00
{
long totalUncompressedSize = archive.Entries.Sum(entry => entry.Length);
if (totalUncompressedSize > maxUncompressedSize)
2018-03-03 12:53:35 +13:00
{
throw new Exception("Uncompressed file size of this archive is bigger than the maximum allowed file size.\r\n\r\n" +
$"Archive uncompressed file size: {totalUncompressedSize.ToSizeString()}\r\n" +
$"Maximum allowed file size: {maxUncompressedSize.ToSizeString()}");
}
}
2018-03-03 12:53:35 +13:00
string fullName = Directory.CreateDirectory(Path.GetFullPath(destination)).FullName;
foreach (ZipArchiveEntry entry in archive.Entries)
{
if (filter != null && !filter(entry))
{
continue;
}
2020-06-20 02:41:00 +12:00
string entryName;
2018-03-03 12:53:35 +13:00
if (retainDirectoryStructure)
{
entryName = entry.FullName;
}
else
{
entryName = entry.Name;
}
2018-03-03 12:53:35 +13:00
string fullPath = Path.GetFullPath(Path.Combine(fullName, entryName));
if (fullPath.StartsWith(fullName, StringComparison.OrdinalIgnoreCase))
2018-03-03 09:46:39 +13:00
{
2018-03-03 12:53:35 +13:00
if (Path.GetFileName(fullPath).Length == 0)
{
if (entry.Length == 0)
{
Directory.CreateDirectory(fullPath);
}
}
else
2018-03-03 09:46:39 +13:00
{
2018-03-03 12:53:35 +13:00
Directory.CreateDirectory(Path.GetDirectoryName(fullPath));
ExtractToFile(entry, fullPath, true);
2018-03-03 09:46:39 +13:00
}
}
}
}
}
private static void ExtractToFile(ZipArchiveEntry source, string destinationFileName, bool overwrite)
{
if (source == null)
{
throw new ArgumentNullException(nameof(source));
}
if (destinationFileName == null)
{
throw new ArgumentNullException(nameof(destinationFileName));
}
FileMode fMode = overwrite ? FileMode.Create : FileMode.CreateNew;
using (FileStream fs = new FileStream(destinationFileName, fMode, FileAccess.Write, FileShare.None, bufferSize: 0x1000, useAsync: false))
using (Stream es = source.Open())
using (MaxLengthStream maxLengthStream = new MaxLengthStream(es, source.Length))
{
maxLengthStream.CopyTo(fs);
}
File.SetLastWriteTime(destinationFileName, source.LastWriteTime.DateTime);
}
2018-03-03 10:06:40 +13:00
public static void Compress(string source, string archivePath, CompressionLevel compression = CompressionLevel.Optimal)
{
if (File.Exists(archivePath))
{
File.Delete(archivePath);
}
ZipFile.CreateFromDirectory(source, archivePath, compression, false);
}
public static void Compress(string archivePath, List<ZipEntryInfo> entries, CompressionLevel compression = CompressionLevel.Optimal)
{
FileHelpers.CreateDirectoryFromFilePath(archivePath);
2020-08-14 01:52:42 +12:00
if (File.Exists(archivePath))
{
File.Delete(archivePath);
}
2020-08-14 01:52:42 +12:00
using (ZipArchive archive = ZipFile.Open(archivePath, ZipArchiveMode.Create))
{
foreach (ZipEntryInfo entry in entries)
{
archive.CreateEntry(entry, compression);
}
}
}
2020-08-14 01:52:42 +12:00
private static ZipArchiveEntry CreateEntry(this ZipArchive archive, ZipEntryInfo entryInfo, CompressionLevel compressionLevel)
2018-03-03 09:46:39 +13:00
{
if (entryInfo == null)
2018-03-03 09:46:39 +13:00
{
throw new ArgumentNullException(nameof(entryInfo));
2018-03-03 09:46:39 +13:00
}
if (entryInfo.Data != null)
2018-03-03 09:46:39 +13:00
{
using (entryInfo.Data)
2018-03-03 09:46:39 +13:00
{
return archive.CreateEntryFromStream(entryInfo.Data, entryInfo.EntryName, compressionLevel);
2018-03-03 09:46:39 +13:00
}
}
else if (!string.IsNullOrEmpty(entryInfo.SourcePath) && File.Exists(entryInfo.SourcePath))
{
return archive.CreateEntryFromFile(entryInfo.SourcePath, entryInfo.EntryName, compressionLevel);
}
return null;
2018-03-03 09:46:39 +13:00
}
2020-08-14 01:52:42 +12:00
private static ZipArchiveEntry CreateEntryFromStream(this ZipArchive archive, Stream stream, string entryName, CompressionLevel compressionLevel)
{
if (archive == null)
{
throw new ArgumentNullException(nameof(archive));
}
if (stream == null)
{
throw new ArgumentNullException(nameof(stream));
}
if (entryName == null)
{
throw new ArgumentNullException(nameof(entryName));
}
ZipArchiveEntry entry = archive.CreateEntry(entryName, compressionLevel);
entry.LastWriteTime = DateTime.Now;
using (Stream entryStream = entry.Open())
{
stream.Position = 0;
stream.CopyTo(entryStream);
}
return entry;
}
2018-03-03 09:46:39 +13:00
}
}