// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Immutable; using System.Composition; using System.Threading; using System.Threading.Tasks; using Analyzer.Utilities; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Editing; namespace Microsoft.CodeQuality.Analyzers.Maintainability { /// <summary> /// CA1507: Use nameof to express symbol names /// </summary> [ExportCodeFixProvider(LanguageNames.CSharp, LanguageNames.VisualBasic), Shared] public sealed class UseNameOfInPlaceOfStringFixer : CodeFixProvider { public sealed override ImmutableArray<string> FixableDiagnosticIds { get; } = ImmutableArray.Create(UseNameofInPlaceOfStringAnalyzer.RuleId); public sealed override FixAllProvider GetFixAllProvider() { // See https://github.com/dotnet/roslyn/blob/main/docs/analyzers/FixAllProvider.md for more information on Fix All Providers' return WellKnownFixAllProviders.BatchFixer; } public sealed override async Task RegisterCodeFixesAsync(CodeFixContext context) { var root = await context.Document.GetRequiredSyntaxRootAsync(context.CancellationToken).ConfigureAwait(false); var diagnostics = context.Diagnostics; var diagnosticSpan = context.Span; // getInnerModeNodeForTie = true so we are replacing the string literal node and not the whole argument node var nodeToReplace = root.FindNode(diagnosticSpan, getInnermostNodeForTie: true); if (nodeToReplace == null) { return; } var stringText = nodeToReplace.FindToken(diagnosticSpan.Start).ValueText; context.RegisterCodeFix(CodeAction.Create( MicrosoftCodeQualityAnalyzersResources.UseNameOfInPlaceOfStringTitle, c => ReplaceWithNameOfAsync(context.Document, nodeToReplace, stringText, c), equivalenceKey: nameof(UseNameOfInPlaceOfStringFixer)), context.Diagnostics); } private static async Task<Document> ReplaceWithNameOfAsync(Document document, SyntaxNode nodeToReplace, string stringText, CancellationToken cancellationToken) { var editor = await DocumentEditor.CreateAsync(document, cancellationToken).ConfigureAwait(false); var generator = editor.Generator; var trailingTrivia = nodeToReplace.GetTrailingTrivia(); var leadingTrivia = nodeToReplace.GetLeadingTrivia(); var nameOfExpression = generator.NameOfExpression(generator.IdentifierName(stringText)) .WithTrailingTrivia(trailingTrivia) .WithLeadingTrivia(leadingTrivia); var root = await document.GetRequiredSyntaxRootAsync(cancellationToken).ConfigureAwait(false); var newRoot = root.ReplaceNode(nodeToReplace, nameOfExpression); return document.WithSyntaxRoot(newRoot); } } }