-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathformat.sh
executable file
·83 lines (67 loc) · 2.52 KB
/
format.sh
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
#!/usr/bin/env bash
# adapted from ray project
# Cause the script to exit if a single command fails
set -euo pipefail
# this stops git rev-parse from failing if we run this from the .git directory
builtin cd "$(dirname "${BASH_SOURCE:-$0}")"
ROOT="$(git rev-parse --show-toplevel)"
builtin cd "$ROOT" || exit 1
# GIT_LS_EXCLUDES=(
# ':(exclude)python/ray/cloudpickle/'
# )
# Format all files, and print the diff to stdout for travis.
format_all() {
echo "$(date)" "clang-format...."
if command -v clang-format >/dev/null; then
git ls-files -- '*.cc' '*.h' '*.proto' "${GIT_LS_EXCLUDES[@]}" | xargs clang-format -i
fi
echo "$(date)" "done!"
}
# Format files that differ from main branch. Ignores dirs that are not slated
# for autoformat yet.
format_changed() {
# The `if` guard ensures that the list of filenames is not empty, which
# could cause yapf to receive 0 positional arguments, making it hang
# waiting for STDIN.
#
# `diff-filter=ACRM` and $MERGEBASE is to ensure we only format files that
# exist on both branches.
MERGEBASE="$(git merge-base origin/main HEAD)"
echo "$(date)" "clang-format...."
if which clang-format >/dev/null; then
if ! git diff --diff-filter=ACRM --quiet --exit-code "$MERGEBASE" -- '*.cc' '*.h' &>/dev/null; then
git diff --name-only --diff-filter=ACRM "$MERGEBASE" -- '*.cc' '*.h' | xargs -P 5 \
clang-format -i
fi
fi
echo "$(date)" "rustfmt...."
if which rustfmt >/dev/null; then
if ! git diff --diff-filter=ACRM --quiet --exit-code "$MERGEBASE" -- '*.rs' &>/dev/null; then
git diff --name-only --diff-filter=ACRM "$MERGEBASE" -- '*.rs' | xargs -P 5 \
rustfmt --unstable-features
fi
fi
echo "$(date)" "done!"
}
# This flag formats individual files. --files *must* be the first command line
# arg to use this option.
if [ "${1-}" == '--all' ]; then
format_all "${@}"
git --no-pager diff
else
# Add the origin remote if it doesn't exist
if ! git remote -v | grep -q origin; then
git remote add 'origin' '[email protected]:phoenix-dataplane/phoenix.git'
fi
# Only fetch master since that's the branch we're diffing against.
git fetch origin main || true
# Format only the files that changed in last commit.
format_changed
fi
if ! git diff --quiet &>/dev/null; then
echo 'Reformatted changed files. Please review and stage the changes.'
echo 'Files updated:'
echo
git --no-pager diff --name-only
exit 1
fi