|
// 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.Runtime.Serialization;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Storage;
namespace Microsoft.CodeAnalysis.Host
{
internal interface IWorkspaceConfigurationService : IWorkspaceService
{
WorkspaceConfigurationOptions Options { get; }
}
[ExportWorkspaceService(typeof(IWorkspaceConfigurationService)), Shared]
internal sealed class DefaultWorkspaceConfigurationService : IWorkspaceConfigurationService
{
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public DefaultWorkspaceConfigurationService()
{
}
public WorkspaceConfigurationOptions Options => WorkspaceConfigurationOptions.Default;
}
/// <summary>
/// Options that affect behavior of workspace core APIs (<see cref="Solution"/>, <see cref="Project"/>, <see
/// cref="Document"/>, <see cref="SyntaxTree"/>, etc.) to which it would be impractical to flow these options
/// explicitly. The options are instead provided by <see cref="IWorkspaceConfigurationService"/>. The remote
/// instance of this service is initialized based on the in-proc values (which themselves are loaded from global
/// options) when we establish connection from devenv to ServiceHub process. If another process connects to our
/// ServiceHub process before that the remote instance provides a predefined set of options <see
/// cref="RemoteDefault"/> that can later be updated when devenv connects to the ServiceHub process.
/// </summary>
[DataContract]
internal readonly record struct WorkspaceConfigurationOptions(
[property: DataMember(Order = 0)] StorageDatabase CacheStorage = StorageDatabase.SQLite,
[property: DataMember(Order = 1)] bool EnableOpeningSourceGeneratedFiles = false,
[property: DataMember(Order = 2)] bool DisableReferenceManagerRecoverableMetadata = false,
[property: DataMember(Order = 3)] bool DisableBackgroundCompilation = false,
[property: DataMember(Order = 4)] bool DisableSharedSyntaxTrees = false)
{
public WorkspaceConfigurationOptions()
: this(CacheStorage: StorageDatabase.SQLite)
{
}
public static readonly WorkspaceConfigurationOptions Default = new();
/// <summary>
/// These values are such that the correctness of remote services is not affected if these options are changed from defaults
/// to non-defauls while the services have already been executing.
/// </summary>
public static readonly WorkspaceConfigurationOptions RemoteDefault = new(
CacheStorage: StorageDatabase.None,
EnableOpeningSourceGeneratedFiles: false,
DisableReferenceManagerRecoverableMetadata: false,
DisableBackgroundCompilation: false,
DisableSharedSyntaxTrees: false);
}
}
|