2020-07-24 19:57:54 -04:00
#!/usr/bin/env bash
2021-10-24 11:06:46 -06:00
FORMAT_VER = "11"
2020-07-24 19:57:54 -04:00
FORMAT_OPTS = "-i -style=file"
TIDY_OPTS = "-p . --fix --fix-errors"
COMPILER_OPTS = "-fno-builtin -std=gnu90 -Iinclude -Isrc -D_LANGUAGE_C -DNON_MATCHING"
2021-12-28 01:07:41 +00:00
# https://backreference.org/2010/05/23/sanitizing-files-with-no-trailing-newline/index.html
# "gets the last character of the file pipes it into read, which will exit with a nonzero exit code if it encounters EOF before newline (so, if the last character of the file isn't a newline). If read exits nonzero, then append a newline onto the file using echo (if read exits 0, that satisfies the ||, so the echo command isn't run)." (https://stackoverflow.com/a/34865616)
function add_final_newline () {
for file in " $@ "
do
tail -c1 $file | read -r _ || echo >> $file
done
}
export -f add_final_newline
2020-07-24 19:57:54 -04:00
shopt -s globstar
2021-10-24 11:06:46 -06:00
if [ -z ` command -v clang-format-${ FORMAT_VER } ` ]
then
echo "clang-format- ${ FORMAT_VER } not found. Exiting."
exit 1
fi
2020-07-24 19:57:54 -04:00
if (( $# > 0 )) ; then
echo "Formatting file(s) $* "
echo "Running clang-format..."
2021-10-24 11:06:46 -06:00
clang-format-${ FORMAT_VER } ${ FORMAT_OPTS } " $@ "
2020-07-24 19:57:54 -04:00
echo "Running clang-tidy..."
clang-tidy ${ TIDY_OPTS } " $@ " -- ${ COMPILER_OPTS } & > /dev/null
echo "Adding missing final new lines..."
2021-12-28 01:07:41 +00:00
add_final_newline " $@ "
2020-07-24 19:57:54 -04:00
echo "Done formatting file(s) $* "
exit
fi
echo "Formatting C files. This will take a bit"
echo "Running clang-format..."
2021-10-24 11:06:46 -06:00
clang-format-${ FORMAT_VER } ${ FORMAT_OPTS } src/**/*.c
2020-07-24 19:57:54 -04:00
echo "Running clang-tidy..."
clang-tidy ${ TIDY_OPTS } src/**/*.c -- ${ COMPILER_OPTS } & > /dev/null
echo "Adding missing final new lines..."
2021-12-28 01:07:41 +00:00
find src/ -type f -name "*.c" -exec bash -c 'add_final_newline "$@"' bash {} +
find assets/xml/ -type f -name "*.xml" -exec bash -c 'add_final_newline "$@"' bash {} +
2020-07-24 19:57:54 -04:00
echo "Done formatting all files."