Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /ExperimentalFeature /GetExperimentalFeatureCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Internal; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Implements Get-ExperimentalFeature cmdlet. | |
| /// </summary> | |
| [] | |
| [] | |
| public class GetExperimentalFeatureCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Get and set the feature names. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public string[] Name { get; set; } | |
| /// <summary> | |
| /// ProcessRecord method of this cmdlet. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| const WildcardOptions wildcardOptions = WildcardOptions.IgnoreCase | WildcardOptions.CultureInvariant; | |
| IEnumerable<WildcardPattern> namePatterns = SessionStateUtilities.CreateWildcardsFromStrings(Name, wildcardOptions); | |
| foreach (ExperimentalFeature feature in GetAvailableExperimentalFeatures(namePatterns).OrderBy(GetSortingString)) | |
| { | |
| WriteObject(feature); | |
| } | |
| } | |
| /// <summary> | |
| /// Construct the string for sorting experimental feature records. | |
| /// </summary> | |
| /// <remarks> | |
| /// Engine features come before module features. | |
| /// Within engine features and module features, features are ordered by name. | |
| /// </remarks> | |
| private static (int, string) GetSortingString(ExperimentalFeature feature) | |
| { | |
| return ExperimentalFeature.EngineSource.Equals(feature.Source, StringComparison.OrdinalIgnoreCase) | |
| ? (0, feature.Name) | |
| : (1, feature.Name); | |
| } | |
| /// <summary> | |
| /// Get available experimental features based on the specified name patterns. | |
| /// </summary> | |
| internal IEnumerable<ExperimentalFeature> GetAvailableExperimentalFeatures(IEnumerable<WildcardPattern> namePatterns) | |
| { | |
| foreach (ExperimentalFeature feature in ExperimentalFeature.EngineExperimentalFeatures) | |
| { | |
| if (SessionStateUtilities.MatchesAnyWildcardPattern(feature.Name, namePatterns, defaultValue: true)) | |
| { | |
| yield return feature; | |
| } | |
| } | |
| foreach (string moduleFile in GetValidModuleFiles(moduleNamesToFind: null)) | |
| { | |
| ExperimentalFeature[] features = ModuleIntrinsics.GetExperimentalFeature(moduleFile); | |
| foreach (var feature in features) | |
| { | |
| if (SessionStateUtilities.MatchesAnyWildcardPattern(feature.Name, namePatterns, defaultValue: true)) | |
| { | |
| yield return feature; | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Get valid module files from module paths. | |
| /// </summary> | |
| private IEnumerable<string> GetValidModuleFiles(HashSet<string> moduleNamesToFind) | |
| { | |
| var modulePaths = new HashSet<string>(StringComparer.OrdinalIgnoreCase); | |
| foreach (string path in ModuleIntrinsics.GetModulePath(includeSystemModulePath: false, Context)) | |
| { | |
| string uniquePath = path.TrimEnd(Utils.Separators.Directory); | |
| if (!modulePaths.Add(uniquePath)) | |
| { | |
| continue; | |
| } | |
| foreach (string moduleFile in ModuleUtils.GetDefaultAvailableModuleFiles(uniquePath)) | |
| { | |
| // We only care about module manifest files because that's where experimental features are declared. | |
| if (!moduleFile.EndsWith(StringLiterals.PowerShellDataFileExtension, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| continue; | |
| } | |
| if (moduleNamesToFind != null) | |
| { | |
| string currentModuleName = ModuleIntrinsics.GetModuleName(moduleFile); | |
| if (!moduleNamesToFind.Contains(currentModuleName)) | |
| { | |
| continue; | |
| } | |
| } | |
| yield return moduleFile; | |
| } | |
| } | |
| } | |
| } | |
| } | |