2015-12-17 15:40:54 +01:00
|
|
|
@REM Script to run AStyle on the sources
|
2018-01-31 10:03:41 +01:00
|
|
|
@REM The version check in this script is used to avoid commit battles
|
|
|
|
@REM between different developers that use different astyle versions as
|
|
|
|
@REM different versions might have different output (this has happened in
|
|
|
|
@REM the past).
|
|
|
|
|
|
|
|
@REM If project management wishes to take a newer astyle version into use
|
|
|
|
@REM just change this string to match the start of astyle version string.
|
2018-01-31 12:53:26 +01:00
|
|
|
@SET ASTYLE_VERSION="Artistic Style Version 3.0.1"
|
|
|
|
@SET ASTYLE="astyle"
|
2018-01-31 10:03:41 +01:00
|
|
|
|
2018-01-31 12:53:26 +01:00
|
|
|
@SET DETECTED_VERSION=""
|
|
|
|
@FOR /F "tokens=*" %%i IN ('%ASTYLE% --version') DO SET DETECTED_VERSION=%%i
|
|
|
|
@ECHO %DETECTED_VERSION% | FINDSTR /B /C:%ASTYLE_VERSION% > nul && (
|
|
|
|
ECHO "%DETECTED_VERSION%" matches %ASTYLE_VERSION%
|
2018-01-31 10:03:41 +01:00
|
|
|
) || (
|
2018-01-31 12:53:26 +01:00
|
|
|
ECHO You should use: %ASTYLE_VERSION%
|
|
|
|
ECHO Detected: "%DETECTED_VERSION%"
|
|
|
|
GOTO EXIT_ERROR
|
2018-01-31 10:03:41 +01:00
|
|
|
)
|
2010-04-18 21:27:02 +02:00
|
|
|
|
2018-01-08 20:20:33 +01:00
|
|
|
@SET STYLE=--style=kr --indent=spaces=4 --indent-namespaces --lineend=linux --min-conditional-indent=0
|
|
|
|
@SET OPTIONS=--pad-header --unpad-paren --suffix=none --convert-tabs --attach-inlines --attach-classes --attach-namespaces
|
2010-04-18 21:27:02 +02:00
|
|
|
|
2018-01-31 10:03:41 +01:00
|
|
|
%ASTYLE% %STYLE% %OPTIONS% cli/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% cli/*.h
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% democlient/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% gui/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% gui/*.h
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r gui/test/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r gui/test/*.h
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% lib/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% lib/*.h
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% test/*.cpp
|
2018-06-20 09:56:10 +02:00
|
|
|
%ASTYLE% %STYLE% %OPTIONS% test/cfg/*.c
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% test/cfg/*.cpp
|
2018-01-31 10:03:41 +01:00
|
|
|
%ASTYLE% %STYLE% %OPTIONS% test/*.h
|
|
|
|
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r tools/*.cpp
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r tools/*.h
|
|
|
|
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r samples/*.c
|
|
|
|
%ASTYLE% %STYLE% %OPTIONS% -r samples/*.cpp
|
|
|
|
|
2018-01-31 12:53:26 +01:00
|
|
|
@REM Format configuration files
|
|
|
|
@SET XMLLINT=xmllint
|
|
|
|
WHERE %XMLLINT%
|
|
|
|
@IF %ERRORLEVEL% NEQ 0 (
|
|
|
|
ECHO WARNING: %XMLLINT% was not found. Skipping configuration file formatting!
|
|
|
|
) ELSE (
|
|
|
|
PUSHD "cfg"
|
|
|
|
FOR /F "tokens=* delims=" %%f IN ('DIR /B *.cfg') DO @CALL :runxmllint "%%f"
|
|
|
|
POPD
|
|
|
|
)
|
|
|
|
|
|
|
|
@GOTO :EOF
|
2018-01-31 10:03:41 +01:00
|
|
|
|
|
|
|
:EXIT_ERROR
|
2018-01-31 12:53:26 +01:00
|
|
|
EXIT /B 1
|
|
|
|
|
|
|
|
@REM Function that formats one XML file
|
|
|
|
@REM Argument: %1: XML-File to format
|
|
|
|
:runxmllint
|
|
|
|
xmllint --format -o "%~1_" "%~1"
|
|
|
|
MOVE /Y "%~1_" "%~1"
|
|
|
|
@GOTO :EOF
|