-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathReviewUnusedParameter.cs
281 lines (251 loc) · 11.8 KB
/
ReviewUnusedParameter.cs
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation.Language;
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic;
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Extensions;
#if !CORECLR
using System.ComponentModel.Composition;
#endif
using System.Globalization;
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules
{
/// <summary>
/// ReviewUnusedParameter: Check that all declared parameters are used in the script body.
/// </summary>
#if !CORECLR
[Export(typeof(IScriptRule))]
#endif
public class ReviewUnusedParameter : IScriptRule
{
private readonly string TraverseArgName = "CommandsToTraverse";
public List<string> TraverseCommands { get; private set; }
/// <summary>
/// Configure the rule.
///
/// Sets the list of commands to traverse of this rule
/// </summary>
private void SetProperties()
{
TraverseCommands = new List<string>() { "Where-Object", "ForEach-Object" };
Dictionary<string, object> ruleArgs = Helper.Instance.GetRuleArguments(GetName());
if (ruleArgs == null)
{
return;
}
if (!ruleArgs.TryGetValue(TraverseArgName, out object obj))
{
return;
}
IEnumerable<string> commands = obj as IEnumerable<string>;
if (commands == null)
{
// try with enumerable objects
var enumerableObjs = obj as IEnumerable<object>;
if (enumerableObjs == null)
{
return;
}
foreach (var x in enumerableObjs)
{
var y = x as string;
if (y == null)
{
return;
}
else
{
TraverseCommands.Add(y);
}
}
}
else
{
TraverseCommands.AddRange(commands);
}
}
public IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
{
SetProperties();
if (ast == null)
{
throw new ArgumentNullException(Strings.NullAstErrorMessage);
}
IEnumerable<Ast> scriptBlockAsts = ast.FindAll(oneAst => oneAst is ScriptBlockAst, true);
if (scriptBlockAsts == null)
{
yield break;
}
foreach (ScriptBlockAst scriptBlockAst in scriptBlockAsts)
{
// bail out if PS bound parameter used.
if (scriptBlockAst.Find(IsBoundParametersReference, searchNestedScriptBlocks: false) != null)
{
continue;
}
// find all declared parameters
IEnumerable<Ast> parameterAsts = scriptBlockAst.FindAll(oneAst => oneAst is ParameterAst, false);
// does the scriptblock have a process block where either $PSItem or $_ is referenced
bool hasProcessBlockWithPSItemOrUnderscore = false;
if (scriptBlockAst.ProcessBlock != null)
{
IDictionary<string, int> processBlockVariableCount = GetVariableCount(scriptBlockAst.ProcessBlock);
processBlockVariableCount.TryGetValue("_", out int underscoreVariableCount);
processBlockVariableCount.TryGetValue("psitem", out int psitemVariableCount);
if (underscoreVariableCount > 0 || psitemVariableCount > 0)
{
hasProcessBlockWithPSItemOrUnderscore = true;
}
}
// list all variables
IDictionary<string, int> variableCount = GetVariableCount(scriptBlockAst);
foreach (ParameterAst parameterAst in parameterAsts)
{
// Check if the parameter has the ValueFromPipeline attribute
NamedAttributeArgumentAst valueFromPipeline = (NamedAttributeArgumentAst)parameterAst.Find(
valFromPipelineAst => valFromPipelineAst is NamedAttributeArgumentAst namedAttrib && string.Equals(
namedAttrib.ArgumentName, "ValueFromPipeline",
StringComparison.OrdinalIgnoreCase
),
false
);
// If the parameter has the ValueFromPipeline attribute and the scriptblock has a process block with
// $_ or $PSItem usage, then the parameter is considered used
if (valueFromPipeline != null && valueFromPipeline.GetValue() && hasProcessBlockWithPSItemOrUnderscore)
{
continue;
}
// there should be at least two usages of the variable since the parameter declaration counts as one
variableCount.TryGetValue(parameterAst.Name.VariablePath.UserPath, out int variableUsageCount);
if (variableUsageCount >= 2)
{
continue;
}
yield return new DiagnosticRecord(
string.Format(CultureInfo.CurrentCulture, Strings.ReviewUnusedParameterError, parameterAst.Name.VariablePath.UserPath),
parameterAst.Name.Extent,
GetName(),
DiagnosticSeverity.Warning,
fileName,
parameterAst.Name.VariablePath.UserPath
);
}
}
}
/// <summary>
/// Checks for PS bound parameter reference.
/// </summary>
/// <param name="ast">AST to be analyzed. This should be non-null</param>
/// <returns>Boolean true indicating that given AST has PS bound parameter reference, otherwise false</returns>
private static bool IsBoundParametersReference(Ast ast)
{
// $PSBoundParameters
if (ast is VariableExpressionAst variableAst
&& variableAst.VariablePath.UserPath.Equals("PSBoundParameters", StringComparison.OrdinalIgnoreCase))
{
return true;
}
if (ast is MemberExpressionAst memberAst
&& memberAst.Member is StringConstantExpressionAst memberStringAst
&& memberStringAst.Value.Equals("BoundParameters", StringComparison.OrdinalIgnoreCase))
{
// $MyInvocation.BoundParameters
if (memberAst.Expression is VariableExpressionAst veAst
&& veAst.VariablePath.UserPath.Equals("MyInvocation", StringComparison.OrdinalIgnoreCase))
{
return true;
}
// $PSCmdlet.MyInvocation.BoundParameters
if (memberAst.Expression is MemberExpressionAst meAstNested)
{
if (meAstNested.Expression is VariableExpressionAst veAstNested
&& veAstNested.VariablePath.UserPath.Equals("PSCmdlet", StringComparison.OrdinalIgnoreCase)
&& meAstNested.Member is StringConstantExpressionAst sceAstNested
&& sceAstNested.Value.Equals("MyInvocation", StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
}
return false;
}
/// <summary>
/// GetName: Retrieves the name of this rule.
/// </summary>
/// <returns>The name of this rule</returns>
public string GetName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.NameSpaceFormat, GetSourceName(), Strings.ReviewUnusedParameterName);
}
/// <summary>
/// GetCommonName: Retrieves the common name of this rule.
/// </summary>
/// <returns>The common name of this rule</returns>
public string GetCommonName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.ReviewUnusedParameterCommonName);
}
/// <summary>
/// GetDescription: Retrieves the description of this rule.
/// </summary>
/// <returns>The description of this rule</returns>
public string GetDescription()
{
return string.Format(CultureInfo.CurrentCulture, Strings.ReviewUnusedParameterDescription);
}
/// <summary>
/// GetSourceType: Retrieves the type of the rule, builtin, managed or module.
/// </summary>
public SourceType GetSourceType()
{
return SourceType.Builtin;
}
/// <summary>
/// GetSeverity: Retrieves the severity of the rule: error, warning of information.
/// </summary>
/// <returns></returns>
public RuleSeverity GetSeverity()
{
return RuleSeverity.Warning;
}
/// <summary>
/// GetSourceName: Retrieves the module/assembly name the rule is from.
/// </summary>
public string GetSourceName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.SourceName);
}
/// <summary>
/// Returns a dictionary including all variables in the scriptblock and their count
/// </summary>
/// <param name="ast">The scriptblock ast to scan</param>
/// <param name="data">Previously generated data. New findings are added to any existing dictionary if present</param>
/// <returns>a dictionary including all variables in the scriptblock and their count</returns>
IDictionary<string, int> GetVariableCount(Ast ast, Dictionary<string, int> data = null)
{
Dictionary<string, int> content = data;
if (null == data)
content = new Dictionary<string, int>(StringComparer.OrdinalIgnoreCase);
IDictionary<string, int> result = ast.FindAll(oneAst => oneAst is VariableExpressionAst, false)
.Select(variableExpressionAst => ((VariableExpressionAst)variableExpressionAst).VariablePath.UserPath)
.GroupBy(variableName => variableName, StringComparer.OrdinalIgnoreCase)
.ToDictionary(variableName => variableName.Key, variableName => variableName.Count(), StringComparer.OrdinalIgnoreCase);
foreach (string key in result.Keys)
{
if (content.ContainsKey(key))
content[key] = content[key] + result[key];
else
content[key] = result[key];
}
IEnumerable<Ast> foundScriptBlocks = ast.FindAll(oneAst => oneAst is ScriptBlockExpressionAst, false)
.Where(oneAst => oneAst?.Parent is CommandAst && ((CommandAst)oneAst.Parent).CommandElements[0] is StringConstantExpressionAst && TraverseCommands.Contains(((StringConstantExpressionAst)((CommandAst)oneAst.Parent).CommandElements[0]).Value, StringComparer.OrdinalIgnoreCase))
.Select(oneAst => ((ScriptBlockExpressionAst)oneAst).ScriptBlock);
foreach (Ast astItem in foundScriptBlocks)
if (astItem != ast)
GetVariableCount((ScriptBlockAst)astItem, content);
return content;
}
}
}