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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
#! /usr/bin/env bash
#
# Simple pre-commit hook script, enforcing clang-format on our tree
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
GIT_TOP="$(git rev-parse --show-toplevel)"
source "$GIT_TOP/tools/clang-format.sh"
case $(uname -s) in
Darwin)
FORMAT=${FORMAT:-${ROOT}/clang-format/clang-format.osx}
;;
Linux)
FORMAT=${FORMAT:-${ROOT}/clang-format/clang-format.linux}
;;
*)
echo "Leif needs to build a clang-format for $(uname -s)"
exit 2
esac
# If there is no clang-format in our git repo, then try from git config
[ ! -x "$FORMAT" ] && FORMAT=$(git config clangFormat.binary)
# Make sure we have some clang-format executable...
if [ ! -x "$FORMAT" ]; then
echo "No clang-format found"
exit 1
fi
source "$GIT_TOP/tools/yapf.sh"
if [ ! -d ${YAPF_VENV} ]
then
echo "Run \"make yaf\""
exit 1
fi
source ${AUTOPEP8_VENV}/bin/activate
# Where to store the patch
clang_patch_file=$(mktemp -t clang-format.XXXXXXXXXX)
yapf_patch_file=$(mktemp -t yapf.XXXXXXXXXX)
trap "rm -f $clang_patch_file $yapf_patch_file" 0 1 2 3 5 15
# Loop over all files that are changed, and produce a diff file
source ${YAPF_VENV}/bin/activate
REPO_ROOT=$(cd $(dirname $0) && git rev-parse --show-toplevel)
YAPF_CONFIG=${REPO_ROOT}/.style.yapf
git diff-index --cached --diff-filter=ACMR --name-only HEAD | grep -vE "lib/yamlcpp" | while read file; do
case "$file" in
*.cc | *.c | *.h | *.h.in)
${FORMAT} "$file" | diff -u "$file" - >> "$clang_patch_file"
;;
# Keep this list of Python extensions the same with the list of
# extensions searched for in the toosl/yapf.sh script.
*.py | *.cli.ext | *.test.ext)
yapf \
--style ${YAPF_CONFIG} \
--parallel \
--diff \
"$file" >>"$yapf_patch_file"
;;
esac
done
if [ -s "$clang_patch_file" ] ; then
echo "The commit is not accepted, because clang-format does not match current"
echo "requirements. Easiest to fix this is to run:"
echo
echo " $ make -j clang-format"
exit 1
else
echo "This commit complies with the current clang-format indentation rules."
echo
fi
if [ -s "$yapf_patch_file" ]; then
echo "The commit is not accepted because yapf reports issues with it."
echo "The easiest way to fix this is to run:"
echo
echo " $ make yapf"
exit 1
else
echo "This commit complies with the current yapf formatting rules."
echo
fi
# Cleanup before exit
deactivate
rm -f "$clang_patch_file" "$yapf_patch_file"
exit 0
|