apply-code-format.sh 2.3 KB
Newer Older
1 2 3 4
#!/bin/bash
set -e
set -u

5
# ******************************************************************************
6 7
# Copyright 2017-2018 Intel Corporation
#
8 9 10
# 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
11
#
12
#     http://www.apache.org/licenses/LICENSE-2.0
13
#
14 15 16 17 18
# 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.
19
# ******************************************************************************
20 21 22 23 24 25 26 27

# NOTE: The results of `clang-format` depend _both_ of the following factors:
# - The `.clang-format` file, and
# - The particular version of the `clang-format` program being used.
#
# For this reason, this script specifies the exact version of clang-format to be used.

declare CLANG_FORMAT_BASENAME="clang-format-3.9"
28
declare REQUIRED_CLANG_FORMAT_VERSION=3.9
29 30 31

declare THIS_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

32 33 34
source "${THIS_SCRIPT_DIR}/bash_lib.sh"
source "${THIS_SCRIPT_DIR}/clang_format_lib.sh"

35 36
declare CLANG_FORMAT_PROG
if ! CLANG_FORMAT_PROG="$(which "${CLANG_FORMAT_BASENAME}")"; then
37
    bash_lib_die "Unable to find program ${CLANG_FORMAT_BASENAME}" >&2
38 39
fi

40 41 42
clang_format_lib_verify_version "${CLANG_FORMAT_PROG}" "${REQUIRED_CLANG_FORMAT_VERSION}"
bash_lib_status "Verified that '${CLANG_FORMAT_PROG}' has version '${REQUIRED_CLANG_FORMAT_VERSION}'"

43 44 45 46 47
pushd "${THIS_SCRIPT_DIR}/.."

declare ROOT_SUBDIR
for ROOT_SUBDIR in src test; do
    if ! [[ -d "${ROOT_SUBDIR}" ]]; then
48
	bash_lib_die "In directory '$(pwd)', no subdirectory named '${ROOT_SUBDIR}' was found."
49 50
    fi

51 52
    bash_lib_status "About to format C/C++ code in directory tree '$(pwd)/${ROOT_SUBDIR}' ..."

53 54 55 56
    # Note that we restrict to "-type f" to exclude symlinks. Emacs sometimes
    # creates dangling symlinks with .cpp/.hpp suffixes as a sort of locking
    # mechanism, and this confuses clang-format.
    find "${ROOT_SUBDIR}" -type f -and \( -name '*.cpp' -or -name '*.hpp' \) | xargs "${CLANG_FORMAT_PROG}" -i -style=file
57 58

    bash_lib_status "Done."
59 60 61 62
done

popd