Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /Modules /GetModuleCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Internal; | |
| using System.Management.Automation.Language; | |
| using System.Management.Automation.Runspaces; | |
| using System.Threading; | |
| using Microsoft.Management.Infrastructure; | |
| using Dbg = System.Management.Automation.Diagnostics; | |
| // | |
| // Now define the set of commands for manipulating modules. | |
| // | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Implements a cmdlet that gets the list of loaded modules... | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public sealed class GetModuleCommand : ModuleCmdletBase, IDisposable | |
| { | |
| private const string ParameterSet_Loaded = "Loaded"; | |
| private const string ParameterSet_AvailableLocally = "Available"; | |
| private const string ParameterSet_AvailableInPsrpSession = "PsSession"; | |
| private const string ParameterSet_AvailableInCimSession = "CimSession"; | |
| /// <summary> | |
| /// This parameter specifies the current pipeline object. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| [ | |
| ] | |
| public string[] Name { get; set; } | |
| /// <summary> | |
| /// This parameter specifies the current pipeline object. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| [] | |
| [ | |
| ] | |
| public ModuleSpecification[] FullyQualifiedName { get; set; } | |
| /// <summary> | |
| /// If specified, all loaded modules should be returned, otherwise only the visible | |
| /// modules should be returned. | |
| /// </summary> | |
| [] | |
| [] | |
| public SwitchParameter All { get; set; } | |
| /// <summary> | |
| /// If specified, then Get-Module will return the set of available modules... | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public SwitchParameter ListAvailable { get; set; } | |
| /// <summary> | |
| /// If specified, then Get-Module will return the set of available modules which supports the specified PowerShell edition... | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public string PSEdition { get; set; } | |
| /// <summary> | |
| /// When set, CompatiblePSEditions checking is disabled for modules in the System32 (Windows PowerShell) module directory. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public SwitchParameter SkipEditionCheck | |
| { | |
| get { return (SwitchParameter)BaseSkipEditionCheck; } | |
| set { BaseSkipEditionCheck = value; } | |
| } | |
| /// <summary> | |
| /// If specified, then Get-Module refreshes the internal cmdlet analysis cache. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public SwitchParameter Refresh { get; set; } | |
| /// <summary> | |
| /// If specified, then Get-Module will attempt to discover PowerShell modules on a remote computer using the specified session. | |
| /// </summary> | |
| [] | |
| [] | |
| public PSSession PSSession { get; set; } | |
| /// <summary> | |
| /// If specified, then Get-Module will attempt to discover PS-CIM modules on a remote computer using the specified session. | |
| /// </summary> | |
| [] | |
| [] | |
| public CimSession CimSession { get; set; } | |
| /// <summary> | |
| /// For interoperability with 3rd party CIM servers, user can specify custom resource URI. | |
| /// </summary> | |
| [] | |
| [] | |
| public Uri CimResourceUri { get; set; } | |
| /// <summary> | |
| /// For interoperability with 3rd party CIM servers, user can specify custom namespace. | |
| /// </summary> | |
| [] | |
| [] | |
| public string CimNamespace { get; set; } | |
| private IEnumerable<PSModuleInfo> GetAvailableViaPsrpSessionCore(string[] moduleNames, Runspace remoteRunspace) | |
| { | |
| Dbg.Assert(remoteRunspace != null, "Caller should verify remoteRunspace != null"); | |
| using (var powerShell = System.Management.Automation.PowerShell.Create()) | |
| { | |
| powerShell.Runspace = remoteRunspace; | |
| powerShell.AddCommand("Get-Module"); | |
| powerShell.AddParameter("ListAvailable", true); | |
| if (Refresh.IsPresent) | |
| { | |
| powerShell.AddParameter("Refresh", true); | |
| } | |
| if (moduleNames != null) | |
| { | |
| powerShell.AddParameter("Name", moduleNames); | |
| } | |
| string errorMessageTemplate = string.Format( | |
| CultureInfo.InvariantCulture, | |
| Modules.RemoteDiscoveryRemotePsrpCommandFailed, | |
| "Get-Module"); | |
| foreach ( | |
| PSObject outputObject in | |
| RemoteDiscoveryHelper.InvokePowerShell(powerShell, this, errorMessageTemplate, | |
| this.CancellationToken)) | |
| { | |
| PSModuleInfo moduleInfo = RemoteDiscoveryHelper.RehydratePSModuleInfo(outputObject); | |
| yield return moduleInfo; | |
| } | |
| } | |
| } | |
| private static PSModuleInfo GetModuleInfoForRemoteModuleWithoutManifest(RemoteDiscoveryHelper.CimModule cimModule) | |
| { | |
| return new PSModuleInfo(cimModule.ModuleName, null, null); | |
| } | |
| private PSModuleInfo ConvertCimModuleInfoToPSModuleInfo(RemoteDiscoveryHelper.CimModule cimModule, | |
| string computerName) | |
| { | |
| try | |
| { | |
| bool containedErrors = false; | |
| if (cimModule.MainManifest == null) | |
| { | |
| return GetModuleInfoForRemoteModuleWithoutManifest(cimModule); | |
| } | |
| string temporaryModuleManifestPath = Path.Combine( | |
| RemoteDiscoveryHelper.GetModulePath(cimModule.ModuleName, null, computerName, | |
| this.Context.CurrentRunspace), | |
| Path.GetFileName(cimModule.ModuleName)); | |
| Hashtable mainData = null; | |
| if (!containedErrors) | |
| { | |
| mainData = RemoteDiscoveryHelper.ConvertCimModuleFileToManifestHashtable( | |
| cimModule.MainManifest, | |
| temporaryModuleManifestPath, | |
| this, | |
| ref containedErrors); | |
| if (mainData == null) | |
| { | |
| return GetModuleInfoForRemoteModuleWithoutManifest(cimModule); | |
| } | |
| } | |
| if (!containedErrors) | |
| { | |
| mainData = RemoteDiscoveryHelper.RewriteManifest(mainData); | |
| } | |
| Hashtable localizedData = mainData; // TODO/FIXME - this needs full path support from the provider | |
| PSModuleInfo moduleInfo = null; | |
| if (!containedErrors) | |
| { | |
| ImportModuleOptions throwAwayOptions = new ImportModuleOptions(); | |
| moduleInfo = LoadModuleManifest( | |
| temporaryModuleManifestPath, | |
| null, // scriptInfo | |
| mainData, | |
| localizedData, | |
| 0 /* - don't write errors, don't load elements, don't return null on first error */, | |
| this.BaseMinimumVersion, | |
| this.BaseMaximumVersion, | |
| this.BaseRequiredVersion, | |
| this.BaseGuid, | |
| ref throwAwayOptions, | |
| ref containedErrors); | |
| } | |
| if ((moduleInfo == null) || containedErrors) | |
| { | |
| moduleInfo = GetModuleInfoForRemoteModuleWithoutManifest(cimModule); | |
| } | |
| return moduleInfo; | |
| } | |
| catch (Exception e) | |
| { | |
| ErrorRecord errorRecord = RemoteDiscoveryHelper.GetErrorRecordForProcessingOfCimModule(e, cimModule.ModuleName); | |
| this.WriteError(errorRecord); | |
| return null; | |
| } | |
| } | |
| private IEnumerable<PSModuleInfo> GetAvailableViaCimSessionCore(IEnumerable<string> moduleNames, | |
| CimSession cimSession, Uri resourceUri, | |
| string cimNamespace) | |
| { | |
| IEnumerable<RemoteDiscoveryHelper.CimModule> remoteModules = RemoteDiscoveryHelper.GetCimModules( | |
| cimSession, | |
| resourceUri, | |
| cimNamespace, | |
| moduleNames, | |
| true /* onlyManifests */, | |
| this, | |
| this.CancellationToken); | |
| IEnumerable<PSModuleInfo> remoteModuleInfos = remoteModules | |
| .Select(cimModule => this.ConvertCimModuleInfoToPSModuleInfo(cimModule, cimSession.ComputerName)) | |
| .Where(static moduleInfo => moduleInfo != null); | |
| return remoteModuleInfos; | |
| } | |
| private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource(); | |
| private CancellationToken CancellationToken | |
| { | |
| get { return _cancellationTokenSource.Token; } | |
| } | |
| /// <summary> | |
| /// When overridden in the derived class, interrupts currently | |
| /// running code within the command. It should interrupt BeginProcessing, | |
| /// ProcessRecord, and EndProcessing. | |
| /// Default implementation in the base class just returns. | |
| /// </summary> | |
| protected override void StopProcessing() | |
| { | |
| _cancellationTokenSource.Cancel(); | |
| } | |
| /// <summary> | |
| /// Release all resources. | |
| /// </summary> | |
| public void Dispose() | |
| { | |
| if (_disposed) | |
| { | |
| return; | |
| } | |
| _cancellationTokenSource.Dispose(); | |
| _disposed = true; | |
| } | |
| private bool _disposed; | |
| private void AssertListAvailableMode() | |
| { | |
| if (!this.ListAvailable.IsPresent) | |
| { | |
| string errorMessage = Modules.RemoteDiscoveryWorksOnlyInListAvailableMode; | |
| ArgumentException argumentException = new ArgumentException(errorMessage); | |
| ErrorRecord errorRecord = new ErrorRecord( | |
| argumentException, | |
| "RemoteDiscoveryWorksOnlyInListAvailableMode", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| this.ThrowTerminatingError(errorRecord); | |
| } | |
| } | |
| /// <summary> | |
| /// Write out the specified modules... | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| // Name and FullyQualifiedName should not be specified at the same time. | |
| // Throw out terminating error if this is the case. | |
| if ((Name != null) && (FullyQualifiedName != null)) | |
| { | |
| string errMsg = StringUtil.Format(SessionStateStrings.GetContent_TailAndHeadCannotCoexist, "Name", "FullyQualifiedName"); | |
| ErrorRecord error = new ErrorRecord(new InvalidOperationException(errMsg), "NameAndFullyQualifiedNameCannotBeSpecifiedTogether", ErrorCategory.InvalidOperation, null); | |
| ThrowTerminatingError(error); | |
| } | |
| // -SkipEditionCheck only makes sense for -ListAvailable (otherwise the module is already loaded) | |
| if (SkipEditionCheck && !ListAvailable) | |
| { | |
| ErrorRecord error = new ErrorRecord( | |
| new InvalidOperationException(Modules.SkipEditionCheckNotSupportedWithoutListAvailable), | |
| nameof(Modules.SkipEditionCheckNotSupportedWithoutListAvailable), | |
| ErrorCategory.InvalidOperation, | |
| targetObject: null); | |
| ThrowTerminatingError(error); | |
| } | |
| var strNames = new List<string>(); | |
| if (Name != null) | |
| { | |
| strNames.AddRange(Name); | |
| } | |
| var moduleSpecTable = new Dictionary<string, ModuleSpecification>(StringComparer.OrdinalIgnoreCase); | |
| if (FullyQualifiedName != null) | |
| { | |
| for (int modSpecIndex = 0; modSpecIndex < FullyQualifiedName.Length; modSpecIndex++) | |
| { | |
| FullyQualifiedName[modSpecIndex] = FullyQualifiedName[modSpecIndex].WithNormalizedName(Context, SessionState.Path.CurrentLocation.Path); | |
| } | |
| moduleSpecTable = FullyQualifiedName.ToDictionary(static moduleSpecification => moduleSpecification.Name, StringComparer.OrdinalIgnoreCase); | |
| strNames.AddRange(FullyQualifiedName.Select(static spec => spec.Name)); | |
| } | |
| string[] names = strNames.Count > 0 ? strNames.ToArray() : null; | |
| if (ParameterSetName.Equals(ParameterSet_Loaded, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| AssertNameDoesNotResolveToAPath(names, | |
| Modules.ModuleDiscoveryForLoadedModulesWorksOnlyForUnQualifiedNames, | |
| "ModuleDiscoveryForLoadedModulesWorksOnlyForUnQualifiedNames"); | |
| GetLoadedModules(names, moduleSpecTable, this.All); | |
| } | |
| else if (ParameterSetName.Equals(ParameterSet_AvailableLocally, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| if (ListAvailable.IsPresent) | |
| { | |
| GetAvailableLocallyModules(names, moduleSpecTable, this.All); | |
| } | |
| else | |
| { | |
| AssertNameDoesNotResolveToAPath(names, | |
| Modules.ModuleDiscoveryForLoadedModulesWorksOnlyForUnQualifiedNames, | |
| "ModuleDiscoveryForLoadedModulesWorksOnlyForUnQualifiedNames"); | |
| GetLoadedModules(names, moduleSpecTable, this.All); | |
| } | |
| } | |
| else if (ParameterSetName.Equals(ParameterSet_AvailableInPsrpSession, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| AssertListAvailableMode(); | |
| AssertNameDoesNotResolveToAPath(names, | |
| Modules.RemoteDiscoveryWorksOnlyForUnQualifiedNames, | |
| "RemoteDiscoveryWorksOnlyForUnQualifiedNames"); | |
| GetAvailableViaPsrpSession(names, moduleSpecTable, this.PSSession); | |
| } | |
| else if (ParameterSetName.Equals(ParameterSet_AvailableInCimSession, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| AssertListAvailableMode(); | |
| AssertNameDoesNotResolveToAPath(names, | |
| Modules.RemoteDiscoveryWorksOnlyForUnQualifiedNames, | |
| "RemoteDiscoveryWorksOnlyForUnQualifiedNames"); | |
| GetAvailableViaCimSession(names, moduleSpecTable, this.CimSession, | |
| this.CimResourceUri, this.CimNamespace); | |
| } | |
| else | |
| { | |
| Dbg.Assert(false, "Unrecognized parameter set"); | |
| } | |
| } | |
| private void AssertNameDoesNotResolveToAPath(string[] names, string stringFormat, string resourceId) | |
| { | |
| if (names != null) | |
| { | |
| foreach (var n in names) | |
| { | |
| if (n.Contains(StringLiterals.DefaultPathSeparator) || n.Contains(StringLiterals.AlternatePathSeparator)) | |
| { | |
| string errorMessage = StringUtil.Format(stringFormat, n); | |
| var argumentException = new ArgumentException(errorMessage); | |
| var errorRecord = new ErrorRecord( | |
| argumentException, | |
| resourceId, | |
| ErrorCategory.InvalidArgument, | |
| n); | |
| this.ThrowTerminatingError(errorRecord); | |
| } | |
| } | |
| } | |
| } | |
| private void GetAvailableViaCimSession(IEnumerable<string> names, IDictionary<string, ModuleSpecification> moduleSpecTable, | |
| CimSession cimSession, Uri resourceUri, string cimNamespace) | |
| { | |
| IEnumerable<PSModuleInfo> remoteModules = GetAvailableViaCimSessionCore(names, cimSession, resourceUri, cimNamespace); | |
| foreach (PSModuleInfo remoteModule in FilterModulesForEditionAndSpecification(remoteModules, moduleSpecTable)) | |
| { | |
| RemoteDiscoveryHelper.AssociatePSModuleInfoWithSession(remoteModule, cimSession, resourceUri, | |
| cimNamespace); | |
| this.WriteObject(remoteModule); | |
| } | |
| } | |
| private void GetAvailableViaPsrpSession(string[] names, IDictionary<string, ModuleSpecification> moduleSpecTable, PSSession session) | |
| { | |
| IEnumerable<PSModuleInfo> remoteModules = GetAvailableViaPsrpSessionCore(names, session.Runspace); | |
| foreach (PSModuleInfo remoteModule in FilterModulesForEditionAndSpecification(remoteModules, moduleSpecTable)) | |
| { | |
| RemoteDiscoveryHelper.AssociatePSModuleInfoWithSession(remoteModule, session); | |
| this.WriteObject(remoteModule); | |
| } | |
| } | |
| private void GetAvailableLocallyModules(string[] names, IDictionary<string, ModuleSpecification> moduleSpecTable, bool all) | |
| { | |
| IEnumerable<PSModuleInfo> modules = GetModule(names, all, Refresh); | |
| foreach (PSModuleInfo module in FilterModulesForEditionAndSpecification(modules, moduleSpecTable)) | |
| { | |
| var psModule = new PSObject(module); | |
| psModule.TypeNames.Insert(0, "ModuleInfoGrouping"); | |
| WriteObject(psModule); | |
| } | |
| } | |
| private void GetLoadedModules(string[] names, IDictionary<string, ModuleSpecification> moduleSpecTable, bool all) | |
| { | |
| var modulesToWrite = Context.Modules.GetModules(names, all); | |
| foreach (PSModuleInfo moduleInfo in FilterModulesForEditionAndSpecification(modulesToWrite, moduleSpecTable)) | |
| { | |
| WriteObject(moduleInfo); | |
| } | |
| } | |
| /// <summary> | |
| /// Filter an enumeration of PowerShell modules based on the required PowerShell edition | |
| /// and the module specification constraints set for each module (if any). | |
| /// </summary> | |
| /// <param name="modules">The modules to filter through.</param> | |
| /// <param name="moduleSpecificationTable">Module constraints, keyed by module name, to filter modules of that name by.</param> | |
| /// <returns>All modules from the original input that meet both any module edition and module specification constraints provided.</returns> | |
| private IEnumerable<PSModuleInfo> FilterModulesForEditionAndSpecification( | |
| IEnumerable<PSModuleInfo> modules, | |
| IDictionary<string, ModuleSpecification> moduleSpecificationTable) | |
| { | |
| // Edition check only applies to Windows System32 module path | |
| if (!SkipEditionCheck && ListAvailable && !All) | |
| { | |
| modules = modules.Where(static module => module.IsConsideredEditionCompatible); | |
| } | |
| if (!string.IsNullOrEmpty(PSEdition)) | |
| { | |
| modules = modules.Where(module => module.CompatiblePSEditions.Contains(PSEdition, StringComparer.OrdinalIgnoreCase)); | |
| } | |
| if (moduleSpecificationTable != null && moduleSpecificationTable.Count > 0) | |
| { | |
| modules = FilterModulesForSpecificationMatch(modules, moduleSpecificationTable); | |
| } | |
| return modules; | |
| } | |
| /// <summary> | |
| /// Take an enumeration of modules and only return those that match a specification | |
| /// in the given specification table, or have no corresponding entry in the specification table. | |
| /// </summary> | |
| /// <param name="modules">The modules to filter by specification match.</param> | |
| /// <param name="moduleSpecificationTable">The specification lookup table to filter the modules on.</param> | |
| /// <returns>The modules that match their corresponding table entry, or which have no table entry.</returns> | |
| private static IEnumerable<PSModuleInfo> FilterModulesForSpecificationMatch( | |
| IEnumerable<PSModuleInfo> modules, | |
| IDictionary<string, ModuleSpecification> moduleSpecificationTable) | |
| { | |
| Dbg.Assert(moduleSpecificationTable != null, $"Caller to verify that {nameof(moduleSpecificationTable)} is not null"); | |
| Dbg.Assert(moduleSpecificationTable.Count != 0, $"Caller to verify that {nameof(moduleSpecificationTable)} is not empty"); | |
| foreach (PSModuleInfo module in modules) | |
| { | |
| IEnumerable<ModuleSpecification> candidateModuleSpecs = GetCandidateModuleSpecs(moduleSpecificationTable, module); | |
| // Modules with table entries only get returned if they match them | |
| // We skip the name check since modules have already been prefiltered base on the moduleSpec path/name | |
| foreach (ModuleSpecification moduleSpec in candidateModuleSpecs) | |
| { | |
| if (ModuleIntrinsics.IsModuleMatchingModuleSpec(module, moduleSpec, skipNameCheck: true)) | |
| { | |
| yield return module; | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Take a dictionary of module specifications and return those that potentially match the module | |
| /// passed in as a parameter (checks on names and paths). | |
| /// </summary> | |
| /// <param name="moduleSpecTable">The module specifications to filter candidates from.</param> | |
| /// <param name="module">The module to find candidates for from the module specification table.</param> | |
| /// <returns>The module specifications matching the module based on name, path and subpath.</returns> | |
| private static IEnumerable<ModuleSpecification> GetCandidateModuleSpecs( | |
| IDictionary<string, ModuleSpecification> moduleSpecTable, | |
| PSModuleInfo module) | |
| { | |
| const WildcardOptions options = WildcardOptions.IgnoreCase | WildcardOptions.CultureInvariant; | |
| foreach (ModuleSpecification moduleSpec in moduleSpecTable.Values) | |
| { | |
| WildcardPattern namePattern = WildcardPattern.Get(moduleSpec.Name, options); | |
| if (namePattern.IsMatch(module.Name) || moduleSpec.Name == module.Path || module.Path.Contains(moduleSpec.Name)) | |
| { | |
| yield return moduleSpec; | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Provides argument completion for PSEdition parameter. | |
| /// </summary> | |
| public class PSEditionArgumentCompleter : IArgumentCompleter | |
| { | |
| /// <summary> | |
| /// Returns completion results for PSEdition parameter. | |
| /// </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) | |
| => CompletionHelpers.GetMatchingResults(wordToComplete, possibleCompletionValues: Utils.AllowedEditionValues); | |
| } | |
| } | |