-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathUseInModifierForReadOnlyStructCodeFixProvider.cs
More file actions
351 lines (302 loc) · 16 KB
/
UseInModifierForReadOnlyStructCodeFixProvider.cs
File metadata and controls
351 lines (302 loc) · 16 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Composition;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using ErrorProne.NET.Core;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.FindSymbols;
using Microsoft.CodeAnalysis.Text;
namespace ErrorProne.NET.StructAnalyzers
{
/// <summary>
/// A fixer for <see cref="MakeStructReadOnlyAnalyzer"/>.
/// </summary>
[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(UseInModifierForReadOnlyStructCodeFixProvider)), Shared]
public class UseInModifierForReadOnlyStructCodeFixProvider : CodeFixProvider
{
public const string Title = "Pass readonly struct with 'in'-modifier";
/// <inheritdoc />
public override async Task RegisterCodeFixesAsync(CodeFixContext context)
{
var root = await context.Document.GetSyntaxRootAsync(context.CancellationToken).ConfigureAwait(false);
var diagnostic = context.Diagnostics.First();
var diagnosticSpan = diagnostic.Location.SourceSpan;
// Find the type declaration identified by the diagnostic.
var declaration = root.FindToken(diagnosticSpan.Start).Parent.AncestorsAndSelf().OfType<ParameterSyntax>().FirstOrDefault();
// It is possible for some weird cases to not have 'ParameterSyntax'. See 'WarnIfParameterIsReadOnly' in UseInModifierAnalyzer.
if (declaration != null && !await ParameterIsUsedInNonInFriendlyManner(declaration, context.Document, context.CancellationToken).ConfigureAwait(false))
{
// Register a code action that will invoke the fix.
context.RegisterCodeFix(
CodeAction.Create(
title: Title,
createChangedSolution: c => AddInModifier(context.Document, declaration, c),
equivalenceKey: Title),
diagnostic);
}
}
/// <inheritdoc />
public override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(UseInModifierForReadOnlyStructAnalyzer.DiagnosticId);
/// <inheritdoc />
public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
private async Task<bool> ParameterIsUsedInNonInFriendlyManner(ParameterSyntax parameter, Document document, CancellationToken token)
{
if (!document.SupportsSemanticModel)
{
// Don't have a semantic model. Not sure what to do in this case, so avoid showing the code fix.
return true;
}
var semanticModel = await document.GetSemanticModelAsync(token);
var paramSymbol = semanticModel.GetDeclaredSymbol(parameter);
var references = await SymbolFinder.FindReferencesAsync(paramSymbol, document.Project.Solution, token).ConfigureAwait(false);
var syntaxRoot = await document.GetSyntaxRootAsync(token).ConfigureAwait(false);
var method = parameter.Ancestors().OfType<MethodDeclarationSyntax>().FirstOrDefault();
if (method == null)
{
// Don't have a method (could be an indexer). This is not yet supported, so avoid showing the code fix.
return true;
}
foreach (var reference in references)
{
var location = reference.Locations.FirstOrDefault();
if (location.Location != null)
{
// The reference could be easily outside of the current syntax tree.
// For instance, it may be in a partial class?
if (!syntaxRoot.FullSpan.Contains(location.Location.SourceSpan))
{
continue;
}
var node = syntaxRoot.FindNode(location.Location.SourceSpan);
if (node.Parent is ArgumentSyntax arg &&
(arg.RefKindKeyword.Kind() == SyntaxKind.OutKeyword ||
arg.RefKindKeyword.Kind() == SyntaxKind.RefKeyword))
{
// Parameter used as out/ref argument and can not be changed to 'in'.
return true;
}
foreach (var parent in node.Ancestors())
{
if (parent.Equals(method))
{
break;
}
var kind = parent.Kind();
if (kind == SyntaxKind.ParenthesizedLambdaExpression ||
kind == SyntaxKind.SimpleLambdaExpression ||
kind == SyntaxKind.AnonymousMethodExpression)
{
return true;
}
}
}
}
return false;
}
private async Task<Solution> AddInModifier(Document document, ParameterSyntax paramSyntax, CancellationToken cancellationToken)
{
var arguments = new Dictionary<DocumentId, List<TextSpan>>();
var parameters = new Dictionary<DocumentId, List<TextSpan>> { { document.Id, new List<TextSpan> { paramSyntax.Span } } };
var semanticModel = await document.GetSemanticModelAsync(cancellationToken);
var parameterSymbol = semanticModel.GetDeclaredSymbol(paramSyntax, cancellationToken);
if (parameterSymbol?.ContainingSymbol is IMethodSymbol containingMethod)
{
var parameterIndex = containingMethod.Parameters.IndexOf(parameterSymbol);
var parameterName = parameterSymbol.Name;
var callers = await SymbolFinder.FindCallersAsync(containingMethod, document.Project.Solution, cancellationToken).ConfigureAwait(false);
foreach (var caller in callers)
{
foreach (var location in caller.Locations)
{
if (!location.IsInSource)
{
continue;
}
var locationRoot = await location.SourceTree.GetRootAsync(cancellationToken).ConfigureAwait(false);
var node = locationRoot.FindNode(location.SourceSpan, getInnermostNodeForTie: true);
var invocationExpression = node.Parent as InvocationExpressionSyntax;
if (invocationExpression is null)
{
invocationExpression = (node.Parent as MemberAccessExpressionSyntax)?.Parent as InvocationExpressionSyntax;
}
if (invocationExpression is object)
{
ArgumentSyntax? argument = null;
var positionalArgument = TryGetArgumentAtPosition(invocationExpression.ArgumentList, parameterIndex);
if (positionalArgument is object && (positionalArgument.NameColon is null || positionalArgument.NameColon.Name.Identifier.Text == parameterName))
{
argument = positionalArgument;
}
else
{
foreach (var argumentSyntax in invocationExpression.ArgumentList.Arguments)
{
if (argumentSyntax?.NameColon.Name.Identifier.Text != parameterName)
{
continue;
}
argument = argumentSyntax;
break;
}
}
if (argument is null)
{
continue;
}
var documentId = document.Project.Solution.GetDocument(argument.SyntaxTree)?.Id;
if (documentId is null)
{
continue;
}
if (!arguments.TryGetValue(documentId, out var argumentSpans))
{
argumentSpans = new List<TextSpan>();
arguments[documentId] = argumentSpans;
}
argumentSpans.Add(argument.Span);
}
}
}
var implementations = await SymbolFinder.FindImplementationsAsync(containingMethod, document.Project.Solution, projects: null, cancellationToken).ConfigureAwait(false);
foreach (var implementation in implementations)
{
foreach (var location in implementation.Locations)
{
var locationRoot = await location.SourceTree.GetRootAsync(cancellationToken).ConfigureAwait(false);
var node = locationRoot.FindNode(location.SourceSpan, getInnermostNodeForTie: true);
if (node is MethodDeclarationSyntax methodDeclaration)
{
var parameterSyntax = TryGetParameterAtPosition(methodDeclaration.ParameterList, parameterIndex);
if (parameterSyntax is null)
{
continue;
}
var documentId = document.Project.Solution.GetDocument(parameterSyntax.SyntaxTree)?.Id;
if (documentId is null)
{
continue;
}
if (!parameters.TryGetValue(documentId, out var parameterSpans))
{
parameterSpans = new List<TextSpan>();
parameters[documentId] = parameterSpans;
}
parameterSpans.Add(parameterSyntax.Span);
}
}
}
var overrides = await SymbolFinder.FindOverridesAsync(containingMethod, document.Project.Solution, projects: null, cancellationToken).ConfigureAwait(false);
foreach (var @override in overrides)
{
foreach (var location in @override.Locations)
{
var locationRoot = await location.SourceTree.GetRootAsync(cancellationToken).ConfigureAwait(false);
var node = locationRoot.FindNode(location.SourceSpan, getInnermostNodeForTie: true);
if (node is MethodDeclarationSyntax methodDeclaration)
{
var parameterSyntax = TryGetParameterAtPosition(methodDeclaration.ParameterList, parameterIndex);
if (parameterSyntax is null)
{
continue;
}
var documentId = document.Project.Solution.GetDocument(methodDeclaration.SyntaxTree)?.Id;
if (documentId is null)
{
continue;
}
if (!parameters.TryGetValue(documentId, out var parameterSpans))
{
parameterSpans = new List<TextSpan>();
parameters[documentId] = parameterSpans;
}
parameterSpans.Add(parameterSyntax.Span);
}
}
}
}
var result = document.Project.Solution;
foreach (var (documentId, spans) in arguments)
{
var originalDocument = result.GetDocument(documentId);
var root = await originalDocument.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false);
var argumentsToReplace = spans.Select(span => root.FindNode(span, getInnermostNodeForTie: true)).Select(node => node.FirstAncestorOrSelf<ArgumentSyntax>());
if (!parameters.TryGetValue(documentId, out var parameterSpans))
{
parameterSpans = new List<TextSpan>();
}
var parametersToReplace = parameterSpans.Select(span => root.FindNode(span, getInnermostNodeForTie: true)).Select(node => node.FirstAncestorOrSelf<ParameterSyntax>());
var newRoot = root.ReplaceNodes(
argumentsToReplace.Cast<SyntaxNode>().Concat(parametersToReplace),
(originalNode, rewrittenNode) =>
{
if (rewrittenNode is ArgumentSyntax argument)
{
return ((ArgumentSyntax)rewrittenNode).WithRefKindKeyword(SyntaxFactory.Token(SyntaxKind.InKeyword));
}
else
{
Debug.Assert(rewrittenNode is ParameterSyntax);
var trivia = rewrittenNode.GetLeadingTrivia();
return ((ParameterSyntax)rewrittenNode)
.WithModifiers(((ParameterSyntax)rewrittenNode).Modifiers.Insert(0, SyntaxFactory.Token(SyntaxKind.InKeyword)))
.WithLeadingTrivia(trivia);
}
});
result = result.WithDocumentSyntaxRoot(documentId, newRoot, PreservationMode.PreserveValue);
}
foreach (var (documentId, spans) in parameters)
{
if (arguments.ContainsKey(documentId))
{
continue;
}
var originalDocument = result.GetDocument(documentId);
var root = await originalDocument.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false);
var parametersToReplace = spans.Select(span => root.FindNode(span, getInnermostNodeForTie: true)).Select(node => node.FirstAncestorOrSelf<ParameterSyntax>());
var newRoot = root.ReplaceNodes(
parametersToReplace,
(originalNode, rewrittenNode) =>
{
var trivia = rewrittenNode.GetLeadingTrivia();
return rewrittenNode
.WithModifiers(rewrittenNode.Modifiers.Insert(0, SyntaxFactory.Token(SyntaxKind.InKeyword)))
.WithLeadingTrivia(trivia);
});
result = result.WithDocumentSyntaxRoot(documentId, newRoot, PreservationMode.PreserveValue);
}
return result;
}
private static ParameterSyntax? TryGetParameterAtPosition(BaseParameterListSyntax? parameterList, int index)
{
if (parameterList is null)
{
return null;
}
if (parameterList.Parameters.Count < index)
{
return null;
}
return parameterList.Parameters[index];
}
private static ArgumentSyntax? TryGetArgumentAtPosition(BaseArgumentListSyntax? argumentList, int index)
{
if (argumentList is null)
{
return null;
}
if (argumentList.Arguments.Count < index)
{
return null;
}
return argumentList.Arguments[index];
}
}
}