|
// 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.Composition;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeLens;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.PooledObjects;
using Microsoft.CodeAnalysis.Shared.Extensions;
using LSP = Microsoft.VisualStudio.LanguageServer.Protocol;
namespace Microsoft.CodeAnalysis.LanguageServer.Handler.CodeLens;
[ExportCSharpVisualBasicStatelessLspService(typeof(CodeLensHandler)), Shared]
[Method(LSP.Methods.TextDocumentCodeLensName)]
internal sealed class CodeLensHandler : ILspServiceDocumentRequestHandler<LSP.CodeLensParams, LSP.CodeLens[]?>
{
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public CodeLensHandler()
{
}
public bool MutatesSolutionState => false;
public bool RequiresLSPSolution => true;
public LSP.TextDocumentIdentifier GetTextDocumentIdentifier(LSP.CodeLensParams request)
=> request.TextDocument;
public async Task<LSP.CodeLens[]?> HandleRequestAsync(LSP.CodeLensParams request, RequestContext context, CancellationToken cancellationToken)
{
var document = context.GetRequiredDocument();
var codeLensMemberFinder = document.GetRequiredLanguageService<ICodeLensMemberFinder>();
var members = await codeLensMemberFinder.GetCodeLensMembersAsync(document, cancellationToken).ConfigureAwait(false);
if (members.IsEmpty)
{
return Array.Empty<LSP.CodeLens>();
}
var text = await document.GetTextAsync(cancellationToken).ConfigureAwait(false);
var syntaxVersion = await document.GetSyntaxVersionAsync(cancellationToken).ConfigureAwait(false);
var codeLensCache = context.GetRequiredLspService<CodeLensCache>();
// Store the members in the resolve cache so that when we get a resolve request for a particular
// member we can re-use the syntax node and span we already computed here.
var resultId = codeLensCache.UpdateCache(new CodeLensCache.CodeLensCacheEntry(members, request.TextDocument, syntaxVersion));
// TODO - Code lenses need to be refreshed by the server when we detect solution/project wide changes.
// See https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1730462
using var _ = ArrayBuilder<LSP.CodeLens>.GetInstance(out var codeLenses);
for (var i = 0; i < members.Length; i++)
{
var member = members[i];
var range = ProtocolConversions.TextSpanToRange(member.Span, text);
var codeLens = new LSP.CodeLens
{
Range = range,
Command = null,
Data = new CodeLensResolveData(resultId, i)
};
codeLenses.Add(codeLens);
}
return codeLenses.ToArray();
}
}
|