mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
c1009c3d7c
* Update documentation for 'Invoke-Preprocessing' Script Tool
* Improve Compile Script a bit Deduplicating a lot of un-needed pre-fixes - Improve implementation for 'Invoke-Preprocessing' Script Tool
* Fix RegEx in 'Invoke-Preprocessing' Script Tool
* Result of Preprocessing
* Update Replace Regex for Code Formatting in 'Invoke-Preprocessing' Script Tool
* Result of Preprocessing
* Update Exclude Files List for Preprocessing in 'Compile.ps1' Script
* Remove Extra Whitespace in some place for 'Invoke-Preprocessing.ps1' Script Tool
* Simplified and Improved the Exclude List Validation Step in 'Invoke-Preprocessing.ps1' Script Tool
* Restore 'workingdir' variable when using '-Run' Parameter with 'Compile.ps1' Script
* Revert "Update Exclude Files List for Preprocessing in 'Compile.ps1' Script"
This reverts commit 674ab0308b
.
* Result of Preprocessing
134 lines
5.2 KiB
PowerShell
134 lines
5.2 KiB
PowerShell
param (
|
|
[switch]$Debug,
|
|
[switch]$Run,
|
|
[switch]$SkipPreprocessing,
|
|
[string]$Arguments
|
|
)
|
|
$OFS = "`r`n"
|
|
$scriptname = "winutil.ps1"
|
|
$workingdir = $PSScriptRoot
|
|
|
|
Push-Location
|
|
Set-Location $workingdir
|
|
|
|
# Variable to sync between runspaces
|
|
$sync = [Hashtable]::Synchronized(@{})
|
|
$sync.PSScriptRoot = $workingdir
|
|
$sync.configs = @{}
|
|
|
|
function Update-Progress {
|
|
param (
|
|
[Parameter(Mandatory, position=0)]
|
|
[string]$StatusMessage,
|
|
|
|
[Parameter(Mandatory, position=1)]
|
|
[ValidateRange(0,100)]
|
|
[int]$Percent,
|
|
|
|
[Parameter(position=2)]
|
|
[string]$Activity = "Compiling"
|
|
)
|
|
|
|
Write-Progress -Activity $Activity -Status $StatusMessage -PercentComplete $Percent
|
|
}
|
|
|
|
$header = @"
|
|
################################################################################################################
|
|
### ###
|
|
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ###
|
|
### ###
|
|
################################################################################################################
|
|
"@
|
|
|
|
if (-NOT $SkipPreprocessing) {
|
|
Update-Progress "Pre-req: Running Preprocessor..." 0
|
|
|
|
# Dot source the 'Invoke-Preprocessing' Function from 'tools/Invoke-Preprocessing.ps1' Script
|
|
$preprocessingFilePath = ".\tools\Invoke-Preprocessing.ps1"
|
|
. $preprocessingFilePath
|
|
|
|
$excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\LICENSE', "$preprocessingFilePath", '*.png', '*.exe')
|
|
$msg = "Pre-req: Code Formatting"
|
|
Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -ProgressStatusMessage $msg -ThrowExceptionOnEmptyFilesList
|
|
}
|
|
|
|
# Create the script in memory.
|
|
Update-Progress "Pre-req: Allocating Memory" 0
|
|
$script_content = [System.Collections.Generic.List[string]]::new()
|
|
|
|
Update-Progress "Adding: Header" 5
|
|
$script_content.Add($header)
|
|
|
|
Update-Progress "Adding: Version" 10
|
|
$script_content.Add($(Get-Content "scripts\start.ps1").replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))
|
|
|
|
Update-Progress "Adding: Functions" 20
|
|
Get-ChildItem "functions" -Recurse -File | ForEach-Object {
|
|
$script_content.Add($(Get-Content $psitem.FullName))
|
|
}
|
|
Update-Progress "Adding: Config *.json" 40
|
|
Get-ChildItem "config" | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
|
$json = (Get-Content $psitem.FullName).replace("'","''")
|
|
$jsonAsObject = $json | convertfrom-json
|
|
|
|
# Add 'WPFInstall' as a prefix to every entry-name in 'applications.json' file
|
|
if ($psitem.Name -eq "applications.json") {
|
|
foreach ($appEntryName in $jsonAsObject.PSObject.Properties.Name) {
|
|
$appEntryContent = $jsonAsObject.$appEntryName
|
|
$jsonAsObject.PSObject.Properties.Remove($appEntryName)
|
|
$jsonAsObject | Add-Member -MemberType NoteProperty -Name "WPFInstall$appEntryName" -Value $appEntryContent
|
|
}
|
|
}
|
|
|
|
# The replace at the end is required, as without it the output of 'converto-json' will be somewhat weird for Multiline Strings
|
|
# Most Notably is the scripts in some json files, making it harder for users who want to review these scripts, which're found in the compiled script
|
|
$json = ($jsonAsObject | convertto-json -Depth 3).replace('\r\n',"`r`n")
|
|
|
|
$sync.configs.$($psitem.BaseName) = $json | convertfrom-json
|
|
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
|
}
|
|
|
|
$xaml = (Get-Content "xaml\inputXML.xaml").replace("'","''")
|
|
|
|
Update-Progress "Adding: Xaml " 90
|
|
|
|
$script_content.Add($(Write-output "`$inputXML = '$xaml'"))
|
|
|
|
$script_content.Add($(Get-Content "scripts\main.ps1"))
|
|
|
|
if ($Debug) {
|
|
Update-Progress "Writing debug files" 95
|
|
$appXamlContent | Out-File -FilePath "xaml\inputApp.xaml" -Encoding ascii
|
|
$tweaksXamlContent | Out-File -FilePath "xaml\inputTweaks.xaml" -Encoding ascii
|
|
$featuresXamlContent | Out-File -FilePath "xaml\inputFeatures.xaml" -Encoding ascii
|
|
} else {
|
|
Update-Progress "Removing temporary files" 99
|
|
Remove-Item "xaml\inputApp.xaml" -ErrorAction SilentlyContinue
|
|
Remove-Item "xaml\inputTweaks.xaml" -ErrorAction SilentlyContinue
|
|
Remove-Item "xaml\inputFeatures.xaml" -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
Set-Content -Path "$scriptname" -Value ($script_content -join "`r`n") -Encoding ascii
|
|
Write-Progress -Activity "Compiling" -Completed
|
|
|
|
Update-Progress -Activity "Validating" -StatusMessage "Checking winutil.ps1 Syntax" -Percent 0
|
|
try {
|
|
$null = Get-Command -Syntax .\winutil.ps1
|
|
} catch {
|
|
Write-Warning "Syntax Validation for 'winutil.ps1' has failed"
|
|
Write-Host "$($Error[0])" -ForegroundColor Red
|
|
}
|
|
Write-Progress -Activity "Validating" -Completed
|
|
|
|
if ($run) {
|
|
$script = "& '$workingdir\$scriptname' $Arguments"
|
|
|
|
$powershellcmd = if (Get-Command pwsh -ErrorAction SilentlyContinue) { "pwsh" } else { "powershell" }
|
|
$processCmd = if (Get-Command wt.exe -ErrorAction SilentlyContinue) { "wt.exe" } else { $powershellcmd }
|
|
|
|
Start-Process $processCmd -ArgumentList "$powershellcmd -NoProfile -Command $script"
|
|
|
|
break
|
|
}
|
|
Pop-Location
|