3 # This file is part of the GROMACS molecular simulation package.
5 # Copyright (c) 2020, by the GROMACS development team, led by
6 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 # and including many others, as listed in the AUTHORS file in the
8 # top-level source directory and at http://www.gromacs.org.
10 # GROMACS is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public License
12 # as published by the Free Software Foundation; either version 2.1
13 # of the License, or (at your option) any later version.
15 # GROMACS is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 # Lesser General Public License for more details.
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with GROMACS; if not, see
22 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 # If you want to redistribute modifications to GROMACS, please
26 # consider that scientific software is very special. Version
27 # control is crucial - bugs must be traceable. We will be happy to
28 # consider code for inclusion in the official distribution, but
29 # derived work must not be called official GROMACS. Details are found
30 # in the README & COPYING files - if they are missing, get the
31 # official version at http://www.gromacs.org.
33 # To help us fund GROMACS development, we humbly ask that you cite
34 # the research papers on the package. Check out http://www.gromacs.org.
36 # This script runs clang tidy checks on modified files and
37 # reports/applies the necessary changes.
39 # See `clang-tidy.sh -h` for a brief usage, and docs/dev-manual/code-formatting.rst
42 # Parse command-line arguments
44 echo "usage: clang-tidy.sh [-f|--force] [--parallel=#Jobs] [--rev=REV]"
45 echo " [--tidy=(off|check)]"
46 echo " [--warnings=<file>] [<action>]"
47 echo " [-B=<builddir>]"
48 echo "<action>: (check*|diff|update)[-(index|workdir*)] (*=default)"
51 action
="check-workdir"
60 if [[ "$arg" == "check-index" ||
"$arg" == "check-workdir" || \
61 "$arg" == "diff-index" ||
"$arg" == "diff-workdir" || \
62 "$arg" == "update-index" ||
"$arg" == "update-workdir" ]]
65 elif [[ "$arg" == "check" ||
"$arg" == "diff" ||
"$arg" == "update" ]] ; then
67 elif [[ "$action" == diff-
* ]] ; then
69 elif [[ "$arg" == --tidy=* ]] ; then
70 tidy_mode
=${arg#--tidy=}
71 if [[ "$tidy_mode" != "off" && "$tidy_mode" != "check" ]] ; then
72 echo "Unknown option: $arg"
77 elif [[ "$arg" == "-f" ||
"$arg" == "--force" ]] ; then
79 elif [[ "$arg" == --parallel=* ]] ; then
80 concurrency
=${arg#--parallel=}
81 elif [[ "$arg" == --rev=* ]] ; then
83 elif [[ "$arg" == --warnings=* ]] ; then
84 warning_file
=${arg#--warnings=}
85 elif [[ "$arg" == -B=* ]] ; then
87 elif [[ "$arg" == "-h" ||
"$arg" == "--help" ]] ; then
91 echo "Unknown option: $arg"
98 # Check that format is present
99 if [[ "$tidy_mode" != "off" ]]
101 if [ -z "$RUN_CLANG_TIDY" ]
103 RUN_CLANG_TIDY
=`git config hooks.runclangtidypath`
105 if [ -z "$RUN_CLANG_TIDY" ]
107 echo "Please set the path to run-clang-tidy using the git hook"
108 echo "git config hooks.runclangtidypath /path/to/run-clang-tidy-9.py"
109 echo "or by setting an environment variable, e.g."
110 echo "RUN_CLANG_TIDY=/path/to/run-clang-tidy-9.py"
113 if ! which "$RUN_CLANG_TIDY" 1>/dev
/null
115 echo "run-clang-tidy-9.py not found: $RUN_CLANG_TIDY"
120 # Switch to the root of the source tree and check the config file
121 srcdir
=`git rev-parse --show-toplevel`
122 pushd $srcdir >/dev
/null ||
exit
124 # Actual processing starts: create a temporary directory
125 tmpdir
=`mktemp -d -t gmxclangtidy.XXXXXX`
127 # Produce a list of changed files
128 # Only include files that have proper filter set in .gitattributes
130 if [[ $action == *-index ]]
132 internal_diff_args
="--cached"
134 git diff-index
$internal_diff_args --diff-filter=ACMR
$baserev >$tmpdir/difflist
135 cut
-f2 <$tmpdir/difflist | \
136 git check-attr
--stdin filter | \
137 sed -e 's/.*: filter: //' | \
138 paste $tmpdir/difflist
- | \
139 grep -E '(complete_formatting|clangformat|copyright|includesort)$' >$tmpdir/filtered
140 cut
-f2 <$tmpdir/filtered
>$tmpdir/filelist_all
141 grep -E '(complete_formatting|clangformat)$' <$tmpdir/filtered | \
142 cut
-f2 >$tmpdir/filelist_clangtidy
143 git diff-files
--name-only |
grep -Ff $tmpdir/filelist_all
>$tmpdir/localmods
145 # Extract changed files to a temporary directory
147 if [[ $action == *-index ]] ; then
148 git checkout-index
--prefix=$tmpdir/org
/ --stdin <$tmpdir/filelist_all
150 rsync
--files-from=$tmpdir/filelist_all
-a $srcdir/ $tmpdir/org
/
152 # check for the existence of the compile_commands.json file and abort
153 # if it is not present. If we don't have a build directory, try the
154 # current source directory.
155 if [ -z $builddir ] ; then
158 if [[ ! -f $builddir/compile_commands.json
]] ; then
159 echo "Could not find compile_commands.json in builddir=$builddir"
160 echo "Make sure you gave a correct build tree and that it contains the file!"
162 # Need to have compilation database file available somewhere above where we are using it
163 rsync
-a $builddir/compile_commands.json
$tmpdir/org
165 # Prepare directory to use for comparing changed and original files
166 cp -r $tmpdir/org
$tmpdir/new
168 # Create output file for what was done (in case no messages get written)
169 touch $tmpdir/messages
171 # Run clang-tidy on the temporary directory
172 # Can only perform clang-tidy on a non-empty list of files
174 if [[ $tidy_mode != "off" && -s $tmpdir/filelist_clangtidy
]] ; then
175 $RUN_CLANG_TIDY `cat $tmpdir/filelist_clangtidy` -header-filter=.
* -j $concurrency -fix -quiet -extra-arg=--cuda-host-only -extra-arg=-nocudainc>$tmpdir/clang-tidy.out
2>&1
176 awk '/warning/,/clang-tidy|^$/' $tmpdir/clang-tidy.out |
grep -v "warnings generated." |
grep -v "Suppressed .* warnings" |
grep -v "clang-analyzer" |
grep -v "to display errors from all non" |
sed '/^\s*$/d' > $tmpdir/clang-tidy-warnings.out
177 awk '/.*error.*/' $tmpdir/clang-tidy.out
> $tmpdir/clang-tidy-errors.out || true
178 if [ -s $tmpdir/clang-tidy-errors.out
]; then
179 echo "Running of clang-tidy failed. Check output below for errors:"
180 cat $tmpdir/clang-tidy-errors.out
184 # Find the changed files if necessary
185 if [[ $action != diff-
* ]] ; then
186 msg
="found code issues"
187 if [[ $action == update-
* ]] ; then
188 msg
="clang-tidy performed"
190 rsync
--files-from=$tmpdir/filelist_all
-a $srcdir/ .
/
191 rsync
-a $tmpdir/org
/ $srcdir/
192 git
diff --no-index --name-only ..
/org
/ . | \
193 awk -v msg
="$msg" '{sub(/.\//,""); print $0 ": " msg}' >> $tmpdir/messages
195 # TODO: Consider checking whether rerunning clang-tidy causes additional changes
200 # If a diff was requested, show it and we are done
201 if [[ $action == diff-
* ]] ; then
202 git
diff --no-index --no-prefix "${diffargs[@]}" org
/ new
/
207 # Find the changed files
208 git
diff --no-index --name-only --exit-code org
/ new
/ | \
209 sed -e 's#new/##' > $tmpdir/changed
211 if [[ -s $tmpdir/changed
]]
216 # Check if changed files have changed outside the index
217 if grep -Ff $tmpdir/localmods
$tmpdir/changed
> $tmpdir/conflicts
219 awk '{print $0 ": has changes in work tree"}' $tmpdir/conflicts \
221 if [[ ! $force && $action == update-
* ]] ; then
222 echo "Modified files found in work tree, skipping update. Use -f to override."
223 echo "The following would have been done:"
224 sort $tmpdir/messages
230 # Update the index/work tree if requested
231 if [[ $action == update-index
]] ; then
232 grep -Ff $tmpdir/changed
$tmpdir/filtered
> $tmpdir/tohash
236 for change
in `cut -f2 $tmpdir/tohash | \
237 git --git-dir=$srcdir/.git hash-object -w --stdin-paths --no-filters | \
238 paste - $tmpdir/tohash`
240 # NOTE: the patterns below contain literal tabs
246 # Contains a literal tab
247 echo "$mode $sha1 $path" >> $tmpdir/toindex
250 git
--git-dir=$srcdir/.git update-index
--index-info < $tmpdir/toindex
251 elif [[ $action == update-workdir
]] ; then
252 rsync
--files-from=$tmpdir/changed
$tmpdir/new
/ $srcdir/
255 # Get back to the original directory
258 # Report what was done
259 if [ -s $tmpdir/clang-tidy-warnings.out
] ; then
260 cat $tmpdir/clang-tidy-warnings.out |
tee $warning_file
262 sort $tmpdir/messages |
tee -a $warning_file