-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathUseCorrectCasing.cs
More file actions
278 lines (248 loc) · 11.9 KB
/
UseCorrectCasing.cs
File metadata and controls
278 lines (248 loc) · 11.9 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
273
274
275
276
277
278
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Management.Automation.Language;
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic;
using System.Management.Automation;
using System.Linq;
#if !CORECLR
using System.ComponentModel.Composition;
#endif
using System.Globalization;
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules
{
/// <summary>
/// UseCorrectCasing: Check if cmdlet is cased correctly.
/// </summary>
#if !CORECLR
[Export(typeof(IScriptRule))]
#endif
public class UseCorrectCasing : ConfigurableRule
{
/// <summary>If true, require the case of all operators to be lowercase.</summary>
[ConfigurableRuleProperty(defaultValue: true)]
public bool CheckOperator { get; set; }
/// <summary>If true, require the case of all keywords to be lowercase.</summary>
[ConfigurableRuleProperty(defaultValue: true)]
public bool CheckKeyword { get; set; }
/// <summary>If true, require the case of all commands to match their actual casing.</summary>
[ConfigurableRuleProperty(defaultValue: true)]
public bool CheckCommands { get; set; }
private TokenFlags operators = TokenFlags.BinaryOperator | TokenFlags.UnaryOperator;
/// <summary>
/// AnalyzeScript: Analyze the script to check if cmdlet alias is used.
/// </summary>
public override IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
{
if (ast is null) throw new ArgumentNullException(Strings.NullAstErrorMessage);
if (CheckOperator || CheckKeyword)
{
// Iterate tokens to look for the keywords and operators
for (int i = 0; i < Helper.Instance.Tokens.Length; i++)
{
Token token = Helper.Instance.Tokens[i];
if (CheckKeyword && ((token.TokenFlags & TokenFlags.Keyword) != 0))
{
string correctCase = token.Text.ToLowerInvariant();
if (!token.Text.Equals(correctCase, StringComparison.Ordinal))
{
yield return GetDiagnosticRecord(token, fileName, correctCase, Strings.UseCorrectCasingKeywordError);
}
continue;
}
if (CheckOperator && ((token.TokenFlags & operators) != 0))
{
string correctCase = token.Text.ToLowerInvariant();
if (!token.Text.Equals(correctCase, StringComparison.Ordinal))
{
yield return GetDiagnosticRecord(token, fileName, correctCase, Strings.UseCorrectCasingOperatorError);
}
}
}
}
if (CheckCommands)
{
// Iterate command ASTs for command and parameter names
IEnumerable<Ast> commandAsts = ast.FindAll(testAst => testAst is CommandAst, true);
// Iterates all CommandAsts and check the command name.
foreach (CommandAst commandAst in commandAsts)
{
string commandName = commandAst.GetCommandName();
// Handles the exception caused by commands like, {& $PLINK $args 2> $TempErrorFile}.
// You can also review the remark section in following document,
// MSDN: CommandAst.GetCommandName Method
if (commandName == null)
{
continue;
}
var commandInfo = Helper.Instance.GetCommandInfo(commandName);
if (commandInfo == null || commandInfo.CommandType == CommandTypes.ExternalScript || commandInfo.CommandType == CommandTypes.Application)
{
continue;
}
var shortName = commandInfo.Name;
var fullyqualifiedName = $"{commandInfo.ModuleName}\\{shortName}";
var isFullyQualified = commandName.Equals(fullyqualifiedName, StringComparison.OrdinalIgnoreCase);
var correctlyCasedCommandName = isFullyQualified ? fullyqualifiedName : shortName;
if (!commandName.Equals(correctlyCasedCommandName, StringComparison.Ordinal))
{
yield return GetDiagnosticRecord(commandAst, fileName, correctlyCasedCommandName, Strings.UseCorrectCasingError);
}
var commandParameterAsts = commandAst.FindAll(
testAst => testAst is CommandParameterAst, true).Cast<CommandParameterAst>();
Dictionary<string, ParameterMetadata> availableParameters;
try
{
availableParameters = commandInfo.Parameters;
}
// It's a known issue that objects from PowerShell can have a runspace affinity,
// therefore if that happens, we query a fresh object instead of using the cache.
// https://github.com/PowerShell/PowerShell/issues/4003
catch (InvalidOperationException)
{
commandInfo = Helper.Instance.GetCommandInfo(commandName, bypassCache: true);
availableParameters = commandInfo.Parameters;
}
foreach (var commandParameterAst in commandParameterAsts)
{
var parameterName = commandParameterAst.ParameterName;
if (availableParameters.TryGetValue(parameterName, out ParameterMetadata parameterMetaData))
{
var correctlyCasedParameterName = parameterMetaData.Name;
if (!parameterName.Equals(correctlyCasedParameterName, StringComparison.Ordinal))
{
yield return GetDiagnosticRecord(commandParameterAst, fileName, correctlyCasedParameterName, Strings.UseCorrectCasingError);
}
}
}
}
}
}
/// <summary>
/// For a command like "gci -path c:", returns the extent of "gci" in the command
/// </summary>
private IScriptExtent GetCommandExtent(CommandAst commandAst)
{
var cmdName = commandAst.GetCommandName();
foreach (var cmdElement in commandAst.CommandElements)
{
var stringConstExpressinAst = cmdElement as StringConstantExpressionAst;
if (stringConstExpressinAst != null)
{
if (stringConstExpressinAst.Value.Equals(cmdName))
{
return stringConstExpressinAst.Extent;
}
}
}
return commandAst.Extent;
}
private IEnumerable<CorrectionExtent> GetCorrectionExtent(Ast ast, IScriptExtent extent, string correctlyCaseName)
{
var correction = new CorrectionExtent(
extent.StartLineNumber,
extent.EndLineNumber,
// For parameters, add +1 because of the dash before the parameter name
(ast is CommandParameterAst ? extent.StartColumnNumber + 1 : extent.StartColumnNumber),
// and do not use EndColumnNumber property, because sometimes it's all of: -ParameterName:$ParameterValue
(ast is CommandParameterAst ? extent.StartColumnNumber + 1 + ((CommandParameterAst)ast).ParameterName.Length : extent.EndColumnNumber),
correctlyCaseName,
extent.File,
GetDescription());
yield return correction;
}
private DiagnosticRecord GetDiagnosticRecord(Token token, string fileName, string correction, string message)
{
var extents = new[]
{
new CorrectionExtent(
token.Extent.StartLineNumber,
token.Extent.EndLineNumber,
token.Extent.StartColumnNumber,
token.Extent.EndColumnNumber,
correction,
token.Extent.File,
GetDescription())
};
return new DiagnosticRecord(
string.Format(CultureInfo.CurrentCulture, message, token.Text, correction),
token.Extent,
GetName(),
DiagnosticSeverity.Information,
fileName,
correction, // return the keyword case as the id, so you can turn this off for specific keywords...
suggestedCorrections: extents);
}
private DiagnosticRecord GetDiagnosticRecord(Ast ast, string fileName, string correction, string message)
{
var extent = ast is CommandAst ? GetCommandExtent((CommandAst)ast) : ast.Extent;
return new DiagnosticRecord(
string.Format(CultureInfo.CurrentCulture, message, extent.Text, correction),
extent,
GetName(),
DiagnosticSeverity.Information,
fileName,
correction,
suggestedCorrections: GetCorrectionExtent(ast, extent, correction));
}
private DiagnosticRecord GetDiagnosticRecord(CommandParameterAst ast, string fileName, string correction, string message)
{
var extent = ast.Extent;
return new DiagnosticRecord(
string.Format(CultureInfo.CurrentCulture, message, extent.Text, correction),
extent,
GetName(),
DiagnosticSeverity.Information,
fileName,
correction,
suggestedCorrections: GetCorrectionExtent(ast, extent, correction));
}
/// <summary>
/// GetName: Retrieves the name of this rule.
/// </summary>
/// <returns>The name of this rule</returns>
public override string GetName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.NameSpaceFormat, GetSourceName(), Strings.UseCorrectCasingName);
}
/// <summary>
/// GetCommonName: Retrieves the common name of this rule.
/// </summary>
/// <returns>The common name of this rule</returns>
public override string GetCommonName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.UseCorrectCasingCommonName);
}
/// <summary>
/// GetDescription: Retrieves the description of this rule.
/// </summary>
/// <returns>The description of this rule</returns>
public override string GetDescription()
{
return string.Format(CultureInfo.CurrentCulture, Strings.UseCorrectCasingDescription);
}
/// <summary>
/// GetSourceType: Retrieves the type of the rule, Builtin, Managed or Module.
/// </summary>
public override SourceType GetSourceType()
{
return SourceType.Builtin;
}
/// <summary>
/// GetSeverity: Retrieves the severity of the rule: error, warning of information.
/// </summary>
/// <returns></returns>
public override RuleSeverity GetSeverity()
{
return RuleSeverity.Information;
}
/// <summary>
/// GetSourceName: Retrieves the name of the module/assembly the rule is from.
/// </summary>
public override string GetSourceName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.SourceName);
}
}
}