From ce0fd262e48341402416c8428e37226c80332935 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 26 Feb 2020 11:30:13 -0800 Subject: Hide the ZipArchive details from the public WixOutput API --- src/WixToolset.Data/WixOutput.cs | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/WixToolset.Data/WixOutput.cs b/src/WixToolset.Data/WixOutput.cs index 43a43a6a..bb7a9a70 100644 --- a/src/WixToolset.Data/WixOutput.cs +++ b/src/WixToolset.Data/WixOutput.cs @@ -13,8 +13,8 @@ namespace WixToolset.Data /// public class WixOutput : IDisposable { + private readonly Stream stream; private ZipArchive archive; - private Stream stream; private bool disposed; private WixOutput(Uri uri, ZipArchive archive, Stream stream) @@ -140,10 +140,16 @@ namespace WixToolset.Data } } - public void Reopen(ZipArchiveMode mode) + /// + /// Reopen the underlying archive for read-only or read-write access. + /// + /// Indicates whether the output can be modified. Defaults to false. + public void Reopen(bool writable = false) { this.archive?.Dispose(); - this.archive = new ZipArchive(this.stream, mode, leaveOpen: true); + this.archive = null; + + this.archive = new ZipArchive(this.stream, writable ? ZipArchiveMode.Update : ZipArchiveMode.Read, leaveOpen: true); } /// @@ -178,6 +184,11 @@ namespace WixToolset.Data return entry.Open(); } + /// + /// Imports a file from disk into the output. + /// + /// Name of the stream in the output. + /// Path to file on disk to include in the output. public void ImportDataStream(string name, string path) { this.archive.CreateEntryFromFile(path, name, System.IO.Compression.CompressionLevel.Optimal); -- cgit v1.2.3-55-g6feb