1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Harvesters
{
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using WixToolset.Harvesters.Extensibility;
using IIs = Serialize.IIs;
using Wix = WixToolset.Harvesters.Serialize;
/// <summary>
/// The harvester mutator for the WiX Toolset Internet Information Services Extension.
/// </summary>
public sealed class IIsHarvesterMutator : BaseMutatorExtension
{
private ArrayList components;
private DirectoryHarvester directoryHarvester;
private Hashtable directoryPaths;
private FileHarvester fileHarvester;
private Wix.IParentElement rootElement;
private bool setUniqueIdentifiers;
private ArrayList webAddresses;
private ArrayList webDirs;
private ArrayList webDirProperties;
private ArrayList webFilters;
private ArrayList webSites;
private ArrayList webVirtualDirs;
/// <summary>
/// Instantiate a new IIsHarvesterMutator.
/// </summary>
public IIsHarvesterMutator()
{
this.components = new ArrayList();
this.directoryHarvester = new DirectoryHarvester();
this.directoryPaths = CollectionsUtil.CreateCaseInsensitiveHashtable();
this.fileHarvester = new FileHarvester();
this.webAddresses = new ArrayList();
this.webDirs = new ArrayList();
this.webDirProperties = new ArrayList();
this.webFilters = new ArrayList();
this.webSites = new ArrayList();
this.webVirtualDirs = new ArrayList();
}
/// <summary>
/// Gets the sequence of this mutator extension.
/// </summary>
/// <value>The sequence of this mutator extension.</value>
public override int Sequence
{
get { return 100; }
}
/// <summary>
/// Gets of sets the option to set unique identifiers.
/// </summary>
/// <value>The option to set unique identifiers.</value>
public bool SetUniqueIdentifiers
{
get { return this.setUniqueIdentifiers; }
set { this.setUniqueIdentifiers = value; }
}
/// <summary>
/// Mutate a WiX document.
/// </summary>
/// <param name="wix">The Wix document element.</param>
public override void Mutate(Wix.Wix wix)
{
this.components.Clear();
this.directoryPaths.Clear();
this.webAddresses.Clear();
this.webDirs.Clear();
this.webDirProperties.Clear();
this.webFilters.Clear();
this.webSites.Clear();
this.webVirtualDirs.Clear();
this.rootElement = null;
this.IndexElement(wix);
this.MutateWebAddresses();
this.MutateWebDirs();
this.MutateWebDirProperties();
this.MutateWebSites();
this.MutateWebVirtualDirs();
// this must come after the web virtual dirs in case they harvest a directory containing a web filter file
this.MutateWebFilters();
// this must come after the web site identifiers are created
this.MutateComponents();
}
/// <summary>
/// Harvest a new directory or return one that was previously harvested.
/// </summary>
/// <param name="path">The path of the directory.</param>
/// <param name="harvestChildren">The option to harvest the children of the directory.</param>
/// <returns>The harvested directory.</returns>
private Wix.Directory HarvestUniqueDirectory(string path, bool harvestChildren)
{
if (this.directoryPaths.Contains(path))
{
return (Wix.Directory)this.directoryPaths[path];
}
else
{
Wix.Directory directory = this.directoryHarvester.HarvestDirectory(path, harvestChildren);
this.rootElement.AddChild(directory);
// index this new directory and all of its children
this.IndexElement(directory);
return directory;
}
}
/// <summary>
/// Index an element.
/// </summary>
/// <param name="element">The element to index.</param>
private void IndexElement(Wix.ISchemaElement element)
{
if (element is IIs.WebAddress)
{
this.webAddresses.Add(element);
}
else if (element is IIs.WebDir)
{
this.webDirs.Add(element);
}
else if (element is IIs.WebDirProperties)
{
this.webDirProperties.Add(element);
}
else if (element is IIs.WebFilter)
{
this.webFilters.Add(element);
}
else if (element is IIs.WebSite)
{
this.webSites.Add(element);
}
else if (element is IIs.WebVirtualDir)
{
this.webVirtualDirs.Add(element);
}
else if (element is Wix.Component)
{
this.components.Add(element);
}
else if (element is Wix.Directory)
{
Wix.Directory directory = (Wix.Directory)element;
if (null != directory.FileSource)
{
this.directoryPaths.Add(directory.FileSource, directory);
}
}
else if (element is Wix.Fragment || element is Wix.Module || element is Wix.PatchCreation || element is Wix.Package)
{
this.rootElement = (Wix.IParentElement)element;
}
// index the child elements
if (element is Wix.IParentElement)
{
foreach (Wix.ISchemaElement childElement in ((Wix.IParentElement)element).Children)
{
this.IndexElement(childElement);
}
}
}
/// <summary>
/// Mutate the Component elements.
/// </summary>
private void MutateComponents()
{
if (this.setUniqueIdentifiers)
{
IdentifierGenerator identifierGenerator = new IdentifierGenerator("Component", this.Core);
// index all the existing identifiers
foreach (Wix.Component component in this.components)
{
if (null != component.Id)
{
identifierGenerator.IndexExistingIdentifier(component.Id);
}
}
// index all the web site identifiers
foreach (IIs.WebSite webSite in this.webSites)
{
if (webSite.ParentElement is Wix.Component)
{
identifierGenerator.IndexName(webSite.Id);
}
}
// create an identifier for each component based on its child web site identifier
foreach (IIs.WebSite webSite in this.webSites)
{
Wix.Component component = webSite.ParentElement as Wix.Component;
if (null != component)
{
component.Id = identifierGenerator.GetIdentifier(webSite.Id);
}
}
}
}
/// <summary>
/// Mutate the WebAddress elements.
/// </summary>
private void MutateWebAddresses()
{
if (this.setUniqueIdentifiers)
{
IdentifierGenerator identifierGenerator = new IdentifierGenerator("WebAddress", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebAddress webAddress in this.webAddresses)
{
if (null != webAddress.Id)
{
identifierGenerator.IndexExistingIdentifier(webAddress.Id);
}
else
{
identifierGenerator.IndexName(String.Concat(webAddress.IP, "_", webAddress.Port));
}
}
foreach (IIs.WebAddress webAddress in this.webAddresses)
{
if (null == webAddress.Id)
{
webAddress.Id = identifierGenerator.GetIdentifier(String.Concat(webAddress.IP, "_", webAddress.Port));
}
}
}
}
/// <summary>
/// Mutate the WebDir elements.
/// </summary>
private void MutateWebDirs()
{
if (this.setUniqueIdentifiers)
{
IdentifierGenerator identifierGenerator = new IdentifierGenerator("WebDir", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebDir webDir in this.webDirs)
{
if (null != webDir.Id)
{
identifierGenerator.IndexExistingIdentifier(webDir.Id);
}
else
{
identifierGenerator.IndexName(webDir.Path);
}
}
foreach (IIs.WebDir webDir in this.webDirs)
{
if (null == webDir.Id)
{
webDir.Id = identifierGenerator.GetIdentifier(webDir.Path);
}
}
}
}
/// <summary>
/// Mutate the WebDirProperties elements.
/// </summary>
private void MutateWebDirProperties()
{
if (this.setUniqueIdentifiers)
{
IdentifierGenerator identifierGenerator = new IdentifierGenerator("WebDirProperties", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebDirProperties webDirProperties in this.webDirProperties)
{
if (null != webDirProperties.Id)
{
identifierGenerator.IndexExistingIdentifier(webDirProperties.Id);
}
}
foreach (IIs.WebDirProperties webDirProperties in this.webDirProperties)
{
if (null == webDirProperties.Id)
{
webDirProperties.Id = identifierGenerator.GetIdentifier(String.Empty);
}
}
}
}
/// <summary>
/// Mutate the WebFilter elements.
/// </summary>
private void MutateWebFilters()
{
IdentifierGenerator identifierGenerator = null;
if (this.setUniqueIdentifiers)
{
identifierGenerator = new IdentifierGenerator("WebFilter", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebFilter webFilter in this.webFilters)
{
if (null != webFilter.Id)
{
identifierGenerator.IndexExistingIdentifier(webFilter.Id);
}
else
{
identifierGenerator.IndexName(webFilter.Name);
}
}
}
foreach (IIs.WebFilter webFilter in this.webFilters)
{
if (this.setUniqueIdentifiers && null == webFilter.Id)
{
webFilter.Id = identifierGenerator.GetIdentifier(webFilter.Name);
}
// harvest the file for this WebFilter
Wix.Directory directory = this.HarvestUniqueDirectory(Path.GetDirectoryName(webFilter.Path), false);
Wix.Component component = new Wix.Component();
directory.AddChild(component);
Wix.File file = this.fileHarvester.HarvestFile(webFilter.Path);
component.AddChild(file);
}
}
/// <summary>
/// Mutate the WebSite elements.
/// </summary>
private void MutateWebSites()
{
if (this.setUniqueIdentifiers)
{
IdentifierGenerator identifierGenerator = new IdentifierGenerator("WebSite", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebSite webSite in this.webSites)
{
if (null != webSite.Id)
{
identifierGenerator.IndexExistingIdentifier(webSite.Id);
}
else
{
identifierGenerator.IndexName(webSite.Description);
}
}
foreach (IIs.WebSite webSite in this.webSites)
{
if (null == webSite.Id)
{
webSite.Id = identifierGenerator.GetIdentifier(webSite.Description);
}
}
}
}
/// <summary>
/// Mutate the WebVirtualDir elements.
/// </summary>
private void MutateWebVirtualDirs()
{
IdentifierGenerator identifierGenerator = null;
if (this.setUniqueIdentifiers)
{
identifierGenerator = new IdentifierGenerator("WebVirtualDir", this.Core);
// index all the existing identifiers and names
foreach (IIs.WebVirtualDir webVirtualDir in this.webVirtualDirs)
{
if (null != webVirtualDir.Id)
{
identifierGenerator.IndexExistingIdentifier(webVirtualDir.Id);
}
else
{
identifierGenerator.IndexName(webVirtualDir.Alias);
}
}
}
foreach (IIs.WebVirtualDir webVirtualDir in this.webVirtualDirs)
{
if (this.setUniqueIdentifiers && null == webVirtualDir.Id)
{
webVirtualDir.Id = identifierGenerator.GetIdentifier(webVirtualDir.Alias);
}
// harvest the directory for this WebVirtualDir
this.HarvestUniqueDirectory(webVirtualDir.Directory, true);
}
}
}
}
|