File: InlineDiagnostics\InlineDiagnosticsAdornmentManagerProvider.cs
Web Access
Project: src\src\EditorFeatures\Core.Wpf\Microsoft.CodeAnalysis.EditorFeatures.Wpf_a0rtafw3_wpftmp.csproj (Microsoft.CodeAnalysis.EditorFeatures.Wpf)
// 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 Microsoft.CodeAnalysis.Editor.Implementation.Adornments;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Options;
using Microsoft.CodeAnalysis.Shared.TestHooks;
using Microsoft.VisualStudio.Text.Classification;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Text.Tagging;
using Microsoft.VisualStudio.Utilities;
 
namespace Microsoft.CodeAnalysis.Editor.InlineDiagnostics;
 
[Export(typeof(IWpfTextViewCreationListener))]
[ContentType(ContentTypeNames.RoslynContentType)]
[TextViewRole(PredefinedTextViewRoles.Document)]
internal sealed class InlineDiagnosticsAdornmentManagerProvider : AbstractAdornmentManagerProvider<InlineDiagnosticsTag>
{
    private const string LayerName = "RoslynInlineDiagnostics";
    private readonly IClassificationFormatMapService _classificationFormatMapService;
    private readonly IClassificationTypeRegistryService _classificationTypeRegistryService;
 
    [Export]
    [Name(LayerName)]
    [ContentType(ContentTypeNames.RoslynContentType)]
    [Order(After = PredefinedAdornmentLayers.Selection, Before = PredefinedAdornmentLayers.Squiggle)]
    internal readonly AdornmentLayerDefinition InlineDiagnosticsLayer;
 
    [ImportingConstructor]
    [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
    public InlineDiagnosticsAdornmentManagerProvider(
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
        IThreadingContext threadingContext,
        IViewTagAggregatorFactoryService tagAggregatorFactoryService,
        IClassificationFormatMapService classificationFormatMapService,
        IClassificationTypeRegistryService classificationTypeRegistryService,
        IGlobalOptionService globalOptions,
        IAsynchronousOperationListenerProvider listenerProvider)
        : base(threadingContext, tagAggregatorFactoryService, globalOptions, listenerProvider)
    {
        _classificationFormatMapService = classificationFormatMapService;
        _classificationTypeRegistryService = classificationTypeRegistryService;
    }
 
    protected override string FeatureAttributeName => FeatureAttribute.InlineDiagnostics;
 
    protected override string AdornmentLayerName => LayerName;
 
    protected override void CreateAdornmentManager(IWpfTextView textView)
    {
        // the manager keeps itself alive by listening to text view events.
        _ = new InlineDiagnosticsAdornmentManager(
            ThreadingContext, textView, TagAggregatorFactoryService, AsyncListener,
            AdornmentLayerName, _classificationFormatMapService, _classificationTypeRegistryService, GlobalOptions);
    }
}