2017-04-06 09:10:59 +02:00
|
|
|
#! /bin/bash
|
|
|
|
function perform_lint() {
|
2017-04-06 10:01:09 +02:00
|
|
|
echo "Performing LINT..."
|
2017-05-26 17:03:46 +02:00
|
|
|
if hash clang-format-4.0 2>/dev/null; then
|
|
|
|
CLANG_FORMAT=clang-format-4.0
|
2017-04-06 10:01:09 +02:00
|
|
|
else
|
|
|
|
CLANG_FORMAT=clang-format
|
|
|
|
fi
|
2017-04-06 16:03:29 +02:00
|
|
|
echo "LINT: Using binary $CLANG_FORMAT"
|
2017-04-06 10:01:09 +02:00
|
|
|
CLANG_FORMAT_WHITELIST="util/travis/clang-format-whitelist.txt"
|
|
|
|
|
2017-05-22 07:28:35 +02:00
|
|
|
files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')"
|
2017-04-06 10:01:09 +02:00
|
|
|
|
|
|
|
local errorcount=0
|
|
|
|
local fail=0
|
|
|
|
for f in ${files_to_lint}; do
|
|
|
|
d=$(diff -u "$f" <(${CLANG_FORMAT} "$f") || true)
|
|
|
|
|
|
|
|
if ! [ -z "$d" ]; then
|
2017-04-06 16:03:29 +02:00
|
|
|
whitelisted=$(awk '$1 == "'$f'" { print 1 }' "$CLANG_FORMAT_WHITELIST")
|
2017-04-06 10:01:09 +02:00
|
|
|
|
|
|
|
# If file is not whitelisted, mark a failure
|
2017-04-06 16:03:29 +02:00
|
|
|
if [ -z ${whitelisted} ]; then
|
2017-04-06 10:01:09 +02:00
|
|
|
errorcount=$((errorcount+1))
|
|
|
|
|
|
|
|
printf "The file %s is not compliant with the coding style" "$f"
|
|
|
|
if [ ${errorcount} -gt 50 ]; then
|
|
|
|
printf "\nToo many errors encountered previously, this diff is hidden.\n"
|
|
|
|
else
|
|
|
|
printf ":\n%s\n" "$d"
|
|
|
|
fi
|
|
|
|
|
|
|
|
fail=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$fail" = 1 ]; then
|
|
|
|
echo "LINT reports failure."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "LINT OK"
|
2017-04-06 09:10:59 +02:00
|
|
|
}
|
|
|
|
|