Files
GacUI/Tools/GacBuild.ps1
2018-07-06 06:46:25 -07:00

131 lines
6.0 KiB
PowerShell

<#
Do an incremental build to all GacUI Xml Resource files directly or indirectly in the folder containing $FileName.
If you set -Dump, then this scripts stops before the real building process, it outputs following files for debug:
$($FileName).log\ResourceFiles.txt: All resource files that are found
$($FileName).log\BuildCandidates.txt: All resource files that are outdated, so they will be build
$($FileName).log\ResourceAnonymousFiles.txt: All anonymous resource files
$($FileName).log\ResourceNamedFiles.txt: All named resource files in the correct order sorted using dependencies
$($FileName).log\ResourceNamedMapping.txt: Resource name to full path mappings for GacGen.exe /P <resource-xml> <HERE>
$FileName should points to an Xml file with this format:
<GacUI>
<Exclude Pattern="...."/>
...
</GacUI>
GacBuild.ps1 searches all GacUI Xml Resource files, but whose full patch matches one of the pattern will be ignored.
You should use "/" instead of "\" in the pattern attribute.
In order to make your resource file, be able to depend on others, or be able to be depended by others,
you should add the following metadata in GacGenConfig like this:
<Resource>
<Folder name="GacGenConfig">
<Xml name="Metadata">
<ResourceMetadata Name="NAME" Version="1.0">
<Dependencies>
<Resource Name="NAME-OF-RESOURCE-YOU-WANT-TO-DEPEND"/>
....
</Dependencies>
</ResourceMetadata>
</Xml>
<Folder name="Cpp">
<Text name="Resource">The output path for unscripted binary resource. Use GetResourceManager()->LoadResourceOrPending to load the resource.</Text>
<Text name="Compressed">The output path for unscripted compressed binary resource. Call DecompressStream before loading the resource.</Text>
<Text name="CppResource">The output path for unscripted binary resource embedded in C++ code. Just add this cpp file to your project and it just works.</Text>
<Text name="CppCompressed">The output path for unscripted binary resource embedded in C++ code. Just add this cpp file to your project and it just works.</Text>
<Text name="NormalInclude">#include targets in generated C++ files, seperated by semicolon.</Text>
<Text name="ReflectionInclude">#include targets in generated C++ files when you turn on reflection, seperated by semicolon.</Text>
<Text name="Name">General file name for generated C++ files without extension.</Text>
<Text name="SourceFolder">The output folder for all generated C++ files.</Text>
</Folder>
<Folder name="ResX86">
<Text name="Resource">The output path for scripted binary resource. Use GetResourceManager()->LoadResourceOrPending with GuiResourceUsage::InstanceClass to load the resource.</Text>
<Text name="Compressed">The output path for scripted compressed binary resource. Use GetResourceManager()->LoadResourceOrPending to load the resource.</Text>
<Text name="Assembly">Generated Workflow script, which is equivalent to generated C++ code. All assemblies are included in scripted binary resources, but if you want to load unscripted binary resources and assemblies separately, you will need this file.</Text>
</Folder>
<Folder name="ResX64">
<!-- just like RexX86 but they are for x64. x86 and x64 generates different Workflow script. -->
</Folder>
</Folder>
</Folder>
...
</Resource>
#>
[CmdLetBinding()]
param (
[Parameter(Mandatory=$true)][String]$FileName,
[Switch]$Dump
)
. $PSScriptRoot\StartProcess.ps1
. $PSScriptRoot\GacCommon.ps1
# Prevent from displaying "Debug or Close Application" dialog on crash
$dontshowui_key = "HKCU:\Software\Microsoft\Windows\Windows Error Reporting"
$dontshowui_value = (Get-ItemProperty $dontshowui_key).DontShowUI
Set-ItemProperty $dontshowui_key -Name DontShowUI -Value 1
try {
if (-not (Test-Path -Path $FileName)) {
throw "Input does not exist: $FileName"
}
$FileName = (Resolve-Path -Path $FileName).Path
if (Test-Path -Path "$($FileName).log") {
Remove-Item -Path "$($FileName).log" -Recurse | Out-Null
}
New-Item -ItemType Directory "$($FileName).log" | Out-Null
EnumerateResourceFiles $FileName
if (-not (Test-Path -Path "$($FileName).log\ResourceFiles.txt")) {
throw "Failed to enumerate GacUI Xml Resource files"
}
$resource_dump_files = @{}
$resource_dumps = @{}
DumpResourceFiles $FileName $resource_dump_files
$resource_dump_files.Keys | ForEach-Object {
$resource_dumps[$_] = [Xml](Get-Content $resource_dump_files[$_])
}
$build_candidates_file = "$($FileName).log\BuildCandidates.txt"
$anonymous_file = "$($FileName).log\ResourceAnonymousFiles.txt"
$named_file = "$($FileName).log\ResourceNamedFiles.txt"
$mapping_file = "$($FileName).log\ResourceNamedMapping.txt"
EnumerateBuildCandidates $resource_dumps $build_candidates_file
EnumerateAnonymousResources $resource_dumps $anonymous_file
EnumerateNamedResources $resource_dumps $named_file $mapping_file
if ($dump) {
Write-Host "Dumps:"
Write-Host " $($build_candidates_file)"
Write-Host " $($anonymous_file)"
Write-Host " $($named_file)"
Write-Host " $($mapping_file)"
}
if (-not $dump) {
Write-Host "Rebuilding all outdated binaries ..."
$build_candidates = Get-Content $build_candidates_file
(@() + (ForceArray (Get-Content $anonymous_file)) + (ForceArray(Get-Content $named_file))) | ForEach-Object {
try {
if ($build_candidates -contains $_) {
Write-Host "[BUILD] $($_)"
& $PSScriptRoot\GacGen.ps1 -FileName $_ -MappingFileName $mapping_file
} else {
Write-Host "[SKIPPED] $($_)"
}
} catch {
Write-Host $_.Exception.Message -ForegroundColor Red
}
}
}
}
catch {
Write-Host $_.Exception.Message -ForegroundColor Red
}
Set-ItemProperty $dontshowui_key -Name DontShowUI -Value $dontshowui_value
[Console]::ResetColor()