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
|
// 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.BuildTasks
{
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
/// <summary>
/// Helper class for appending the command line arguments.
/// </summary>
public class WixCommandLineBuilder : CommandLineBuilder
{
internal const int Unspecified = -1;
/// <summary>
/// Append a switch to the command line if the value has been specified.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="value">Value specified by the user.</param>
public void AppendIfSpecified(string switchName, int value)
{
if (value != Unspecified)
{
this.AppendSwitchIfNotNull(switchName, value.ToString(CultureInfo.InvariantCulture));
}
}
/// <summary>
/// Append a switch to the command line if the condition is true.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="condition">Condition specified by the user.</param>
public void AppendIfTrue(string switchName, bool condition)
{
if (condition)
{
this.AppendSwitch(switchName);
}
}
/// <summary>
/// Append a switch to the command line if any values in the array have been specified.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="values">Values specified by the user.</param>
public void AppendArrayIfNotNull(string switchName, ITaskItem[] values)
{
if (values != null)
{
foreach (ITaskItem value in values)
{
this.AppendSwitchIfNotNull(switchName, value);
}
}
}
/// <summary>
/// Append a switch to the command line if any values in the array have been specified.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="values">Values specified by the user.</param>
public void AppendArrayIfNotNull(string switchName, string[] values)
{
if (values != null)
{
foreach (string value in values)
{
this.AppendSwitchIfNotNull(switchName, value);
}
}
}
/// <summary>
/// Build the extensions argument. Each extension is searched in the current folder, user defined search
/// directories (ReferencePath), HintPath, and under Wix Extension Directory in that order.
/// The order of precednce is based off of that described in Microsoft.Common.Targets's SearchPaths
/// property for the ResolveAssemblyReferences task.
/// </summary>
/// <param name="extensions">The list of extensions to include.</param>
/// <param name="wixExtensionDirectory">Evaluated default folder for Wix Extensions</param>
/// <param name="referencePaths">User defined reference directories to search in</param>
public void AppendExtensions(ITaskItem[] extensions, string wixExtensionDirectory, string [] referencePaths)
{
if (extensions == null)
{
return;
}
string resolvedPath;
foreach (ITaskItem extension in extensions)
{
string className = extension.GetMetadata("Class");
string fileName = Path.GetFileName(extension.ItemSpec);
if (Path.GetExtension(fileName).Length == 0)
{
fileName += ".dll";
}
// First try reference paths
resolvedPath = FileSearchHelperMethods.SearchFilePaths(referencePaths, fileName);
if (String.IsNullOrEmpty(resolvedPath))
{
// Now try HintPath
resolvedPath = extension.GetMetadata("HintPath");
if (!File.Exists(resolvedPath))
{
// Now try the item itself
resolvedPath = extension.ItemSpec;
if (Path.GetExtension(resolvedPath).Length == 0)
{
resolvedPath += ".dll";
}
if (!File.Exists(resolvedPath))
{
if (!String.IsNullOrEmpty(wixExtensionDirectory))
{
// Now try the extension directory
resolvedPath = Path.Combine(wixExtensionDirectory, Path.GetFileName(resolvedPath));
}
if (!File.Exists(resolvedPath))
{
// Extesnion wasn't found, just set it to the extension name passed in
resolvedPath = extension.ItemSpec;
}
}
}
}
if (String.IsNullOrEmpty(className))
{
this.AppendSwitchIfNotNull("-ext ", resolvedPath);
}
else
{
this.AppendSwitchIfNotNull("-ext ", className + ", " + resolvedPath);
}
}
}
/// <summary>
/// Append arbitrary text to the command-line if specified.
/// </summary>
/// <param name="textToAppend">Text to append.</param>
public void AppendTextIfNotNull(string textToAppend)
{
if (!String.IsNullOrEmpty(textToAppend))
{
this.AppendSpaceIfNotEmpty();
this.AppendTextUnquoted(textToAppend);
}
}
/// <summary>
/// Append arbitrary text to the command-line if specified.
/// </summary>
/// <param name="textToAppend">Text to append.</param>
public void AppendTextIfNotWhitespace(string textToAppend)
{
if (!String.IsNullOrWhiteSpace(textToAppend))
{
this.AppendSpaceIfNotEmpty();
this.AppendTextUnquoted(textToAppend);
}
}
}
}
|