|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Immutable;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Host;
using Microsoft.CodeAnalysis.Internal.Log;
using Microsoft.CodeAnalysis.LanguageService;
using Microsoft.CodeAnalysis.Shared.Extensions;
using Microsoft.CodeAnalysis.Snippets;
using Microsoft.CodeAnalysis.Text;
namespace Microsoft.CodeAnalysis.Completion.Providers.Snippets;
internal abstract class AbstractSnippetCompletionProvider : CompletionProvider
{
internal override bool IsSnippetProvider => true;
public override async Task<CompletionChange> GetChangeAsync(Document document, CompletionItem item, char? commitKey = null, CancellationToken cancellationToken = default)
{
// This retrieves the document without the text used to invoke completion
// as well as the new cursor position after that has been removed.
var (strippedDocument, position) = await GetDocumentWithoutInvokingTextAsync(document, SnippetCompletionItem.GetInvocationPosition(item), cancellationToken).ConfigureAwait(false);
var service = strippedDocument.GetRequiredLanguageService<ISnippetService>();
var snippetIdentifier = SnippetCompletionItem.GetSnippetIdentifier(item);
var snippetProvider = service.GetSnippetProvider(snippetIdentifier);
// Logging for telemetry.
Logger.Log(FunctionId.Completion_SemanticSnippets, $"Name: {snippetIdentifier}", LogLevel.Information);
// This retrieves the generated Snippet
var snippetChange = await snippetProvider.GetSnippetChangeAsync(strippedDocument, position, cancellationToken).ConfigureAwait(false);
var strippedText = await strippedDocument.GetValueTextAsync(cancellationToken).ConfigureAwait(false);
// This introduces the text changes of the snippet into the document with the completion invoking text
var allChangesText = strippedText.WithChanges(snippetChange.TextChanges);
// This retrieves ALL text changes from the original document which includes the TextChanges from the snippet
// as well as the clean up.
var allChangesDocument = document.WithText(allChangesText);
var allTextChanges = await allChangesDocument.GetTextChangesAsync(document, cancellationToken).ConfigureAwait(false);
var change = Utilities.Collapse(allChangesText, allTextChanges.AsImmutable());
// Converts the snippet to an LSP formatted snippet string.
var lspSnippet = await RoslynLSPSnippetConverter.GenerateLSPSnippetAsync(allChangesDocument, snippetChange.FinalCaretPosition, snippetChange.Placeholders, change, item.Span.Start, cancellationToken).ConfigureAwait(false);
// If the TextChanges retrieved starts after the trigger point of the CompletionItem,
// then we need to move the bounds backwards and encapsulate the trigger point and adjust the changed text.
if (change.Span.Start > item.Span.Start)
{
var textSpan = TextSpan.FromBounds(item.Span.Start, change.Span.End);
var snippetText = allChangesText.GetSubText(textSpan).ToString();
change = new TextChange(textSpan, snippetText);
}
var props = ImmutableDictionary<string, string>.Empty
.Add(SnippetCompletionItem.LSPSnippetKey, lspSnippet);
return CompletionChange.Create(change, allTextChanges.AsImmutable(), properties: props, snippetChange.FinalCaretPosition, includesCommitCharacter: true);
}
public override async Task ProvideCompletionsAsync(CompletionContext context)
{
if (!context.CompletionOptions.ShouldShowNewSnippetExperience(context.Document))
{
return;
}
var document = context.Document;
var cancellationToken = context.CancellationToken;
var position = context.Position;
var service = document.GetLanguageService<ISnippetService>();
if (service == null)
{
return;
}
var syntaxContext = await context.GetSyntaxContextWithExistingSpeculativeModelAsync(document, cancellationToken).ConfigureAwait(false);
var snippetContext = new SnippetContext(syntaxContext);
var snippets = service.GetSnippets(snippetContext, cancellationToken);
foreach (var snippetData in snippets)
{
var completionItem = SnippetCompletionItem.Create(
displayText: snippetData.Identifier,
displayTextSuffix: "",
position: position,
snippetIdentifier: snippetData.Identifier,
glyph: Glyph.Snippet,
description: (snippetData.Description + Environment.NewLine + string.Format(FeaturesResources.Code_snippet_for_0, snippetData.Description)).ToSymbolDisplayParts(),
inlineDescription: snippetData.Description,
additionalFilterTexts: snippetData.AdditionalFilterTexts);
context.AddItem(completionItem);
}
}
internal override async Task<CompletionDescription?> GetDescriptionAsync(Document document, CompletionItem item, CompletionOptions options, SymbolDescriptionOptions displayOptions, CancellationToken cancellationToken)
{
return await Task.FromResult(CommonCompletionItem.GetDescription(item)).ConfigureAwait(false);
}
/// Gets the document without whatever text was used to invoke the completion.
/// Also gets the new position the cursor will be on.
/// Returns the original document and position if completion was invoked using Ctrl-Space.
///
/// public void Method()
/// {
/// $$ //invoked by typing Ctrl-Space
/// }
/// Example invoking when span is not empty:
/// public void Method()
/// {
/// Wr$$ //invoked by typing out the completion
/// }
private static async Task<(Document, int)> GetDocumentWithoutInvokingTextAsync(Document document, int position, CancellationToken cancellationToken)
{
var originalText = await document.GetValueTextAsync(cancellationToken).ConfigureAwait(false);
// Uses the existing CompletionService logic to find the TextSpan we want to use for the document sans invoking text
var completionService = document.GetRequiredLanguageService<CompletionService>();
var span = completionService.GetDefaultCompletionListSpan(originalText, position);
var textChange = new TextChange(span, string.Empty);
originalText = originalText.WithChanges(textChange);
// The document might not be frozen, so make sure we freeze it here to avoid triggering source generator
// which is not needed for snippet completion and will cause perf issue.
var newDocument = document.WithText(originalText).WithFrozenPartialSemantics(cancellationToken);
return (newDocument, span.Start);
}
}
|