3

我正在用 C# 编写一个二进制 Powershell 模块,我想要一个带有参数的 Cmdlet,该参数提供动态的运行时选项卡完成。但是,我正在努力弄清楚如何在二进制模块中执行此操作。这是我试图让这个工作:

using System;
using System.Collections.ObjectModel;
using System.Management.Automation;

namespace DynamicParameterCmdlet
{

    [Cmdlet("Say", "Hello")]
    public class MyCmdlet : PSCmdlet
    {

        [Parameter, PSTypeName("string")]
        public RuntimeDefinedParameter Name { get; set; }

        public MyCmdlet() : base() {
            Collection<Attribute> attributes = new Collection<Attribute>() {
                new ParameterAttribute()
            };

            string[] allowedNames = NameProvider.GetAllowedNames();
            attributes.Add(new ValidateSetAttribute(allowedNames));
            Name = new RuntimeDefinedParameter("Name", typeof(string), attributes);
        }

        protected override void ProcessRecord()
        {
            string name = (string)Name.Value;
            WriteObject($"Hello, {Name}");
        }
    }

    public static class NameProvider
    {
        public static string[] GetAllowedNames()
        {
            // Hard-coded array here for simplicity but imagine in reality this
            // would vary at run-time
            return new string[] { "Alice", "Bob", "Charlie" };
        }
    }
}

这行不通。我没有任何选项卡完成功能。我也收到一个错误:

PS > Say-Hello -Name Alice
Say-Hello : Cannot bind parameter 'Name'. Cannot convert the "Alice" value of type "System.String" to type "System.Management.Automation.RuntimeDefinedParameter".
At line:1 char:17
+ Say-Hello -Name Alice
+                 ~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Say-Hello], ParameterBindingException
    + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,DynamicParameterCmdlet.MyCmdlet

我找到了一篇文章,其中包含如何在非二进制 Powershell 模块中执行此操作的示例。似乎在您包含的非二进制模块中,DynamicParam后面跟着构建和返回RuntimeParameterDictionary对象的语句。基于这个例子,我期望PSCmdlet类中的等价物,也许是一个可覆盖的GetDynamicParameters()方法或类似的东西,就像有一个可覆盖的BeginProcessing()方法一样。

以这种速度,二进制模块正在成为 Powershell 世界中的二等公民。当然有一种方法可以做到这一点,我错过了?

4

1 回答 1

10

这是在 PowerShell v5 中实现自定义参数完成器的一种方法:

Add-Type @‘
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Linq;
    using System.Management.Automation;
    using System.Management.Automation.Language;
    [Cmdlet(VerbsDiagnostic.Test,"Completion")]
    public class TestCompletionCmdlet : PSCmdlet {
        private string name;
        [Parameter,ArgumentCompleter(typeof(NameCompleter))]
        public string Name {
            set {
                name=value;
            }
        }
        protected override void BeginProcessing() {
            WriteObject(string.Format("Hello, {0}", name));
        }
        private class NameCompleter : IArgumentCompleter {
            IEnumerable<CompletionResult> IArgumentCompleter.CompleteArgument(string commandName,
                                                                              string parameterName,
                                                                              string wordToComplete,
                                                                              CommandAst commandAst,
                                                                              IDictionary fakeBoundParameters) {
                return GetAllowedNames().
                       Where(new WildcardPattern(wordToComplete+"*",WildcardOptions.IgnoreCase).IsMatch).
                       Select(s => new CompletionResult(s));
            }
            private static string[] GetAllowedNames() {
                return new string[] { "Alice", "Bob", "Charlie" };
            }
        }
    }
’@ -PassThru|Select-Object -First 1 -ExpandProperty Assembly|Import-Module

特别是,您需要:

  • 实现IArgumentCompleter接口。实现此接口的类应具有公共默认构造函数。
  • ArgumentCompleterAttribute属性应用于字段的属性,用作 cmdlet 参数。作为属性的参数,您应该传递IArgumentCompleter实现。
  • IArgumentCompleter.CompleteArgument你有wordToComplete参数,所以你可以通过文本过滤完成选项,已经由用户输入。

并尝试一下:

测试完成-名称Tab
于 2015-10-14T23:07:28.073 回答