-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Out-Splat.ps1
587 lines (511 loc) · 22.1 KB
/
Out-Splat.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
function Out-Splat
{
<#
.Synopsis
Outputs code that splats
.Description
Outputs a function or script that primarily calls another command. This can get messy to write by hand.
.Link
Initialize-Splatter
.Example
Out-Splat -CommandName Get-Command
.Example
Out-Splat -FunctionName Get-MyProcess -Example Get-MyProcess -CommandName Get-Process -DefaultParameter @{
Id = '$pid'
} -ExcludeParameter *
#>
[CmdletBinding(DefaultParameterSetName='JustTheSplatter')]
[Alias('=>@','oSplat')]
[OutputType([ScriptBlock])]
param(
# The name of the command that will be splatted
[Parameter(Mandatory=$true,Position=0,ValueFromPipelineByPropertyName)]
[Alias('Name')]
[string]
$CommandName,
# A hashtable of default parameters. These will always be passed to the underlying command by name.
[Parameter(Position=1,ValueFromPipelineByPropertyName)]
[Alias('DefaultParameters')]
[Hashtable]
$DefaultParameter = @{},
# A list of arguments. These will be always be passed to the underlying commands by position.
# Items starting with $ will be treated as a variable.
[Parameter(ValueFromPipelineByPropertyName)]
[string[]]
$ArgumentList,
# A list of parameters names that will be inputted from the original command into the splat.
# If generating a function, these parameter declarations will be copied from the underlying command.
# Help for these parameters will be included as comment-based help
[Parameter(Position=3,ValueFromPipelineByPropertyName)]
[Alias('IncludeParameter')]
[string[]]
$InputParameter,
# A list of parameters that will be excluded from the original function.
# This is only valid when generating a function.
# Wildcards may be used.
[Parameter(Position=4,ValueFromPipelineByPropertyName)]
[string[]]
$ExcludeParameter,
# If set, values from input parameters will override default values.
[Alias('OverrideDefault','OverwriteDefault', 'DefaultOverwrite')]
[Parameter(ValueFromPipelineByPropertyName)]
[Switch]
$DefaultOverride,
# If set, any variable with a non-null value matching the input parameters will be used to splat.
# If not set, only bound parameters will be used to splat.
# If no function name is provided, this will automatically be set
[Parameter(ValueFromPipelineByPropertyName)]
[Switch]
$VariableInput,
# The name of the variable used to hold the splatted parameters. By default, ${CommandName}Parameters (e.g. GetHelpP
[Parameter(ValueFromPipelineByPropertyName)]
[Alias('SplatName')]
[string]
$VariableName,
# An optional name of a generated function.
# If provided, this function will declare any input parameters specified in -InputParameter
[Parameter(Mandatory=$true,Position=2,ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[string]
$FunctionName,
# The synopsis.
# This is used to make comment-based help in a generated function.
# By default, it is : "Wraps $CommandName"
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[string]
$Synopsis,
# The description.
# This is used to make comment-based help in a generated function.
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[string]
$Description,
# One or more examples.
# This is used to make comment-based help in a generated function.
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[Alias('Examples')]
[string[]]
$Example,
# One or more links.
# This is used to make comment-based help in a generated function.
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[Alias('Links')]
[string[]]
$Link,
# Some notes.
# This is used to make comment-based help in a generated function.
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[Alias('Notes')]
[string]
$Note,
# The CmdletBinding attribute for a new function
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[string]
$CmdletBinding,
# The [OutputType()] of a function.
# If the type resolves to a [type], it's value will be provided as a [type].
# Otherwise, it will be provided as a [string]
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[string[]]
$OutputType,
# A set of additional parameter declarations.
# The keys are the names of the parameters, and the values can be a type and a string containing parameter binding and inline help.
[Parameter(ValueFromPipelineByPropertyName,ParameterSetName='FunctionalSplatter')]
[Hashtable]
$AdditionalParameter,
# The serialization depth for default parameters. By default, 2.
[uint32]
$SerializationDepth = 2,
# If set, will generate the code to collect the -CommandName input as dynamic parameters.
[Parameter(Mandatory,ParameterSetName='DynamicSplatter')]
[Alias('DynamicParameters')]
[switch]
$DynamicParameter,
# If set, will not allow dynamic parameters to use ValueFromPipeline or ValueFromPipelineByPropertyName
[Parameter(ParameterSetName='DynamicSplatter')]
[switch]
$Unpiped,
# If provided, will offset the position of any positional parameters.
[Parameter(ParameterSetName='DynamicSplatter')]
[int]
$Offset,
# If provided, dynamic parameters will be created in a new parameter set, named $NewParameterSetName.
[Parameter(ParameterSetName='DynamicSplatter')]
[string]
$NewParameterSetName,
# If set, will cross errors into the output stream.
# You SHOULD cross the streams when dealing with console applications, as many of them like to return output on standard error.
[Parameter(ValueFromPipelineByPropertyName)]
[Switch]
$CrossStream,
# A script block used to filter the results
[ScriptBlock]$Where,
# A script to run before the splatter starts
[ScriptBlock]$Begin,
# A script to run on each splatter result
[ScriptBlock]$Process,
# A script to run after the splat is over
[ScriptBlock]$End,
# If provided, will pipe directly into the contents of this script block.
# This assumes that the first item in the script block is a command, and it will accept the output of the splat as pipelined input
[ScriptBlock]
[Alias('PipeInto','Pipe')]
$PipeTo,
# The output path.
# If provided, will output to this file and return the file.
[string]
$OutputPath)
process {
# First, let's find the command.
$commandExists = $ExecutionContext.SessionState.InvokeCommand.GetCommand($CommandName, 'All')
if (-not $commandExists) { # If we don't, error out.
Write-Error "$CommandName does not exist"
return
}
if ($InputParameter.Count -eq 1 -and $InputParameter -eq '*') {
if ($commandExists -is [Management.Automation.ApplicationInfo]) {
$InputParameter = @()
} else {
$InputParameter = ($commandExists -as [Management.Automation.CommandMetaData]).Parameters.Keys
}
}
if ($DynamicParameter) {
if (-not $VariableName) { # If no -VariableName was provided,
$VariableName = "$($CommandName -replace '[\W\s]','')DynamicParameters" # default to ${CommandName}DynamicParameters
}
$safeCommandName = $($CommandName -replace '[\W\s]','')
return [ScriptBlock]::Create(@(
"if (-not `$$VariableName) {
`$$VariableName = [Management.Automation.RuntimeDefinedParameterDictionary]::new()"
" `$$($CommandName -replace '[\W\s]','') = `$executionContext.SessionState.InvokeCommand.GetCommand('$CommandName', 'All')"
$inputForeach =
if ($InputParameter) {
"'$(@(:nextInputParameter foreach ($in in $InputParameter) {
foreach ($ex in $ExcludeParameter) {
if ($in -like $ex) { continue nextInputParameter }
}
$in
}) -join "','")'"
} else {
"([Management.Automation.CommandMetaData]`$$safeCommandName).Parameters.Keys"
}
" :nextInputParameter foreach (`$in in $inputForeach) {
$(if ($ExcludeParameter) {
"foreach (`$ex in '$($ExcludeParameter -join "','")') {
if (`$in -like `$ex) { continue nextInputParameter }
}
"})
`$$variableName.Add(`$in, [Management.Automation.RuntimeDefinedParameter]::new(
`$$SafeCommandName.Parameters[`$in].Name,
`$$SafeCommandName.Parameters[`$in].ParameterType,
`$$SafeCommandName.Parameters[`$in].Attributes
))
}"
if ($Unpiped -or $Offset -or $NewParameterSetName) {
" foreach (`$paramName in `$$variableName.Keys) {
foreach (`$attr in `$$variableName[`$paramName].Attributes) {
$(@(
if ($Unpiped) {
' if ($attr.ValueFromPipeline) {$attr.ValueFromPipeline = $false}'
' if ($attr.ValueFromPipelineByPropertyName) {$attr.ValueFromPipelineByPropertyName = $false}'
}
if ($Offset) {
" if (`$attr.Position -ge 0) { `$attr.Position += $offset }"
}
if ($NewParameterSetName) {
" if (`$attr.psobject.properties('ParameterSetName')) { `$attr.ParameterSetName = '$NewParameterSetName' }"
}
) -join [Environment]::NewLine)
}
}"
}
'}'
"`$$variableName"
) -join [Environment]::NewLine)
}
if (-not $VariableName) { # Next, if no -VariableName was provided,
$VariableName = "$($CommandName -replace '[\W\s]','')Parameters"
}
$defaultDeclaration =
if ($DefaultParameter.Count) {
$toSplat = "@'
$(ConvertTo-Json $DefaultParameter -Depth $SerializationDepth)
'@"
"`$${VariableName}Default = ConvertFrom-Json $toSplat"
"`$$VariableName = @{}"
"foreach (`$property in `$${VariableName}Default.psobject.properties) {
`$$VariableName[`$property.Name] = `$property.Value
if (`$property.Value -is [string] -and `$property.Value.StartsWith('`$')) {
`$$VariableName[`$property.Name] = `$executionContext.SessionState.PSVariable.Get(`$property.Value.Substring(1)).Value
}
}"
} elseif ($ArgumentList.Count) {
"`$$VariableName = " + @(foreach ($a in $ArgumentList) {
if ($a.StartsWith('$')) {
$a
} else {
"'$($a.Replace("'","''"))'"
}
}) -join ','
} else {
"`$$VariableName = @{}"
}
if (-not $FunctionName) { $VariableInput = $true }
$paramSplat =
if ($InputParameter -or $FunctionName) {
if ($VariableInput) {
"
#region Copy Parameters from $CommandName
foreach (`$in in '$($inputParameter -join "','")') {
`$var = `$executionContext.SessionState.PSVariable.Get(`$in)
if (-not `$var) { continue }
$(if ($DefaultOverride) {
"`$$VariableName.`$in = `$var.Value"
} else {
"`$$VariableName.`$in = `$var.Value"
})
}
#endregion Copy Parameters from $CommandName
"
} else {
"#region Copy Parameters from $CommandName
`$MyParameters = [Ordered]@{} + `$psBoundParameters # Copy `$PSBoundParameters
foreach (`$in in $(if ($inputParameter) { "'$($inputParameter -join "','")'" } else { "`$MyParameters.Keys`"})) {
$(if ($DefaultOverride) {
"if (`$myParameters.`$in) {
`$$VariableName.`$in = `$myParameters.`$in
}"
} else {
"if (-not `$$VariableName.`$in -and `$myParameters.`$in) {
`$$VariableName.`$in = `$myParameters.`$in
}"})
}
#endregion Copy Parameters from $CommandName
"
}
} else {
@()
}
$paramSplat = $paramSplat -join ([Environment]::NewLine)
$cmdDef =
if ([Management.Automation.ExternalScriptInfo],[Management.Automation.ApplicationInfo] -contains $commandExists.GetType()) {
" & '$($commandExists.Source.Replace("'","''"))' @$VariableName"
} else {
"$commandExists @$VariableName"
}
if ($CrossStream) {
$cmdDef += " *>&1"
}
if ($Where) {
$cmdDef += " |
Where-Object {$Where}"
}
if ($PipeTo) {
$cmdDef += "| $PipeTo"
}
if ($Begin -or $Process -or $End) {
$cmdDef += " |
Foreach-Object$(if ($Begin) { " -Begin {
$Begin
}"})$(if ($Process) { " -Process {
$Process
}"})$(if ($End) { " -End {
$end
}"})"
}
$coreSplat = (@() + $defaultDeclaration + $paramSplat + $cmdDef) -join ([Environment]::NewLine)
$SplatterScript =
if ($FunctionName) {
$commandMeta = $commandExists -as [Management.Automation.CommandMetadata]
foreach ($k in @($commandMeta.Parameters.Keys)) {
if ($InputParameter -notcontains $k) {
$null =$commandMeta.Parameters.Remove($k)
}
}
$originalCmdletBinding = [Management.Automation.Proxycommand]::GetCmdletBindingAttribute($commandExists)
$cmdHelp = Get-Help -Name $commandExists
if ($cmdHelp -is [string]) { $cmdHelp = $null }
$paramBlock = [Management.Automation.Proxycommand]::GetParamBlock($commandExists) -replace '\{(\S{1,})\}', '$1'
$paramParts = $paramBlock -split ',\W{1,}[\[$]' -ne ''
$paramBlockParts =
@(foreach ($param in $paramParts) {
$lastDollar = $param.LastIndexOf('$')
$parameterName = $param.Substring($lastDollar + 1).Trim()
$parameterHelp = if ($cmdHelp) {
$cmdHelp.parameters[0].parameter |
Where-Object { $_.Name -eq $parameterName -and $_.Description }|
Select-Object -ExpandProperty Description |
Select-Object -ExpandProperty Text
} else {
$null
}
$param = $param.Trim()
if (-not $param.StartsWith('$') -and -not $param.StartsWith('[')) {
$param = "[$param"
}
if ($ExcludeParameter) {
$shouldExclude =
foreach ($ex in $ExcludeParameter) {
if ($parameterName -like "$ex") {
$true
break
}
}
if ($shouldExclude) { continue }
}
if ($parameterHelp) {
$lines = "$parameterHelp".Split("`r`n",[StringSplitOptions]'RemoveEmptyEntries')
if ($lines.Count -lt 8) {
(@(foreach ($l in $lines) {
" #$l"
}) -join ([Environment]::NewLine)) +
([Environment]::NewLine) + (' '*4) + $param
} else {
" <#
$parameterHelp
#>
$param"
}
} else {
$param
}
})
if ($AdditionalParameter) {
foreach ($kv in $AdditionalParameter.GetEnumerator()) {
$varName = if ($kv.Key.StartsWith('$')) { $kv.Key } else { '$' + $kv.Key }
$newParamBlockPart =
if ($kv.Value -is [type]) {
if ($kv.Value.FullName -like "System.*") {
" [$($kv.Value.Fullname.Substring(7))]$varName"
} elseif ($kv.Value -eq [switch]) {
" [switch]$varName"
} else {
" [$($kv.Value.Fullname)]$varName"
}
}
elseif ($kv.Value -is [string]) {
$varDeclared = $false
$newLines =
foreach ($line in $kv.Value -split [Environment]::NewLine) {
$trimLine = $Line.Trim()
if ($trimLine.StartsWith('[')) {
if ($trimLine -like $varName) {
$varDeclared = $true
}
(' ' * 4) + $trimLine
} # It's an attribute!
elseif ($trimLine.StartsWith('$')) { # It's a variable!
$varDeclared = $true
(' ' * 4) + $trimLine
}
elseif ($trimLine.StartsWith('#')) { # It's a comment!
(' ' * 4) + $trimLine
}
else { # Otherwise, we'll treat it like a comment anyways
(' ' * 4) + '#' + $trimLine
}
}
if (-not $varDeclared) {
$newLines += (' ' * 4) + $varName
}
$newLines -join ([Environment]::NewLine)
}
elseif ($kv.Value -is [Object[]]) {
}
if ($newParamBlockPart) {
$paramBlockParts += $newParamBlockPart
}
}
}
$paramBlock = $paramBlockParts -join (',' + ([Environment]::NewLine * 2))
if (-not $Synopsis) {
$Synopsis = "Wraps $CommandName"
}
if (-not $Description) {
$Description = "Calls $CommandName, using splatting"
}
$exampleText =
if ($Example) {
@(foreach ($ex in $Example) {
" .Example"
foreach ($ln in $ex -split '(?>\r\n|\n)') {
" $ln"
}
}) -join [Environment]::NewLine
} else { ''}
$noteText =
if ($Note) {
@(
" .Notes"
foreach ($ln in $Note -split '(?>\r\n|\n)') {
" $ln"
}
) -join [Environment]::NewLine
} else { ''}
$linkText =
if ($Link) {
@(foreach ($lnk in $Link) {
" .Link"
" $lnk"
}) -join [Environment]::NewLine
} else { @"
.Link
$CommandName
"@
}
[ScriptBlock]::Create("function $FunctionName
{
<#
.Synopsis
$Synopsis
.Description
$Description$(
if ($exampleText) { [Environment]::NewLine + $exampleText}
)$(
if ($linkText) { [Environment]::NewLine + $linkText}
)$(
if ($NoteText) { [Environment]::NewLine + $noteText}
)
#>$(if ($CmdletBinding) {
if ($CmdletBinding -like "*CmdletBinding*") {
[Environment]::NewLine + (' '*4) + $CmdletBinding
} else {
[Environment]::NewLine + (' '*4) + "[CmdletBinding($CmdletBinding)]"
}
} elseif ($originalCmdletBinding) {
[Environment]::NewLine + (' '*4) + $originalCmdletBinding
})$(
if ($OutputType) {
[Environment]::NewLine + (' '*4) + '[OutputType(' + @(foreach ($ot in $outputtype) {
if ($ot -as [type]) {"[$ot]"} else { "'$ot'"}
}) -join ',' + ')]'
} else {
[Environment]::NewLine + (' '*4) + '[OutputType([PSObject])]'
}
)
param(
$paramBlock
)
process {
$(@(foreach ($line in $coreSplat -split ([Environment]::Newline)) {
if ($line.StartsWith("'@")) {
$line
} else {
(' ' * 8) + $line
}
}) -join ([Environment]::NewLine))
}
}
")
} else {
[ScriptBlock]::Create($coreSplat)
}
if ($outputPath) {
if (-not (Test-Path $outputPath)) {
$null = New-Item -ItemType File -Path $outputPath -Force
}
"$SplatterScript" | Set-Content -Path $outputPath
Get-Item -Path $outputPath
} else {
$SplatterScript
}
}
}