2 # Copyright 2020, The Tor Project, Inc.
3 # See LICENSE for licensing information.
6 # DO NOT COMMIT OR MERGE CODE THAT IS RUN THROUGH THIS TOOL YET.
8 # WE ARE STILL DISCUSSING OUR DESIRED STYLE AND ITERATING ON IT.
12 # This script runs "clang-format" and "codetool" in sequence over each of its
13 # arguments. It either replaces the original, or says whether anything has
14 # changed, depending on its arguments.
16 # We can't just use clang-format directly, since we also want to use codetool
17 # to reformat a few things back to how we want them, and we want avoid changing
18 # the mtime on files that didn't actually change.
20 # Use "-i" to edit the file in-place.
21 # Use "-c" to exit with a nonzero exit status if any file needs to change.
22 # Use "-d" to emit diffs.
24 # The "-a" option tells us to run over every Tor source file.
25 # The "-v" option tells us to be verbose.
36 SCRIPT_NAME
=$
(basename "$0")
37 SCRIPT_DIR
=$
(dirname "$0")
38 SRC_DIR
="${SCRIPT_DIR}/../../src"
41 echo "$SCRIPT_NAME [-h] [-c|-d|-i] [-v] [-a|-G|files...]"
44 echo " -h: show this help text"
45 echo " -c: check whether files are correctly formatted"
46 echo " -d: print a diff for the changes that would be applied"
47 echo " -i: change files in-place"
48 echo " -a: run over all the C files in Tor"
49 echo " -v: verbose mode"
50 echo " -g: look at the files that have changed in git."
51 echo " -G: look at the files that are staged for the git commit."
55 echo " $SCRIPT_NAME -a -i"
56 echo " rewrite every file in place, whether it has changed or not."
57 echo " $SCRIPT_NAME -a -d"
58 echo " as above, but only display the changes."
59 echo " $SCRIPT_NAME -g -i"
60 echo " update every file that you have changed in the git working tree."
61 echo " $SCRIPT_NAME -G -c"
62 echo " exit with an error if any staged changes are not well-formatted."
67 while getopts "acdgGhiv" opt
; do
95 # get rid of the flags; keep the filenames.
98 # Define a verbose function.
99 if [[ $VERBOSE = 1 ]]; then
111 # We have to be in at least one mode, or we can't do anything
112 if [[ $CHECKMODE = 0 && $DIFFMODE = 0 && $CHANGEMODE = 0 ]]; then
113 echo "Nothing to do. You need to specify -c, -d, or -i."
114 echo "Try $SCRIPT_NAME -h for more information."
118 # We don't want to "give an error if anything would change" if we're
119 # actually trying to change things.
120 if [[ $CHECKMODE = 1 && $CHANGEMODE = 1 ]]; then
121 echo "It doesn't make sense to use -c and -i together."
124 # It doesn't make sense to look at "all files" and "git files"
125 if [[ $
((ALL
+ GITIDX
+ GITDIFF
)) -gt 1 ]]; then
126 echo "It doesn't make sense to use more than one of -a, -g, or -G together."
130 if [[ $FILEARGS_OK = 1 ]]; then
131 # The filenames are on the command-line.
134 if [[ "$#" != 0 ]]; then
135 echo "Can't use -a, -g, or -G with additional command-line arguments."
140 if [[ $ALL = 1 ]]; then
141 # We're in "all" mode -- use find(1) to find the filenames.
142 mapfile
-d '' INPUTS
< <(find "${SRC_DIR}"/{lib
,core
,feature
,app
,test,tools
} -name '[^.]*.[ch]' -print0)
143 elif [[ $GITIDX = 1 ]]; then
144 # We're in "git index" mode -- use git diff --cached to find the filenames
145 # that are changing in the index, then strip out the ones that
147 mapfile INPUTS
< <(git
diff --name-only --cached --diff-filter=AMCR |
grep '\.[ch]$')
148 elif [[ $GITDIFF = 1 ]]; then
149 # We are in 'git diff' mode -- we want everything that changed, including
150 # the index and the working tree.
152 # TODO: There might be a better way to do this.
153 mapfile INPUTS
< <(git
diff --name-only --cached --diff-filter=AMCR |
grep '\.[ch]$'; git
diff --name-only --diff-filter=AMCR |
grep '\.[ch]$' )
156 if [[ $GITIDX = 1 ]]; then
157 # If we're running in git mode, we need to stash all the changes that
158 # we don't want to look at. This is necessary even though we're only
159 # looking at the changed files, since we might have the file only
161 note
"Stashing unstaged changes"
162 git stash
-q --keep-index
163 function restoregit
() {
164 note
"Restoring git state"
168 function restoregit
() {
178 # Set up a trap handler to make sure that on exit, we remove our
179 # tmpfile and un-stash the git environment (if appropriate)
181 trap 'if [ -n "${tmpfname}" ]; then rm -f "${tmpfname}"; fi; restoregit' 0
183 for fname
in "${INPUTS[@]}"; do
184 note
"Inspecting $fname..."
185 tmpfname
="${fname}.$$.clang_fmt.tmp"
187 clang-format
--style=file "${fname}" > "${tmpfname}"
188 "${SCRIPT_DIR}/codetool.py" "${tmpfname}"
192 if [[ $DIFFMODE = 1 ]]; then
193 # If we're running diff for its output, we can also use it
194 # to compare the files.
195 if diff -u "${fname}" "${tmpfname}"; then
201 # We aren't running diff, so we have to compare the files with cmp.
202 if cmp "${fname}" "${tmpfname}" >/dev
/null
2>&1; then
209 if [[ $changed = 1 ]]; then
210 note
"Found a change in $fname"
213 if [[ $CHANGEMODE = 1 ]]; then
214 mv "${tmpfname}" "${fname}"
223 if [[ $CHECKMODE = 1 ]]; then
224 if [[ $ANY_CHANGED = 1 ]]; then
225 note
"Found at least one misformatted file; check failed"
228 note
"No changes found."