|
// 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.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Options;
using IAsyncServiceProvider = Microsoft.VisualStudio.Shell.IAsyncServiceProvider;
using SAsyncServiceProvider = Microsoft.VisualStudio.Shell.Interop.SAsyncServiceProvider;
namespace Microsoft.VisualStudio.LanguageServices.Options
{
[Export(typeof(IOptionPersisterProvider))]
internal sealed class PackageSettingsPersisterProvider : IOptionPersisterProvider
{
private readonly IThreadingContext _threadingContext;
private readonly IAsyncServiceProvider _serviceProvider;
private readonly IGlobalOptionService _optionService;
private PackageSettingsPersister? _lazyPersister;
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public PackageSettingsPersisterProvider(
IThreadingContext threadingContext,
[Import(typeof(SAsyncServiceProvider))] IAsyncServiceProvider serviceProvider,
IGlobalOptionService optionService)
{
_threadingContext = threadingContext;
_serviceProvider = serviceProvider;
_optionService = optionService;
}
public ValueTask<IOptionPersister> GetOrCreatePersisterAsync(CancellationToken cancellationToken)
{
_lazyPersister ??= new PackageSettingsPersister(_threadingContext, _serviceProvider, _optionService);
return new ValueTask<IOptionPersister>(_lazyPersister);
}
}
}
|