xenadmin/XenCenterLib/Archive/ArchiveIterator.cs
Danilo Del Busso 86fa2f6abf
CA-375900: Prepend \\?\ to file paths when creating streams for archive generation (#3184)
* CA-375900: Prepend `//?/` to file paths when creating streams for archive generation
The string works to enable creation of files with paths larger than 260 characters.
* CA-375900: Add directory support and rename utility method
* Fix whitespace in `ArchiveWriterTest`
* CA-375900: Explicitly enumerate files and directories in `ArchiveWriter`
`Directory.GetFiles` and `Directory.GetDirectories` do not enumerate if paths are longer than 260, even when prepended with `//?/`.
* CA-375900: Add long path tests to `ArchiveWriter`
* CA-375900: Add long path tests to `ArchiveIterator`
* CA-375900: Ensure files are added to folders in archive
* Use a recursive method to add directories and files to archive in `ArchiveIterator`
Also improves progress reporting by basing it on directory count
* Fix typos
* Expand `ArchiveWriterTests` to cover all combinations of directory and path lengths
* Ensure that directories used in recursive `Directory.Delete` calls are using long path format
If files in the directory exceed the 260 character limit, the calls will fail
* Expand `ArchiveIteratorTests` to cover all combinations of directory and path lengths
* Ensure relative path name removes `rootPath`
* Fix typo
* Do not use long paths when importing OVFs
The import uses `DiscUtils` which cannot handle paths prepended with `//?/`
* Remove use of `ToLongWindowsPath` within appliance export
This partially reverts commit 819425855c56c14b937849714b359003465bd2f4.
* Refactoring and some corrections.

Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
Co-authored-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
2023-09-22 15:41:54 +01:00

115 lines
4.5 KiB
C#

/* 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;
using System.IO;
namespace XenCenterLib.Archive
{
/// <summary>
/// A base abstract class to iterate over an archived file type
/// </summary>
public abstract class ArchiveIterator : IDisposable
{
/// <summary>
/// Helper function to extract all contents of this iterating class to a path
/// </summary>
/// <param name="pathToExtractTo">The path to extract the archive to</param>
/// <param name="cancellingDelegate"></param>
/// <exception cref="ArgumentNullException">If null path is passed in</exception>
/// <exception cref="NullReferenceException">If while combining path and current file name a null arises</exception>
public void ExtractAllContents(string pathToExtractTo, Action cancellingDelegate = null)
{
if (string.IsNullOrEmpty(pathToExtractTo))
throw new ArgumentNullException();
while (HasNext())
{
//make the path Windows friendly
var fileName = CurrentFileName();
var isDirectory = IsDirectory();
var sanitizedName = fileName.Replace('/', Path.DirectorySeparatorChar);
var conflatedPath = Path.Combine(pathToExtractTo, sanitizedName);
var dir = isDirectory ? conflatedPath : Path.GetDirectoryName(conflatedPath);
dir = StringUtility.ToLongWindowsPath(dir, true);
//Create directory - empty one will be made too
Directory.CreateDirectory(dir);
//If we have a file extract the contents
if (!isDirectory)
{
conflatedPath = StringUtility.ToLongWindowsPath(conflatedPath, false);
using (var fs = File.Create(conflatedPath))
ExtractCurrentFile(fs, cancellingDelegate);
}
}
}
/// <summary>
/// Hook to allow the base stream to be wrapped by this class's archive mechanism
/// </summary>
/// <param name="stream">base stream</param>
public virtual void SetBaseStream(Stream stream)
{
throw new NotImplementedException();
}
public virtual bool VerifyCurrentFileAgainstDigest(string algorithmName, byte[] digest)
{
throw new NotImplementedException();
}
public abstract bool HasNext();
public abstract void ExtractCurrentFile(Stream extractedFileContents, Action cancellingDelegate);
public abstract string CurrentFileName();
public abstract long CurrentFileSize();
public abstract DateTime CurrentFileModificationTime();
public abstract bool IsDirectory();
/// <summary>
/// Dispose hook - overload and clean up IO
/// </summary>
/// <param name="disposing"></param>
protected virtual void Dispose(bool disposing)
{
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
}
}