Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /ExperimentalFeature /EnableDisableExperimentalFeatureCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Globalization; | |
| using System.Linq; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Configuration; | |
| using System.Management.Automation.Internal; | |
| using System.Management.Automation.Language; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Base class for Enable/Disable-ExperimentalFeature cmdlet. | |
| /// </summary> | |
| public class EnableDisableExperimentalFeatureCommandBase : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Gets or sets the feature names. | |
| /// </summary> | |
| [] | |
| [] | |
| public string[] Name { get; set; } | |
| /// <summary> | |
| /// Gets or sets the scope of persistence of updating the PowerShell configuration json. | |
| /// </summary> | |
| [] | |
| public ConfigScope Scope { get; set; } = ConfigScope.CurrentUser; | |
| /// <summary> | |
| /// EndProcessing method. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| WriteWarning(ExperimentalFeatureStrings.ExperimentalFeaturePending); | |
| } | |
| } | |
| /// <summary> | |
| /// Implements Enable-ExperimentalFeature cmdlet. | |
| /// </summary> | |
| [] | |
| public class EnableExperimentalFeatureCommand : EnableDisableExperimentalFeatureCommandBase | |
| { | |
| /// <summary> | |
| /// ProcessRecord method of this cmdlet. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| ExperimentalFeatureConfigHelper.UpdateConfig(this, Name, Scope, enable: true); | |
| } | |
| } | |
| /// <summary> | |
| /// Implements Enable-ExperimentalFeature cmdlet. | |
| /// </summary> | |
| [] | |
| public class DisableExperimentalFeatureCommand : EnableDisableExperimentalFeatureCommandBase | |
| { | |
| /// <summary> | |
| /// ProcessRecord method of this cmdlet. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| ExperimentalFeatureConfigHelper.UpdateConfig(this, Name, Scope, enable: false); | |
| } | |
| } | |
| internal static class ExperimentalFeatureConfigHelper | |
| { | |
| internal static void UpdateConfig(PSCmdlet cmdlet, string[] name, ConfigScope scope, bool enable) | |
| { | |
| IEnumerable<WildcardPattern> namePatterns = SessionStateUtilities.CreateWildcardsFromStrings(name, WildcardOptions.IgnoreCase | WildcardOptions.CultureInvariant); | |
| GetExperimentalFeatureCommand getExperimentalFeatureCommand = new GetExperimentalFeatureCommand(); | |
| getExperimentalFeatureCommand.Context = cmdlet.Context; | |
| bool foundFeature = false; | |
| foreach (ExperimentalFeature feature in getExperimentalFeatureCommand.GetAvailableExperimentalFeatures(namePatterns)) | |
| { | |
| foundFeature = true; | |
| if (!cmdlet.ShouldProcess(feature.Name)) | |
| { | |
| return; | |
| } | |
| PowerShellConfig.Instance.SetExperimentalFeatures(scope, feature.Name, enable); | |
| } | |
| if (!foundFeature) | |
| { | |
| string errMsg = string.Format(CultureInfo.InvariantCulture, ExperimentalFeatureStrings.ExperimentalFeatureNameNotFound, name); | |
| cmdlet.WriteError(new ErrorRecord(new ItemNotFoundException(errMsg), "ItemNotFoundException", ErrorCategory.ObjectNotFound, name)); | |
| return; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Provides argument completion for ExperimentalFeature names. | |
| /// </summary> | |
| public class ExperimentalFeatureNameCompleter : IArgumentCompleter | |
| { | |
| /// <summary> | |
| /// Returns completion results for experimental feature names used as arguments to experimental feature cmdlets. | |
| /// </summary> | |
| /// <param name="commandName">The command name.</param> | |
| /// <param name="parameterName">The parameter name.</param> | |
| /// <param name="wordToComplete">The word to complete.</param> | |
| /// <param name="commandAst">The command AST.</param> | |
| /// <param name="fakeBoundParameters">The fake bound parameters.</param> | |
| /// <returns>List of Completion Results.</returns> | |
| public IEnumerable<CompletionResult> CompleteArgument( | |
| string commandName, | |
| string parameterName, | |
| string wordToComplete, | |
| CommandAst commandAst, | |
| IDictionary fakeBoundParameters) | |
| { | |
| SortedSet<string> expirmentalFeatures = new(StringComparer.OrdinalIgnoreCase); | |
| foreach (ExperimentalFeature feature in GetExperimentalFeatures()) | |
| { | |
| expirmentalFeatures.Add(feature.Name); | |
| } | |
| return CompletionHelpers.GetMatchingResults(wordToComplete, expirmentalFeatures); | |
| } | |
| private static Collection<ExperimentalFeature> GetExperimentalFeatures() | |
| { | |
| using var ps = System.Management.Automation.PowerShell.Create(RunspaceMode.CurrentRunspace); | |
| ps.AddCommand("Get-ExperimentalFeature"); | |
| return ps.Invoke<ExperimentalFeature>(); | |
| } | |
| } | |
| } | |