-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathSyntaxItem.cs
More file actions
272 lines (239 loc) · 8.77 KB
/
SyntaxItem.cs
File metadata and controls
272 lines (239 loc) · 8.77 KB
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Microsoft.PowerShell.PlatyPS.Model
{
/// <summary>
/// Class to represent the properties of a syntax item in PowerShell help.
/// </summary>
public class SyntaxItem : IEquatable<SyntaxItem>
{
public string CommandName { get; }
public string ParameterSetName { get; }
public bool HasCmdletBinding { get; set; }
public List<SyntaxParameter> SyntaxParameters = new();
public bool IsDefaultParameterSet { get; }
public SyntaxItem(string commandName, string parameterSetName, bool isDefaultParameterSet)
{
CommandName = commandName;
ParameterSetName = parameterSetName;
IsDefaultParameterSet = isDefaultParameterSet;
}
/// <summary>
/// Create a copy of a syntax item.
/// </summary>
/// <param name="syntaxItem">The syntax item to copy.</param>
public SyntaxItem(SyntaxItem syntaxItem)
{
CommandName = syntaxItem.CommandName;
ParameterSetName = syntaxItem.ParameterSetName;
IsDefaultParameterSet = syntaxItem.IsDefaultParameterSet;
SyntaxParameters = new List<SyntaxParameter>(syntaxItem.SyntaxParameters);
HasCmdletBinding = syntaxItem.HasCmdletBinding;
}
/// <summary>
/// This process takes our syntax parameters and sorts them like get-command does
/// </summary>
public void SortParameters()
{
List<SyntaxParameter> sortedList = new();
List<SyntaxParameter> positionList = new();
List<SyntaxParameter> mandatoryList = new();
List<SyntaxParameter> namedList = new();
foreach(var parameter in SyntaxParameters)
{
if (string.Compare(parameter.Position, "named") != 0)
{
positionList.Add(parameter);
}
else if (parameter.IsMandatory)
{
mandatoryList.Add(parameter);
}
else
{
namedList.Add(parameter);
}
}
if (positionList.Count > 0)
{
sortedList.AddRange(positionList.OrderBy(p => int.TryParse(p.Position, out var pos) ? pos : int.MaxValue));
}
if (mandatoryList.Count > 0)
{
sortedList.AddRange(mandatoryList);
}
if (namedList.Count > 0)
{
sortedList.AddRange(namedList);
}
SyntaxParameters = sortedList;
}
private string GetFormattedSyntaxParameter(string paramName, string paramTypeName, bool isPositional, bool isRequired)
{
bool isSwitchParam = string.Equals(paramTypeName, "SwitchParameter", StringComparison.OrdinalIgnoreCase);
string paramType = isSwitchParam ? string.Empty : paramTypeName;
bool requiredPositionalSwitch = isRequired && isPositional && isSwitchParam;
bool requiredPositional = isRequired && isPositional;
bool requiredSwitch = isRequired && isSwitchParam;
bool optionalSwitch = !isRequired && isSwitchParam;
if (requiredPositionalSwitch)
{
return string.Format(Constants.RequiredSwitchParamTemplate, paramName, paramType);
}
else if (requiredPositional)
{
return string.Format(Constants.RequiredPositionalParamTemplate, paramName, paramType);
}
else if (requiredSwitch)
{
return string.Format(Constants.RequiredSwitchParamTemplate, paramName, paramType);
}
else if (isRequired)
{
return string.Format(Constants.RequiredParamTemplate, paramName, paramType);
}
else if (optionalSwitch)
{
return string.Format(Constants.OptionalSwitchParamTemplate, paramName, paramType);
}
else if (isPositional)
{
return string.Format(Constants.OptionalPositionalParamTemplate, paramName, paramType);
}
else
{
return string.Format(Constants.OptionalParamTemplate, paramName, paramType);
}
}
/// <summary>
/// This emits the command and parameters as if they were returned by Get-Command -syntax
/// </summary>
/// <returns></returns>
public string ToStringWithWrap()
{
SortParameters();
StringBuilder sb = Constants.StringBuilderPool.Get();
StringBuilder currentLine = Constants.StringBuilderPool.Get();
currentLine.Append(CommandName);
foreach(var parameter in SyntaxParameters)
{
var paramAndType = parameter.ToString();
if (currentLine.Length + paramAndType.Length + 1 > 100)
{
sb.Append(currentLine.ToString());
sb.AppendLine();
currentLine.Clear();
}
currentLine.Append($" {paramAndType}");
}
sb.Append(currentLine.ToString());
if (HasCmdletBinding)
{
if (currentLine.Length + 21 > 100)
{
sb.AppendLine();
}
sb.Append(" [<CommonParameters>]");
}
try
{
return sb.ToString();
}
finally
{
Constants.StringBuilderPool.Return(sb);
}
}
public string ToSyntaxString(string fmt)
{
StringBuilder sb = Constants.StringBuilderPool.Get();
try
{
sb.AppendFormat(fmt, ParameterSetName);
sb.AppendLine();
sb.AppendLine();
sb.AppendLine(Constants.CodeBlock);
sb.AppendLine(ToStringWithWrap());
sb.AppendLine(Constants.CodeBlock);
return sb.ToString();
}
finally
{
Constants.StringBuilderPool.Return(sb);
}
}
public override string ToString()
{
SortParameters();
StringBuilder sb = Constants.StringBuilderPool.Get();
try
{
sb.Append(CommandName);
foreach(var parameter in SyntaxParameters)
{
var paramAndType = parameter.ToString();
sb.Append($" {paramAndType}");
}
if (HasCmdletBinding)
{
sb.Append($" {Constants.SyntaxCommonParameters}");
}
return sb.ToString();
}
finally
{
Constants.StringBuilderPool.Return(sb);
}
}
public bool Equals(SyntaxItem other)
{
if (other is null)
{
return false;
}
return (
string.Compare(CommandName, other.CommandName, StringComparison.CurrentCulture) == 0 &&
string.Compare(ParameterSetName, other.ParameterSetName, StringComparison.CurrentCulture) == 0 &&
IsDefaultParameterSet == other.IsDefaultParameterSet &&
SyntaxParameters.Count == other.SyntaxParameters.Count &&
SyntaxParameters.SequenceEqual<SyntaxParameter>(other.SyntaxParameters)
);
}
public override bool Equals(object other)
{
if (other is null)
{
return false;
}
if (other is SyntaxItem syntaxItem2)
{
return Equals(syntaxItem2);
}
return false;
}
public override int GetHashCode()
{
return (CommandName, ParameterSetName, IsDefaultParameterSet).GetHashCode();
}
public static bool operator ==(SyntaxItem syntaxItem1, SyntaxItem syntaxItem2)
{
if (syntaxItem1 is not null && syntaxItem2 is not null)
{
return syntaxItem1.Equals(syntaxItem2);
}
return false;
}
public static bool operator !=(SyntaxItem syntaxItem1, SyntaxItem syntaxItem2)
{
if (syntaxItem1 is not null && syntaxItem2 is not null)
{
return ! syntaxItem1.Equals(syntaxItem2);
}
return false;
}
}
}