/* Copyright (c) Cloud Software Group, Inc. * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * * * Redistributions of source code must retain the above * copyright notice, this list of conditions and the * following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the * following disclaimer in the documentation and/or other * materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ using System.IO; using System; namespace XenCenterLib.Compression { /// /// A static factory to create an object that will allow the archiving of data /// public static class CompressionFactory { /// /// Type of compressed stream /// public enum Type { Gz } public static string StringOf(this Type t) { switch (t) { case Type.Gz: return "Gzip"; default: throw new ArgumentOutOfRangeException(nameof(t), t, null); } } public static string FileExtension(this Type t) { switch (t) { case Type.Gz: return ".gz"; default: throw new ArgumentOutOfRangeException(nameof(t), t, null); } } /// /// Instantiate a class that can decompress a data stream type /// /// Type of compressed stream to read /// The contents of compressed data /// If there is not a compressor for a specified archive type /// CompressionStream to allow an read as a stream public static CompressionStream Reader(Type compressionType, Stream compressedDataSource) { if (compressionType == Type.Gz) return new GZipInputStream(compressedDataSource); throw new NotSupportedException(String.Format("Type: {0} is not supported by CompressionStream Reader", compressionType)); } /// /// Instantiate a class that can compress a data stream type /// /// Type of compressed stream to write /// The place where the compressed data will be put /// if there is not a compressor for a specified archive type /// CompressionStream to allow an write as a stream public static CompressionStream Writer(Type compressionType, Stream compressedDataTarget) { if (compressionType == Type.Gz) return new GZipOutputStream(compressedDataTarget); throw new NotSupportedException(String.Format("Type: {0} is not supported by CompressionStream Writer", compressionType)); } public static void UncompressFile(string inputFile, string outputFile, Type method, Action cancellingDelegate = null) { using (var inputStream = new FileStream(inputFile, FileMode.Open, FileAccess.ReadWrite, FileShare.None)) using (var outputStream = new FileStream(outputFile, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.None)) { using (var uncompressedStream = Reader(method, inputStream)) StreamCopy(uncompressedStream, outputStream, cancellingDelegate); } } public static void CompressFile(string inputFile, string outputFile, Type method, Action cancellingDelegate = null) { using (var inputStream = new FileStream(inputFile, FileMode.Open, FileAccess.ReadWrite, FileShare.None)) using (var outputStream = new FileStream(outputFile, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.None)) { using (var compressedStream = Writer(method, outputStream)) StreamCopy(inputStream, compressedStream, cancellingDelegate); } } private static void StreamCopy(Stream input, Stream output, Action cancellingDelegate = null) { byte[] block = new byte[2 * 1024 * 1024]; int n; while ((n = input.Read(block, 0, block.Length)) > 0) { cancellingDelegate?.Invoke(); output.Write(block, 0, n); } output.Flush(); } } }