|
// 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.ComponentModel.Composition;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Editor;
using Microsoft.CodeAnalysis.Editor.Shared.Extensions;
using Microsoft.CodeAnalysis.Editor.Shared.Tagging;
using Microsoft.CodeAnalysis.Editor.Tagging;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Shared.TestHooks;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Text.Tagging;
using Microsoft.VisualStudio.Utilities;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.EditAndContinue;
/// <summary>
/// Tagger for active statements. Active statements are only tracked for langauges that support EnC (C#, VB).
/// </summary>
[Export(typeof(ITaggerProvider))]
[TagType(typeof(ActiveStatementTag))]
[ContentType(ContentTypeNames.CSharpContentType)]
[ContentType(ContentTypeNames.VisualBasicContentType)]
[method: ImportingConstructor]
[method: Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
internal partial class ActiveStatementTaggerProvider(TaggerHost taggerHost)
: AsynchronousTaggerProvider<ITextMarkerTag>(taggerHost, FeatureAttribute.Classification)
{
protected override TaggerDelay EventChangeDelay => TaggerDelay.NearImmediate;
protected override ITaggerEventSource CreateEventSource(ITextView? textView, ITextBuffer subjectBuffer)
{
this.ThreadingContext.ThrowIfNotOnUIThread();
return TaggerEventSources.Compose(
new EventSource(subjectBuffer),
TaggerEventSources.OnTextChanged(subjectBuffer),
TaggerEventSources.OnDocumentActiveContextChanged(subjectBuffer));
}
protected override async Task ProduceTagsAsync(
TaggerContext<ITextMarkerTag> context, CancellationToken cancellationToken)
{
Contract.ThrowIfTrue(context.SpansToTag.Count != 1);
var spanToTag = context.SpansToTag.First();
var document = spanToTag.Document;
if (document == null)
{
return;
}
var activeStatementTrackingService = document.Project.Solution.Services.GetService<IActiveStatementTrackingService>();
if (activeStatementTrackingService == null)
{
return;
}
var snapshot = spanToTag.SnapshotSpan.Snapshot;
var activeStatementSpans = await activeStatementTrackingService.GetAdjustedTrackingSpansAsync(document, snapshot, cancellationToken).ConfigureAwait(false);
foreach (var activeStatementSpan in activeStatementSpans)
{
if (activeStatementSpan.IsLeaf)
{
continue;
}
var snapshotSpan = activeStatementSpan.Span.GetSpan(snapshot);
if (snapshotSpan.OverlapsWith(spanToTag.SnapshotSpan))
{
context.AddTag(new TagSpan<ITextMarkerTag>(snapshotSpan, ActiveStatementTag.Instance));
}
}
// Let the context know that this was the span we actually tried to tag.
context.SetSpansTagged([spanToTag.SnapshotSpan]);
}
protected override bool TagEquals(ITextMarkerTag tag1, ITextMarkerTag tag2)
{
Contract.ThrowIfFalse(tag1 == tag2, "ActiveStatementTag is a supposed to be a singleton");
return true;
}
}
|