-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathAvoidUsingDoubleQuotesForConstantString.cs
161 lines (147 loc) · 6.45 KB
/
AvoidUsingDoubleQuotesForConstantString.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
#if !CORECLR
using System.ComponentModel.Composition;
#endif
using System.Globalization;
using System.Management.Automation.Language;
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic;
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules
{
/// <summary>
/// AvoidUsingDoubleQuotesForConstantStrings: Checks if a string that uses double quotes contains a constant string, which could be simplified to a single quote.
/// </summary>
#if !CORECLR
[Export(typeof(IScriptRule))]
#endif
public class AvoidUsingDoubleQuotesForConstantString : ConfigurableRule
{
/// <summary>
/// Construct an object of type <seealso cref="AvoidUsingDoubleQuotesForConstantStrings"/>.
/// </summary>
public AvoidUsingDoubleQuotesForConstantString()
{
Enable = false;
}
/// <summary>
/// Analyzes the given ast to find occurences of StringConstantExpressionAst where double quotes are used
/// and could be replaced with single quotes.
/// </summary>
/// <param name="ast">AST to be analyzed. This should be non-null</param>
/// <param name="fileName">Name of file that corresponds to the input AST.</param>
/// <returns>A an enumerable type containing the violations</returns>
public override IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
{
if (ast == null)
{
throw new ArgumentNullException(nameof(ast));
}
var stringConstantExpressionAsts = ast.FindAll(testAst => testAst is StringConstantExpressionAst, searchNestedScriptBlocks: true);
foreach (StringConstantExpressionAst stringConstantExpressionAst in stringConstantExpressionAsts)
{
switch (stringConstantExpressionAst.StringConstantType)
{
/*
If an interpolated string (i.e. using double quotes) uses single quotes (or @' in case of a here-string), then do not warn.
This because one would then have to escape this single quote, which would make the string less readable.
If an interpolated string contains a backtick character, then do not warn as well.
This is because we'd have to replace the backtick in some cases like `$ and in others like `a it would not be possible at all.
Therefore to keep it simple, all interpolated strings with a backtick are being excluded.
*/
case StringConstantType.DoubleQuoted:
if (stringConstantExpressionAst.Value.Contains("'") || stringConstantExpressionAst.Extent.Text.Contains("`"))
{
break;
}
yield return GetDiagnosticRecord(stringConstantExpressionAst,
$"'{stringConstantExpressionAst.Value}'");
break;
case StringConstantType.DoubleQuotedHereString:
if (stringConstantExpressionAst.Value.Contains("@'") || stringConstantExpressionAst.Extent.Text.Contains("`"))
{
break;
}
yield return GetDiagnosticRecord(stringConstantExpressionAst,
$"@'{Environment.NewLine}{stringConstantExpressionAst.Value}{Environment.NewLine}'@");
break;
default:
break;
}
}
}
private DiagnosticRecord GetDiagnosticRecord(StringConstantExpressionAst stringConstantExpressionAst,
string suggestedCorrection)
{
return new DiagnosticRecord(
Strings.AvoidUsingDoubleQuotesForConstantStringError,
stringConstantExpressionAst.Extent,
GetName(),
GetDiagnosticSeverity(),
stringConstantExpressionAst.Extent.File,
suggestedCorrections: new[] {
new CorrectionExtent(
stringConstantExpressionAst.Extent,
suggestedCorrection,
stringConstantExpressionAst.Extent.File
)
}
);
}
/// <summary>
/// Retrieves the common name of this rule.
/// </summary>
public override string GetCommonName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.AvoidUsingDoubleQuotesForConstantStringCommonName);
}
/// <summary>
/// Retrieves the description of this rule.
/// </summary>
public override string GetDescription()
{
return string.Format(CultureInfo.CurrentCulture, Strings.AvoidUsingDoubleQuotesForConstantStringDescription);
}
/// <summary>
/// Retrieves the name of this rule.
/// </summary>
public override string GetName()
{
return string.Format(
CultureInfo.CurrentCulture,
Strings.NameSpaceFormat,
GetSourceName(),
Strings.AvoidUsingDoubleQuotesForConstantStringName);
}
/// <summary>
/// Retrieves the severity of the rule: error, warning or information.
/// </summary>
public override RuleSeverity GetSeverity()
{
return RuleSeverity.Information;
}
/// <summary>
/// Gets the severity of the returned diagnostic record: error, warning, or information.
/// </summary>
/// <returns></returns>
public DiagnosticSeverity GetDiagnosticSeverity()
{
return DiagnosticSeverity.Information;
}
/// <summary>
/// Retrieves the name of the module/assembly the rule is from.
/// </summary>
public override string GetSourceName()
{
return string.Format(CultureInfo.CurrentCulture, Strings.SourceName);
}
/// <summary>
/// Retrieves the type of the rule, Builtin, Managed or Module.
/// </summary>
public override SourceType GetSourceType()
{
return SourceType.Builtin;
}
}
}