forked from PowerShell/PSScriptAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAvoidDefaultValueForMandatoryParameter.cs
More file actions
151 lines (137 loc) · 6.27 KB
/
AvoidDefaultValueForMandatoryParameter.cs
File metadata and controls
151 lines (137 loc) · 6.27 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
// 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;
#if !CORECLR
using System.ComponentModel.Composition;
#endif
using System.Globalization;
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic;
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules
{
/// <summary>
/// AvoidDefaultValueForMandatoryParameter: Check if a mandatory parameter does not have a default value.
/// </summary>
#if !CORECLR
[Export(typeof(IScriptRule))]
#endif
public class AvoidDefaultValueForMandatoryParameter : IScriptRule
{
/// <summary>
/// AnalyzeScript: Check if a mandatory parameter has a default value.
/// </summary>
public IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
{
if (ast == null) throw new ArgumentNullException(Strings.NullAstErrorMessage);
// Find all ParameterAst which are children of a ParamBlockAst. This
// doesn't pick up where they appear as children of a
// FunctionDefinitionAst. i.e.
//
// function foo ($a,$b){} -> $a and $b are `ParameterAst`
//
// Include only parameters which have a default value (as without
// one this rule would never alert)
// Include only parameters where ALL parameter attributes have the
// mandatory named argument set to true (implicitly or explicitly)
var mandatoryParametersWithDefaultValues =
ast.FindAll(testAst => testAst is ParamBlockAst, true)
.Cast<ParamBlockAst>()
.Where(pb => pb.Parameters?.Count > 0)
.SelectMany(pb => pb.Parameters)
.Where(paramAst =>
paramAst.DefaultValue != null &&
HasMandatoryInAllParameterAttributes(paramAst)
);
// Report diagnostics for each parameter that violates the rule
foreach (var parameter in mandatoryParametersWithDefaultValues)
{
yield return new DiagnosticRecord(
string.Format(
CultureInfo.CurrentCulture,
Strings.AvoidDefaultValueForMandatoryParameterError,
parameter.Name.VariablePath.UserPath
),
parameter.Name.Extent,
GetName(),
DiagnosticSeverity.Warning,
fileName,
parameter.Name.VariablePath.UserPath
);
}
}
/// <summary>
/// Determines if a parameter is mandatory in all of its Parameter attributes.
/// A parameter may have multiple [Parameter] attributes for different parameter sets.
/// This method returns true only if ALL [Parameter] attributes have Mandatory=true.
/// </summary>
/// <param name="paramAst">The parameter AST to examine</param>
/// <param name="comparer">String comparer for case-insensitive attribute name matching</param>
/// <returns>
/// True if the parameter has at least one [Parameter] attribute and ALL of them
/// have the Mandatory named argument set to true (explicitly or implicitly).
/// False if the parameter has no [Parameter] attributes or if any [Parameter]
/// attribute does not have Mandatory=true.
/// </returns>
private static bool HasMandatoryInAllParameterAttributes(ParameterAst paramAst)
{
var parameterAttributes = paramAst.Attributes.OfType<AttributeAst>()
.Where(attr => string.Equals(attr.TypeName?.Name, "parameter", StringComparison.OrdinalIgnoreCase));
return parameterAttributes.Any() &&
parameterAttributes.All(attr =>
attr.NamedArguments.OfType<NamedAttributeArgumentAst>()
.Any(namedArg =>
string.Equals(namedArg.ArgumentName, "mandatory", StringComparison.OrdinalIgnoreCase) &&
Helper.Instance.GetNamedArgumentAttributeValue(namedArg)
)
);
}
/// <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.AvoidDefaultValueForMandatoryParameterName);
}
/// <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.AvoidDefaultValueForMandatoryParameterCommonName);
}
/// <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.AvoidDefaultValueForMandatoryParameterDescription);
}
/// <summary>
/// Method: 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>
/// Method: Retrieves the module/assembly name the rule is from.
/// </summary>
public string GetSourceName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.SourceName);
}
}
}