File: ExternalAccess\UnitTesting\LegacySolutionEvents\UnitTestingLegacySolutionEventsListener.cs
Web Access
Project: ..\..\..\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features)
// 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.ExternalAccess.UnitTesting.SolutionCrawler;
using Microsoft.CodeAnalysis.Host;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.LegacySolutionEvents;
using Roslyn.Utilities;
 
namespace Microsoft.CodeAnalysis.ExternalAccess.UnitTesting.LegacySolutionEvents
{
    /// <summary>
    /// Retrieves stream of workspace events and forwards them to the dedicated solution crawler instance that exists
    /// for unit testing.
    /// </summary>
    [Export(typeof(ILegacySolutionEventsListener)), Shared]
    internal class UnitTestingLegacySolutionEventsListener : ILegacySolutionEventsListener
    {
        [ImportingConstructor]
        [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
        public UnitTestingLegacySolutionEventsListener()
        {
        }
 
        private static IUnitTestingWorkCoordinator? GetCoordinator(Solution solution)
        {
            var service = solution.Services.GetService<IUnitTestingSolutionCrawlerRegistrationService>();
            if (service == null)
                return null;
 
            return service.Register(solution);
        }
 
        public bool ShouldReportChanges(SolutionServices services)
        {
            var service = services.GetService<IUnitTestingSolutionCrawlerRegistrationService>();
            if (service == null)
                return false;
 
            return service.HasRegisteredAnalyzerProviders;
        }
 
        public ValueTask OnWorkspaceChangedAsync(WorkspaceChangeEventArgs args, CancellationToken cancellationToken)
        {
            var coordinator = GetCoordinator(args.NewSolution);
            coordinator?.OnWorkspaceChanged(args);
            return ValueTaskFactory.CompletedTask;
        }
 
#if false // Not used in unit testing crawling
        public ValueTask OnTextDocumentOpenedAsync(TextDocumentEventArgs args, CancellationToken cancellationToken)
        {
            var coordinator = GetCoordinator(args.Document.Project.Solution);
            coordinator?.OnTextDocumentOpened(args);
            return ValueTaskFactory.CompletedTask;
        }
 
        public ValueTask OnTextDocumentClosedAsync(TextDocumentEventArgs args, CancellationToken cancellationToken)
        {
            var coordinator = GetCoordinator(args.Document.Project.Solution);
            coordinator?.OnTextDocumentClosed(args);
            return ValueTaskFactory.CompletedTask;
        }
#endif
    }
}