| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- #!/bin/bash
- # Copyright 2017 Google LLC
- #
- # Licensed 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.
- # Usage:
- # ./scripts/style.sh [branch-name | filenames]
- #
- # With no arguments, formats all eligible files in the repo
- # Pass a branch name to format all eligible files changed since that branch
- # Pass a specific file or directory name to format just files found there
- #
- # Commonly
- # ./scripts/style.sh master
- # Strip the clang-format version output down to the major version. Examples:
- # clang-format version 7.0.0 (tags/google/stable/2018-01-11)
- # clang-format version google3-trunk (trunk r333779)
- version=$(clang-format --version)
- # Log the version in non-interactive use as it can be useful in travis logs.
- if [[ ! -t 1 ]]; then
- echo "Found: $version"
- fi
- # Remove leading "clang-format version"
- version="${version/*version /}"
- # Remove trailing parenthetical version details
- version="${version/ (*)/}"
- # Remove everything after the first dot (note this is a glob, not a regex)
- version="${version/.*/}"
- case "$version" in
- 10)
- ;;
- google3-trunk)
- echo "Please use a publicly released clang-format; a recent LLVM release"
- echo "from http://releases.llvm.org/download.html will work."
- echo "Prepend to PATH when running style.sh."
- exit 1
- ;;
- *)
- echo "Please upgrade to clang-format version 10."
- echo "If it's installed via homebrew you can run:"
- echo "brew upgrade clang-format"
- exit 1
- ;;
- esac
- # Ensure that tools in `Mintfile` are installed locally to avoid permissions
- # problems that would otherwise arise from the default of installing in
- # /usr/local.
- export MINT_PATH=Mint
- system=$(uname -s)
- # Joins the given arguments with the separator given as the first argument.
- function join() {
- local IFS="$1"
- shift
- echo "$*"
- }
- clang_options=(-style=file)
- # Rules to disable in swiftformat:
- swift_disable=(
- # sortedImports is broken, sorting into the middle of the copyright notice.
- sortedImports
- # Too many of our swift files have simplistic examples. While technically
- # it's correct to remove the unused argument labels, it makes our examples
- # look wrong.
- unusedArguments
- # We prefer trailing braces.
- wrapMultilineStatementBraces
- )
- swift_options=(
- # Mimic Objective-C style.
- --indent 2
- --maxwidth 100
- --wrapparameters afterfirst
- --disable $(join , "${swift_disable[@]}")
- )
- if [[ $# -gt 0 && "$1" == "test-only" ]]; then
- test_only=true
- clang_options+=(-output-replacements-xml)
- swift_options+=(--dryrun)
- shift
- else
- test_only=false
- clang_options+=(-i)
- fi
- #TODO(#2223) - Find a way to handle spaces in filenames
- files=$(
- (
- if [[ $# -gt 0 ]]; then
- if git rev-parse "$1" -- >& /dev/null; then
- # Argument was a branch name show files changed since that branch
- git diff --name-only --relative --diff-filter=ACMR "$1"
- else
- # Otherwise assume the passed things are files or directories
- find "$@" -type f
- fi
- else
- # Do everything by default
- find . -type f
- fi
- ) | sed -E -n '
- # find . includes a leading "./" that git does not include
- s%^./%%
- # Build outputs
- \%/Pods/% d
- \%^build/% d
- \%^Debug/% d
- \%^Release/% d
- \%^cmake-build-debug/% d
- \%^.build/% d
- \%^.swiftpm/% d
- # pod gen output
- \%^gen/% d
- # FirestoreEncoder is under 'third_party' for licensing reasons but should be
- # formatted.
- \%Firestore/third_party/FirestoreEncoder/.*\.swift% p
- # Sources controlled outside this tree
- \%/third_party/% d
- # Public headers for closed sourced FirebaseAnalytics
- \%^(FirebaseAnalyticsWrapper)/% d
- # Generated source
- \%/Firestore/core/src/util/config.h% d
- # Sources pulled in by travis bundler, with and without a leading slash
- \%^/?vendor/bundle/% d
- # Sources pulled in by the Mint package manager
- \%^Mint% d
- # Auth Sample is not subject to formatting
- \%^(FirebaseAuth/Tests/Sample)/% d
- # Keep Firebase.h indenting
- \%^CoreOnly/Sources/Firebase.h% d
- # Checked-in generated code
- \%\.pb(objc|rpc)\.% d
- \%\.pb\.% d
- \%\.nanopb\.% d
- # Format C-ish sources only
- \%\.(h|m|mm|cc|swift)$% p
- '
- )
- needs_formatting=false
- for f in $files; do
- if [[ "${f: -6}" == '.swift' ]]; then
- if [[ "$system" == 'Darwin' ]]; then
- # Match output that says:
- # 1/1 files would have been formatted. (with --dryrun)
- # 1/1 files formatted. (without --dryrun)
- mint run swiftformat "${swift_options[@]}" "$f" 2>&1 | grep '^1/1 files' > /dev/null
- else
- false
- fi
- else
- clang-format "${clang_options[@]}" "$f" | grep "<replacement " > /dev/null
- fi
- if [[ "$test_only" == true && $? -ne 1 ]]; then
- echo "$f needs formatting."
- needs_formatting=true
- fi
- done
- if [[ "$needs_formatting" == true ]]; then
- echo "Proposed commit is not style compliant."
- echo "Run scripts/style.sh and git add the result."
- exit 1
- fi
|