From cc997ec641d4634d2f3c6086a481fc8295e34b46 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 1 Oct 2017 14:17:53 -0700 Subject: Simplify Library to only be a data container and add as output type The actual of the creation functionality for Libraries will move to the Librarian. --- src/WixToolset.Data/Library.cs | 76 ++++++--------------------------------- src/WixToolset.Data/OutputType.cs | 3 ++ 2 files changed, 13 insertions(+), 66 deletions(-) diff --git a/src/WixToolset.Data/Library.cs b/src/WixToolset.Data/Library.cs index bb04d216..d82e64e0 100644 --- a/src/WixToolset.Data/Library.cs +++ b/src/WixToolset.Data/Library.cs @@ -5,7 +5,6 @@ namespace WixToolset.Data using System; using System.Collections.Generic; using System.IO; - using System.Linq; using System.Xml; /// @@ -17,6 +16,7 @@ namespace WixToolset.Data private static readonly Version CurrentVersion = new Version("4.0.0.0"); private string id; + private List embedFilePaths; private Dictionary localizations; private List
sections; @@ -25,6 +25,7 @@ namespace WixToolset.Data ///
private Library() { + this.embedFilePaths = new List(); this.localizations = new Dictionary(); this.sections = new List
(); } @@ -33,12 +34,14 @@ namespace WixToolset.Data /// Instantiate a new library populated with sections. /// /// Sections to add to the library. - public Library(IEnumerable
sections) + /// + public Library(IEnumerable
sections, IDictionary localizationsByCulture, IEnumerable embedFilePaths) { - this.localizations = new Dictionary(); + this.id = Convert.ToBase64String(Guid.NewGuid().ToByteArray()).TrimEnd('=').Replace('+', '.').Replace('/', '_'); + this.embedFilePaths = new List(embedFilePaths); + this.localizations = new Dictionary(localizationsByCulture); this.sections = new List
(sections); - this.id = Convert.ToBase64String(Guid.NewGuid().ToByteArray()).TrimEnd('=').Replace('+', '.').Replace('/', '_'); foreach (Section section in this.sections) { section.LibraryId = this.id; @@ -49,24 +52,7 @@ namespace WixToolset.Data /// Get the sections contained in this library. /// /// Sections contained in this library. - public IEnumerable
Sections { get { return this.sections; } } - - /// - /// Add a localization file to this library. - /// - /// The localization file to add. - public void AddLocalization(Localization localization) - { - Localization existingCulture; - if (this.localizations.TryGetValue(localization.Culture, out existingCulture)) - { - existingCulture.Merge(localization); - } - else - { - this.localizations.Add(localization.Culture, localization); - } - } + public IEnumerable
Sections => this.sections; /// /// Gets localization files from this library that match the cultures passed in, in the order of the array of cultures. @@ -77,8 +63,7 @@ namespace WixToolset.Data { foreach (string culture in cultures ?? new string[0]) { - Localization localization; - if (this.localizations.TryGetValue(culture, out localization)) + if (this.localizations.TryGetValue(culture, out var localization)) { yield return localization; } @@ -137,49 +122,8 @@ namespace WixToolset.Data /// /// Path to save library file to on disk. /// The WiX path resolver. - public void Save(string path, ILibraryBinaryFileResolver resolver) + public void Save(string path) { - List embedFilePaths = new List(); - - // Resolve paths to files that are to be embedded in the library. - if (null != resolver) - { - foreach (Table table in this.sections.SelectMany(s => s.Tables)) - { - foreach (Row row in table.Rows) - { - foreach (ObjectField objectField in row.Fields.Where(f => f is ObjectField)) - { - if (null != objectField.Data) - { - string file = resolver.Resolve(row.SourceLineNumbers, table.Name, (string)objectField.Data); - if (!String.IsNullOrEmpty(file)) - { - // File was successfully resolved so track the embedded index as the embedded file index. - objectField.EmbeddedFileIndex = embedFilePaths.Count; - embedFilePaths.Add(file); - } - else - { - Messaging.Instance.OnMessage(WixDataErrors.FileNotFound(row.SourceLineNumbers, (string)objectField.Data, table.Name)); - } - } - else // clear out embedded file id in case there was one there before. - { - objectField.EmbeddedFileIndex = null; - } - } - } - } - } - - // Do not save the library if errors were found while resolving object paths. - if (Messaging.Instance.EncounteredError) - { - return; - } - - // Ensure the location to output the library exists and write it out. Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(path))); using (FileStream stream = File.Create(path)) diff --git a/src/WixToolset.Data/OutputType.cs b/src/WixToolset.Data/OutputType.cs index 74381737..67c56520 100644 --- a/src/WixToolset.Data/OutputType.cs +++ b/src/WixToolset.Data/OutputType.cs @@ -13,6 +13,9 @@ namespace WixToolset.Data /// Bundle output type. Bundle, + /// Library output type. + Library, + /// Module output type. Module, -- cgit v1.2.3-55-g6feb