forked from MethodsAndPractices/vsteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Merge-File.ps1
238 lines (185 loc) · 6.16 KB
/
Merge-File.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
function Merge-File {
<#
.SYNOPSIS
Combines all the files in the provided inputFile into a single file.
.DESCRIPTION
The input file must be a JSON file in the following format:
{
output: "outputFileName.ps1",
files: ["file1.ps1", "file2.ps1"]
}
All the files are read and any using statements removed. All the
removed using statements are collected and written at the top of the
output file. All comments will also be removed from the output file.
.PARAMETER InputFile
The JSON file to process.
.PARAMETER outputDir
The destination folder.
.EXAMPLE
PS C:\> Merge-File -InputFile .\Source\Classes\classes.json
#>
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string]
$inputFile,
[Parameter(Mandatory = $True)]
[string]
$outputDir
)
$fullPath = $(Resolve-Path $inputFile)
Write-Verbose "Full Path: $fullPath"
$fileOrder = Get-Content $fullPath -Raw | ConvertFrom-Json
Write-Output "Processing: $($fileOrder.fileType) => $($fileOrder.outputFile)"
$workingDir = Split-Path $fullPath
Write-Verbose "Working Directory: $workingDir"
$output = Join-Path $outputDir $fileOrder.outputFile
Push-Location
Set-Location $workingDir
try {
$files = $()
foreach ($file in $fileOrder.files) {
$children = $(Get-ChildItem -Filter $file)
if ($children.Length -eq 0) {
Write-Warning "Could not find $file"
}
foreach ($item in $children) {
$files += , (Resolve-Path $item.FullName)
}
}
$files = $files | select-object -Unique # We don't worry about case sensitivity, because for Linux to work it needs to be cased correctly anyways
# This makes sure the file is there and empty.
# If the file already exisit it will be overwritten.
$null = New-Item -ItemType file -Path $output -Force
Write-Verbose "Creating: $output"
switch ($fileOrder.fileType) {
'formats' {
Merge-Format $files | Add-Content $output
}
'types' {
Merge-Type $files | Add-Content $output
}
'functions' {
Merge-Function $files | Add-Content $output
}
Default {
Merge-Class $files | Add-Content $output
}
}
}
catch {
throw $_
}
finally {
Pop-Location
}
}
function Merge-Format {
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string[]]
$files
)
process {
$finalXml = '<?xml version="1.0" encoding="utf-8" ?><Configuration><ViewDefinitions>'
ForEach ($file in $files) {
Write-Verbose -Message "Merging from $file"
$fileContents = Get-Content $file
$newFileContents = ($fileContents -replace '<!--.+-->', '')
[xml]$xml = $newFileContents
$finalXml += $xml.Configuration.ViewDefinitions.InnerXml
}
$finalXml += '</ViewDefinitions></Configuration>'
Write-Output ([xml]$finalXml).OuterXml
}
}
function Merge-Type {
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string[]]
$files
)
process {
$finalXml = '<?xml version="1.0" encoding="utf-8" ?><Types>'
ForEach ($file in $files) {
Write-Verbose -Message "Merging from $file"
$fileContents = Get-Content $file
$newFileContents = ($fileContents -replace '<!--.+-->', '')
[xml]$xml = $newFileContents
$finalXml += $xml.Types.InnerXml
}
$finalXml += '</Types>'
Write-Output ([xml]$finalXml).OuterXml
}
}
function Merge-Function {
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string[]]
$files
)
process {
$contents = New-Object System.Text.StringBuilder
foreach ($file in $files) {
Write-Verbose -Message "Merging from $file"
$fileContents = Get-Content $file
$foundCmdletBinding = $false
if($null -ne $($fileContents | Select-String -Pattern 'CmdletBinding')){
$foundCmdletBinding = $true
}
foreach ($line in $fileContents) {
$line = ($line -replace ' +$', '')
if ($null -ne $line.Trim() -and '' -ne $line.Trim()) {
$contents.AppendLine($line) | Out-Null
}
}
if(-not $foundCmdletBinding) {
Write-Warning -Message "CmdletBinding not found in $file"
}
}
# Remove all trailing whitespace
Write-Output $contents.ToString()
}
}
function Merge-Class {
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)]
[string[]]
$files
)
process {
$usingsSb = New-Object System.Text.StringBuilder
$contents = New-Object System.Text.StringBuilder
$usings = @()
ForEach ($file in $files) {
Write-Verbose -Message "Merging from $file"
$fileContents = Get-Content $file
# Find all the usings and save them
$matches = $fileContents | Select-String 'using.+'
ForEach ($m in $matches) {
Write-Verbose "Found $($m.Line)"
# Don't add duplicate usings
if ($null -eq ($usings | Where-Object { $_ -eq $m.Line })) {
$usingsSb.AppendLine($m.Line) | Out-Null
$usings += , $m.Line
}
}
# Remove move all the using statements and comments
$newFileContents = ($fileContents -replace 'using.+', '')
# Remove all trailing whitespace
$newFileContents = ($newFileContents -replace ' +$', '')
# This not only removes the comment but any whitespace before it.
$newFileContents = ($newFileContents -replace ' +#.+', '')
foreach ($line in $newFileContents) {
if ($null -ne $line.Trim() -and '' -ne $line.Trim()) {
$contents.AppendLine($line) | Out-Null
}
}
}
Write-Output "$($usingsSb.ToString()) $($contents.ToString())"
}
}