2009-01-05 16:52:02 +01:00
|
|
|
#!/bin/bash
|
2012-09-28 20:25:46 +02:00
|
|
|
# The version check in this script is used to avoid commit battles
|
2011-06-22 13:20:36 +02:00
|
|
|
# between different developers that use different astyle versions as
|
|
|
|
# different versions might have different output (this has happened in
|
|
|
|
# the past).
|
|
|
|
|
|
|
|
# If project management wishes to take a newer astyle version into use
|
2011-06-22 20:41:14 +02:00
|
|
|
# just change this string to match the start of astyle version string.
|
2018-11-17 09:29:24 +01:00
|
|
|
ASTYLE_VERSION="3.0.1"
|
|
|
|
ASTYLE="${ASTYLE-astyle}"
|
|
|
|
|
|
|
|
DETECTED_VERSION=$("$ASTYLE" --version 2>&1 | awk '{ print $NF; }')
|
|
|
|
if [ "$DETECTED_VERSION" != "${ASTYLE_VERSION}" ]; then
|
|
|
|
echo "You should use version: ${ASTYLE_VERSION}"
|
|
|
|
echo "Detected version: ${DETECTED_VERSION}"
|
|
|
|
exit 1
|
2011-02-11 22:37:38 +01:00
|
|
|
fi
|
2009-01-05 16:52:02 +01:00
|
|
|
|
2018-11-09 09:55:34 +01:00
|
|
|
RCFILE=.astylerc
|
|
|
|
|
2018-11-17 09:29:24 +01:00
|
|
|
"$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 --recursive "gui/test/*.cpp"
|
|
|
|
"$ASTYLE" --options=$RCFILE --recursive "gui/test/*.h"
|
|
|
|
"$ASTYLE" --options=$RCFILE lib/*.cpp
|
|
|
|
"$ASTYLE" --options=$RCFILE lib/*.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 --recursive "tools/*.cpp"
|
|
|
|
"$ASTYLE" --options=$RCFILE --recursive "tools/*.h"
|
|
|
|
|
|
|
|
"$ASTYLE" --options=$RCFILE --recursive "samples/*.c"
|
|
|
|
"$ASTYLE" --options=$RCFILE --recursive "samples/*.cpp"
|
2012-10-03 20:14:23 +02:00
|
|
|
|
|
|
|
# Convert tabs to spaces.. even in strings
|
2013-01-24 19:44:42 +01:00
|
|
|
# sed -i "s/\t/ /g" test/test*.cpp
|
2012-10-03 20:14:23 +02:00
|
|
|
|
2014-10-14 06:46:22 +02:00
|
|
|
# format config files
|
|
|
|
# TODO: use other tool than xmllint? use tabs instead of spaces?
|
2014-10-16 06:38:18 +02:00
|
|
|
for CFGFILE in cfg/*.cfg
|
|
|
|
do
|
2018-11-17 09:29:24 +01:00
|
|
|
xmllint --format -o "${CFGFILE}_" "$CFGFILE"
|
|
|
|
mv -f "${CFGFILE}_" "$CFGFILE"
|
2014-10-16 06:38:18 +02:00
|
|
|
done
|
2018-02-16 09:08:38 +01:00
|
|
|
for PLATFORMFILE in platforms/*.xml
|
|
|
|
do
|
2018-11-17 09:29:24 +01:00
|
|
|
xmllint --format -o "${PLATFORMFILE}_" "$PLATFORMFILE"
|
|
|
|
mv -f "${PLATFORMFILE}_" "$PLATFORMFILE"
|
2018-02-16 09:08:38 +01:00
|
|
|
done
|
2018-10-13 18:39:37 +02:00
|
|
|
|
|
|
|
xmllint --format -o man/cppcheck.1.xml_ man/cppcheck.1.xml
|
|
|
|
mv -f man/cppcheck.1.xml_ man/cppcheck.1.xml
|
2018-11-05 21:14:49 +01:00
|
|
|
|
|
|
|
xmllint --format -o cppcheck-errors_.rng cppcheck-errors.rng
|
|
|
|
mv cppcheck-errors_.rng cppcheck-errors.rng
|