-
Notifications
You must be signed in to change notification settings - Fork 11
/
delegate.ps1
191 lines (158 loc) · 7.58 KB
/
delegate.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
############################################
#
# Get Delegate
#
############################################
function Get-Delegate {
<#
.SYNOPSIS
Create an action[] or func[] delegate for a psmethod reference.
.DESCRIPTION
Create an action[] or func[] delegate for a psmethod reference.
.PARAMETER Method
A PSMethod reference to create a delegate for. This parameter accepts pipeline input.
.PARAMETER ParameterType
An array of types to use for method overload resolution. If there are no overloaded methods
then this array will be ignored but a warning will be omitted if the desired parameters were
not compatible.
.PARAMETER DelegateType
The delegate to create for the corresponding method. Example: [string]::format | get-delegate -delegatetype func[int,string]
.INPUTS System.Management.Automation.PSMethod, System.Type[]
.EXAMPLE
$delegate = [string]::format | Get-Delegate string,string
Gets a delegate for a matching overload with string,string parameters.
It will actually return func<object,string> which is the correct
signature for invoking string.format with string,string.
.EXAMPLE
$delegate = [console]::beep | Get-Delegate @()
Gets a delegate for a matching overload with no parameters.
.EXAMPLE
$delegate = [console]::beep | get-delegate int,int
Gets a delegate for a matching overload with @(int,int) parameters.
.EXAMPLE
$delegate = [string]::format | Get-Delegate -Delegate 'func[string,object,string]'
Gets a delegate for an explicit func[].
.EXAMPLE
$delegate = [console]::writeline | Get-Delegate -Delegate 'action[int]'
Gets a delegate for an explicit action[].
.EXAMPLE
$delegate = [string]::isnullorempty | get-delegate
For a method with no overloads, we will choose the default method and create a corresponding action/action[] or func[].
#>
[CmdletBinding(DefaultParameterSetName="FromParameterType")]
[outputtype('System.Action','System.Action[]','System.Func[]')]
param(
[parameter(mandatory=$true, valuefrompipeline=$true)]
[system.management.automation.psmethod]$Method,
[parameter(position=0, valuefromremainingarguments=$true, parametersetname="FromParameterType")]
[validatenotnull()]
[allowemptycollection()]
[Alias("types")]
[type[]]$ParameterType = @(),
[parameter(mandatory=$true, parametersetname="FromDelegate")]
[validatenotnull()]
[validatescript({ ([delegate].isassignablefrom($_)) })]
[type]$DelegateType
)
$base = $method.GetType().GetField("baseObject","nonpublic,instance").GetValue($method)
if ($base -is [type]) {
[type]$baseType = $base
[reflection.bindingflags]$flags = "Public,Static"
} else {
[type]$baseType = $base.GetType()
[reflection.bindingflags]$flags = "Public,Instance"
}
if ($pscmdlet.ParameterSetName -eq "FromDelegate") {
write-verbose "Inferring from delegate."
if ($DelegateType -eq [action]) {
# void action
$ParameterType = [type[]]@()
} elseif ($DelegateType.IsGenericType) {
# get type name
$name = $DelegateType.Name
# is it [action[]] ?
if ($name.StartsWith("Action``")) {
$ParameterType = @($DelegateType.GetGenericArguments())
} elseif ($name.StartsWith("Func``")) {
# it's a [func[]]
$ParameterType = @($DelegateType.GetGenericArguments())
$ParameterType = $ParameterType[0..$($ParameterType.length - 2)] # trim last element (TReturn)
} else {
throw "Unsupported delegate type: Use Action<> or Func<>."
}
}
}
[reflection.methodinfo]$methodInfo = $null
if ($Method.OverloadDefinitions.Count -gt 1) {
# find best match overload
write-verbose "$($method.name) has multiple overloads; finding best match."
$finder = [type].getmethod("GetMethodImpl", [reflection.bindingflags]"NonPublic,Instance")
write-verbose "base is $($base.gettype())"
$methodInfo = $finder.invoke(
$baseType,
@(
$method.Name,
$flags,
$null,
$null,
[type[]]$ParameterType,
$null
)
) # end invoke
} else {
# method not overloaded
Write-Verbose "$($method.name) is not overloaded."
if ($base -is [type]) {
$methodInfo = $base.getmethod($method.name, $flags)
} else {
$methodInfo = $base.gettype().GetMethod($method.name, $flags)
}
# if parametertype is $null, fill it out; if it's not $null,
# override it to correct it if needed, and warn user.
if ($pscmdlet.ParameterSetName -eq "FromParameterType") {
if ($ParameterType -and ((compare-object $parametertype $methodinfo.GetParameters().parametertype))) { #psv3
write-warning "Method not overloaded: Ignoring provided parameter type(s)."
}
$ParameterType = $methodInfo.GetParameters().parametertype
write-verbose ("Set default parameters to: {0}" -f ($ParameterType -join ","))
}
}
if (-not $methodInfo) {
write-warning "Could not find matching signature for $($method.Name) with $($parametertype.count) parameter(s)."
} else {
write-verbose "MethodInfo: $methodInfo"
# it's important here to use the actual MethodInfo's parameter types,
# not the desired types ($parametertype) because they may not match,
# e.g. asked for method(int) but match is method(object).
if ($pscmdlet.ParameterSetName -eq "FromParameterType") {
if ($methodInfo.GetParameters().count -gt 0) {
$ParameterType = $methodInfo.GetParameters().ParameterType #psv3
}
# need to create corresponding [action[]] or [func[]]
if ($methodInfo.ReturnType -eq [void]) {
if ($ParameterType.Length -eq 0) {
$DelegateType = [action]
} else {
# action<...>
# replace desired with matching overload parameter types
#$ParameterType = $methodInfo.GetParameters().ParameterType
$DelegateType = ("action[{0}]" -f (($ParameterType|%{"[{0}]" -f $_}) -join ",")) -as [type]
}
} else {
# func<...>
# replace desired with matching overload parameter types
# need to wrap each type parameter in [ and ] for cases like int[] as "func[int[], int]" is invalid
# the correct format is "func[[int[]], [int]]" even though "func[int,int]" is fine.
$DelegateType = ("func[{0}]" -f ((($ParameterType + $methodInfo.ReturnType)|% {"[{0}]" -f $_}) -join ",")) -as [type]
}
}
Write-Verbose $DelegateType
if ($flags -band [reflection.bindingflags]::Instance) {
#$methodInfo.createdelegate($DelegateType, $base) # 4.5
[delegate]::CreateDelegate($delegatetype, $base, $methodInfo, <#throwOnBindFailure:#>$true)
} else {
[delegate]::CreateDelegate($delegatetype, $methodInfo, <#throwOnBindFailure:#>$true)
#$methodInfo.createdelegate($DelegateType) # 4.5
}
}
}