-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Merge-Splat.ps1
173 lines (159 loc) · 5.85 KB
/
Merge-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
function Merge-Splat
{
<#
.Synopsis
Merges one or more splats
.Description
Merges one or more hashtables and property bags into one [ordered] hashtable.
Allows you to -Remove specific keys from any object
Allows you to -Include or -Exclude wildcards of keys (or patterns, with -RegularExpression)
Allows you to -Map additional values if a value if found.
.Link
Get-Splat
.Link
Use-Splat
.Example
@{a='b'}, @{c='d'} | Merge-Splat
.Example
[PSCustomOBject]@{a='b'}, @{c='d'} | Merge-Splat -Add @{e='f'} -Remove c
.Example
@{id=$pid} |
Use-Splat Get-Process |
Merge-Splat -Include Name
.Example
@{n=$(Get-Random) } |
Merge-Splat -Map @{
N = {
if (-not ($_ % 2)) { @{IsEven=$true;IsOdd=$false} }
else { @{IsEven=$false;IsOdd=$true}}
}
}
#>
[Alias('*@','mSplat')]
param(
# The splat
[Parameter(ValueFromPipeline)]
[Alias('InputObject')]
[PSObject[]]
$Splat,
# Splats or objects that will be added to the splat.
[Parameter(Position=0,ValueFromRemainingArguments)]
[Alias('With', 'W', 'A', '+')]
[PSObject[]]
$Add,
# The names of the keys to remove from the splat
[Alias('Delete','Drop', 'D','R', '-')]
[string[]]
$Remove,
# Patterns of names to include in the splat.
# If provided, only keys that match at least one -Include pattern will be kept.
# By default, these are wildcards, unlesss -RegularExpression is passed.
[Alias('E', 'EX')]
[string[]]
$Include,
# Patterns of names to exclude from the splat.
# By default, these are wildcards, unlesss -RegularExpression is passed.
[Alias('I', 'IN')]
[string[]]
$Exclude,
# If set, all patterns matched will be assumed to be RegularExpressions, not wildcards
[Alias('Regex','RX')]
[switch]
$RegularExpression,
# A map of new data to add. The key is the name of the original property.
# The value can be any a string, a hashtable, or a script block.
# If the value is a string, it will be treated as a key, and the original property will be copied to this key.
# If the value is a hashtable, it will add the values contained in Map.
# If the value is a ScriptBlock, it will combine the output of this script block with the splat.
[Alias('M','ReMap')]
[Collections.IDictionary]
$Map,
# If set, will keep existing values in a splat instead of adding it to a list of values.
[switch]
$Keep,
# If set, will replace existing values in a splat instead of adding it to a list of values.
[switch]
$Replace)
begin {
$accumulate = [Collections.ArrayList]::new()
$aSplat = {param($o, $i)
if ($i -is [Collections.IDictionary]) {
try { $o += $i }
catch {
foreach ($kv in $i.GetEnumerator()) {
$gotIt? = $o.Contains($kv.Key)
if ($gotIt? -and $Keep) { continue }
if ($gotIt? -and $Replace) {
$o[$kv.Key] = $kv.Value;continue
} elseif ($gotIt?) {
if ($o[$kv.Key] -isnot [Object[]]) {
$o[$kv.Key] = @($o[$kv.Key])
}
$o[$kv.Key] += $kv.Value
} else {
$o[$kv.Key] = $kv.Value
}
}
}
} else {
foreach ($prop in $i.psobject.properties) { $o[$prop.Name] = $prop.Value }
}
}
$imSplat = {
if (-not $accumulate.Count) { return }
$o = [Ordered]@{}
foreach ($in in $accumulate) {
. $aSplat $o $in
}
$ok = @($o.Keys)
:nextKey foreach ($k in $ok) {
if ($Map -and $map.$k) {
foreach ($mk in $map.$k) {
if ($mk -is [string]) { $o[$mk] = $o[$k] }
elseif ($mk -is [Collections.IDictionary]) {
. $aSplat $o $mk
}
elseif ($mk -is [ScriptBlock]) {
$_ = $o[$k]
$mkr = . $mk $_
foreach ($r in $mkr) { . $aSplat $o $r }
}
}
}
if ($Exclude) {
foreach ($ex in $Exclude) {
if (($RegularExpression -and ($k -match $ex)) -or
($k -like $ex)) {
$o.Remove($k)
continue nextKey
}
}
}
if ($include) {
foreach ($in in $include) {
if (($RegularExpression -and ($k -match $in)) -or
($k -like $in)) {
continue nextKey
}
}
$o.Remove($k)
}
}
foreach ($r in $Remove) { $o.Remove($r) }
$accumulate.Clear()
$o
}
}
process {
$isTheEndOfTheLine =
$MyInvocation.PipelinePosition -eq $MyInvocation.PipelineLength
if ($Splat) { $accumulate.AddRange($Splat) }
if ($Add) { $accumulate.AddRange($add) }
if (-not $isTheEndOfTheLine) {
. $imSplat
}
}
end {
. $imSplat
}
}