mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
116 lines
3.0 KiB
PowerShell
116 lines
3.0 KiB
PowerShell
[string[]] $include = '*.h', '*.hh', '*.hpp', '*.c', '*.cc', '*.cpp'
|
|
[string[]] $exclude = '*.g.*', '*.refactor'
|
|
|
|
|
|
$path_root = git rev-parse --show-toplevel
|
|
$path_build = Join-Path $path_root build
|
|
$path_project = Join-Path $path_root project
|
|
$path_test = Join-Path $path_root test
|
|
$path_thirdparty = Join-Path $path_root thirdparty
|
|
|
|
$refactor = Join-Path $path_build refactor.exe
|
|
|
|
# Gather the files to be formatted.
|
|
$targetFiles = @(Get-ChildItem -Recurse -Path $path_thirdparty -Include $include -Exclude $exclude | Select-Object -ExpandProperty FullName)
|
|
$refactoredFiles = @()
|
|
|
|
foreach ( $file in $targetFiles )
|
|
{
|
|
$destination = Join-Path $path_test (Split-Path $file -leaf)
|
|
$destination = $destination.Replace( '.h', '.refactored.h' )
|
|
$destination = $destination.Replace( '.c', '.refactored.c' )
|
|
|
|
$refactoredFiles += $destination
|
|
}
|
|
|
|
|
|
write-host "Beginning thirdpary refactor..."
|
|
|
|
$file_spec = Join-Path $path_test zpl.refactor
|
|
|
|
$refactorParams = @(
|
|
"-src=$(Join-Path $path_thirdparty "zpl.h")",
|
|
"-dst=$(Join-Path $path_test "zpl.refactored.h")",
|
|
"-spec=$($file_spec)"
|
|
)
|
|
|
|
if ( $args.Contains( "debug" ) )
|
|
{
|
|
$refactorParams += "-debug"
|
|
}
|
|
|
|
write-host "`zpl refactor: " $refactorParams
|
|
& $refactor $refactorParams
|
|
|
|
$file_spec = Join-Path $path_test "stb_image.refactor"
|
|
|
|
$refactorParams = @(
|
|
"-src=$(Join-Path $path_thirdparty "stb_image.h")",
|
|
"-dst=$(Join-Path $path_test "stb_image.refactored.h")",
|
|
"-spec=$($file_spec)"
|
|
)
|
|
|
|
if ( $args.Contains( "debug" ) )
|
|
{
|
|
$refactorParams += "-debug"
|
|
}
|
|
|
|
write-host "`n`nstb_image refactor: " $refactorParams
|
|
& $refactor $refactorParams
|
|
|
|
Write-Host "`nRefactoring complete`n"
|
|
|
|
|
|
write-host "Beginning project refactor..."
|
|
|
|
# Gather the files to be formatted.
|
|
$targetFiles = @(Get-ChildItem -Recurse -Path $path_project -Include $include -Exclude $exclude | Select-Object -ExpandProperty FullName)
|
|
$refactoredFiles = @()
|
|
|
|
$file_spec = Join-Path $path_test project.refactor
|
|
|
|
foreach ( $file in $targetFiles )
|
|
{
|
|
$destination = Join-Path $path_test (Split-Path $file -leaf)
|
|
$destination = $destination.Replace( '.hpp', '.refactored.hpp' )
|
|
$destination = $destination.Replace( '.cpp', '.refactored.cpp' )
|
|
|
|
$refactoredFiles += $destination
|
|
}
|
|
|
|
$refactorParams = @(
|
|
"-num=$($targetFiles.Count)"
|
|
"-src=$($targetFiles)",
|
|
"-dst=$($refactoredFiles)",
|
|
"-spec=$($file_spec)"
|
|
)
|
|
|
|
if ( $args.Contains( "debug" ) )
|
|
{
|
|
$refactorParams += "-debug"
|
|
}
|
|
|
|
& $refactor $refactorParams
|
|
|
|
write-host "`nRefactoring complete`n"
|
|
|
|
|
|
# Can't format zpl library... (It hangs clang format)
|
|
if ( $false ) {
|
|
Write-Host "Beginning format...`n"
|
|
|
|
# Format the files.
|
|
$formatParams = @(
|
|
'-i' # In-place
|
|
'-style=file' # Search for a .clang-format file in the parent directory of the source file.
|
|
'-verbose'
|
|
)
|
|
|
|
$targetFiles = @(Get-ChildItem -Recurse -Path $path_test -Include $include -Exclude $exclude | Select-Object -ExpandProperty FullName)
|
|
|
|
clang-format $formatParams $targetFiles
|
|
|
|
Write-Host "`nFormatting complete"
|
|
}
|
|
|