forked from danmar/cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runastyle.bat
67 lines (57 loc) · 2.14 KB
/
runastyle.bat
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
@REM Script to run AStyle on the sources
@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.
@SET ASTYLE_VERSION="Artistic Style Version 3.0.1"
@SET ASTYLE="astyle"
@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%
) || (
ECHO You should use: %ASTYLE_VERSION%
ECHO Detected: "%DETECTED_VERSION%"
GOTO EXIT_ERROR
)
@SET RCFILE=.astylerc
%ASTYLE% --options=%RCFILE% cli/*.cpp
%ASTYLE% --options=%RCFILE% cli/*.h
%ASTYLE% --options=%RCFILE% democlient/*.cpp
%ASTYLE% --options=%RCFILE% gui/*.cpp
%ASTYLE% --options=%RCFILE% gui/*.h
%ASTYLE% --options=%RCFILE% -r gui/test/*.cpp
%ASTYLE% --options=%RCFILE% -r gui/test/*.h
%ASTYLE% --options=%RCFILE% lib/*.cpp
%ASTYLE% --options=%RCFILE% lib/*.h
%ASTYLE% --options=%RCFILE% oss-fuzz/*.cpp
%ASTYLE% --options=%RCFILE% oss-fuzz/*.h
%ASTYLE% --options=%RCFILE% test/*.cpp
%ASTYLE% --options=%RCFILE% test/cfg/*.c
%ASTYLE% --options=%RCFILE% test/cfg/*.cpp
%ASTYLE% --options=%RCFILE% test/*.h
%ASTYLE% --options=%RCFILE% -r tools/*.cpp
%ASTYLE% --options=%RCFILE% -r tools/*.h
%ASTYLE% --options=%RCFILE% -r samples/*.c
%ASTYLE% --options=%RCFILE% -r samples/*.cpp
@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
:EXIT_ERROR
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