2021-01-22 16:44:05 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-09-18 09:34:43 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
cd "${script_path}/.." || exit 1
|
|
|
|
|
2020-12-27 14:34:06 +00:00
|
|
|
if [ "$#" -eq "1" ]; then
|
2024-07-16 11:41:50 +00:00
|
|
|
files=()
|
|
|
|
while IFS= read -r file; do
|
|
|
|
files+=("$file")
|
|
|
|
done < <(
|
2020-12-27 14:34:06 +00:00
|
|
|
git ls-files -- \
|
|
|
|
'*.cpp' \
|
|
|
|
'*.h' \
|
2023-09-19 14:49:21 +00:00
|
|
|
'*.mm' \
|
2024-11-09 17:25:08 +00:00
|
|
|
':!:Base'
|
2020-12-27 14:34:06 +00:00
|
|
|
)
|
|
|
|
else
|
|
|
|
files=()
|
|
|
|
for file in "${@:2}"; do
|
2023-09-19 14:49:21 +00:00
|
|
|
if [[ "${file}" == *".cpp" || "${file}" == *".h" || "${file}" == *".mm" ]]; then
|
2020-12-27 14:34:06 +00:00
|
|
|
files+=("${file}")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2020-09-18 09:34:43 +00:00
|
|
|
|
2020-12-27 14:34:06 +00:00
|
|
|
if (( ${#files[@]} )); then
|
2022-04-10 09:21:54 +00:00
|
|
|
TOOLCHAIN_DIR=Toolchain/Local/clang/bin
|
2021-01-10 07:20:21 +00:00
|
|
|
CLANG_FORMAT=false
|
2024-04-24 10:50:38 +00:00
|
|
|
if command -v clang-format-18 >/dev/null 2>&1 ; then
|
|
|
|
CLANG_FORMAT=clang-format-18
|
|
|
|
elif command -v brew >/dev/null 2>&1 && command -v "$(brew --prefix llvm@18)"/bin/clang-format >/dev/null 2>&1 ; then
|
|
|
|
CLANG_FORMAT="$(brew --prefix llvm@18)"/bin/clang-format
|
|
|
|
elif command -v $TOOLCHAIN_DIR/clang-format >/dev/null 2>&1 && $TOOLCHAIN_DIR/clang-format --version | grep -qF ' 18.' ; then
|
2022-04-10 09:21:54 +00:00
|
|
|
CLANG_FORMAT=$TOOLCHAIN_DIR/clang-format
|
2021-01-10 07:20:21 +00:00
|
|
|
elif command -v clang-format >/dev/null 2>&1 ; then
|
|
|
|
CLANG_FORMAT=clang-format
|
2024-10-12 20:47:19 +00:00
|
|
|
if ! "${CLANG_FORMAT}" --version | awk '{ if (substr($NF, 1, index($NF, ".") - 1) != 18) exit 1; }'; then
|
|
|
|
echo "You are using '$("${CLANG_FORMAT}" --version)', which appears to not be clang-format 18."
|
2021-01-10 07:20:21 +00:00
|
|
|
echo "It is very likely that the resulting changes are not what you wanted."
|
|
|
|
fi
|
|
|
|
else
|
2024-04-24 10:50:38 +00:00
|
|
|
echo "clang-format-18 is not available, but C or C++ files need linting! Either skip this script, or install clang-format-18."
|
2024-10-12 20:47:19 +00:00
|
|
|
echo "(If you install a package 'clang-format', please make sure it's version 18.)"
|
2021-01-10 07:20:21 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-10-26 18:14:17 +00:00
|
|
|
if [ "$#" -gt "0" ] && [ "--overwrite-inplace" = "$1" ] ; then
|
2021-01-10 07:20:21 +00:00
|
|
|
true # The only way to run this script.
|
|
|
|
else
|
|
|
|
# Note that this branch also covers --help, -h, -help, -?, etc.
|
|
|
|
echo "USAGE: $0 --overwrite-inplace"
|
|
|
|
echo "The argument is necessary to make you aware that this *will* overwrite your local files."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using ${CLANG_FORMAT}"
|
|
|
|
|
2020-12-27 14:34:06 +00:00
|
|
|
"${CLANG_FORMAT}" -style=file -i "${files[@]}"
|
|
|
|
echo "Maybe some files have changed. Sorry, but clang-format doesn't indicate what happened."
|
|
|
|
else
|
2023-09-19 14:49:21 +00:00
|
|
|
echo "No .cpp, .h or .mm files to check."
|
2020-12-27 14:34:06 +00:00
|
|
|
fi
|