-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c706b4c
commit 053d92e
Showing
1 changed file
with
58 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
#!/bin/bash | ||
if [[ ! -e tools/format.sh ]]; then | ||
echo "This tool must be run from the topmost directory." >&2 | ||
exit 1 | ||
fi | ||
|
||
set -e | ||
|
||
FIND="find . -name .git -prune -o -name _deps -prune -o -name .build -prune -o" | ||
|
||
# GNU syntax. | ||
SED=(sed -i) | ||
if [[ "$(uname)" = "Darwin" ]]; then | ||
SED=(sed -i "") | ||
fi | ||
|
||
# Correct common miscapitalizations. | ||
"${SED[@]}" 's/Open[t]elemetry/OpenTelemetry/g' $($FIND -type f -print) | ||
# No CRLF line endings. | ||
"${SED[@]}" 's/\r$//' $($FIND -type f -print) | ||
# No trailing spaces. | ||
"${SED[@]}" 's/ \+$//' $($FIND -type f -print) | ||
|
||
# If not overridden, try to use clang-format-8 or clang-format. | ||
if [[ -z "$CLANG_FORMAT" ]]; then | ||
CLANG_FORMAT=clang-format | ||
if which clang-format-8 >/dev/null; then | ||
CLANG_FORMAT=clang-format-8 | ||
fi | ||
fi | ||
|
||
$CLANG_FORMAT -version | ||
$CLANG_FORMAT -i -style=file \ | ||
$($FIND -name '*.cc' -print -o -name '*.h' -print) | ||
|
||
if which cmake-format >/dev/null; then | ||
echo "Running cmake-format $(cmake-format --version 2>&1)." | ||
cmake-format -i $($FIND -name 'CMakeLists.txt' -print) | ||
else | ||
echo "Can't find cmake-format. It can be installed with:" | ||
echo " pip install --user cmake_format" | ||
exit 1 | ||
fi | ||
|
||
if [[ -z "$BUILDIFIER" ]]; then | ||
BUILDIFIER="$HOME/go/bin/buildifier" | ||
if ! which "$BUILDIFIER" >/dev/null; then | ||
BUILDIFIER=buildifier | ||
fi | ||
fi | ||
if which "$BUILDIFIER" >/dev/null; then | ||
echo "Running $BUILDIFIER" | ||
"$BUILDIFIER" $($FIND -name WORKSPACE -print -o -name BUILD -print -o \ | ||
-name '*.BUILD' -o -name '*.bzl' -print) | ||
else | ||
echo "Can't find buildifier. It can be installed with:" | ||
echo " go get github.com/bazelbuild/buildtools/buildifier" | ||
exit 1 | ||
fi | ||
#if [[ ! -e tools/format.sh ]]; then | ||
# echo "This tool must be run from the topmost directory." >&2 | ||
# exit 1 | ||
#fi | ||
# | ||
#set -e | ||
# | ||
#FIND="find . -name .git -prune -o -name _deps -prune -o -name .build -prune -o" | ||
# | ||
## GNU syntax. | ||
#SED=(sed -i) | ||
#if [[ "$(uname)" = "Darwin" ]]; then | ||
# SED=(sed -i "") | ||
#fi | ||
# | ||
## Correct common miscapitalizations. | ||
#"${SED[@]}" 's/Open[t]elemetry/OpenTelemetry/g' $($FIND -type f -print) | ||
## No CRLF line endings. | ||
#"${SED[@]}" 's/\r$//' $($FIND -type f -print) | ||
## No trailing spaces. | ||
#"${SED[@]}" 's/ \+$//' $($FIND -type f -print) | ||
# | ||
## If not overridden, try to use clang-format-8 or clang-format. | ||
#if [[ -z "$CLANG_FORMAT" ]]; then | ||
# CLANG_FORMAT=clang-format | ||
# if which clang-format-8 >/dev/null; then | ||
# CLANG_FORMAT=clang-format-8 | ||
# fi | ||
#fi | ||
# | ||
#$CLANG_FORMAT -version | ||
#$CLANG_FORMAT -i -style=file \ | ||
# $($FIND -name '*.cc' -print -o -name '*.h' -print) | ||
# | ||
#if which cmake-format >/dev/null; then | ||
# echo "Running cmake-format $(cmake-format --version 2>&1)." | ||
# cmake-format -i $($FIND -name 'CMakeLists.txt' -print) | ||
#else | ||
# echo "Can't find cmake-format. It can be installed with:" | ||
# echo " pip install --user cmake_format" | ||
# exit 1 | ||
#fi | ||
# | ||
#if [[ -z "$BUILDIFIER" ]]; then | ||
# BUILDIFIER="$HOME/go/bin/buildifier" | ||
# if ! which "$BUILDIFIER" >/dev/null; then | ||
# BUILDIFIER=buildifier | ||
# fi | ||
#fi | ||
#if which "$BUILDIFIER" >/dev/null; then | ||
# echo "Running $BUILDIFIER" | ||
# "$BUILDIFIER" $($FIND -name WORKSPACE -print -o -name BUILD -print -o \ | ||
# -name '*.BUILD' -o -name '*.bzl' -print) | ||
#else | ||
# echo "Can't find buildifier. It can be installed with:" | ||
# echo " go get github.com/bazelbuild/buildtools/buildifier" | ||
# exit 1 | ||
#fi |