| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 1 | #!/bin/bash | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 2 | set -e | 
| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 3 |  | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 4 | # This script reformats source files using various formatters and linters. | 
| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 5 | # | 
|  | 6 | # Files are changed in-place, so make sure you don't have anything open in an | 
|  | 7 | # editor, and you may want to commit before formatting in case of awryness. | 
|  | 8 | # | 
|  | 9 | # This must be run on a clean repository to succeed | 
|  | 10 | # | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 11 | function display_help() | 
|  | 12 | { | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 13 | echo "usage: format-code.sh [-h | --help] [--no-diff] [--disable <tool>]" | 
|  | 14 | echo "                      [--list-tools] [<path>]" | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 15 | echo | 
|  | 16 | echo "Format and lint a repository." | 
|  | 17 | echo | 
|  | 18 | echo "Arguments:" | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 19 | echo "    --list-tools      Display available linters and formatters" | 
|  | 20 | echo "    --no-diff         Don't show final diff output" | 
|  | 21 | echo "    --disable <tool>  Disable linter" | 
| Patrick Williams | 26d9d2c | 2022-12-05 15:03:07 -0600 | [diff] [blame] | 22 | echo "    --allow-missing   Run even if linters are not all present" | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 23 | echo "    path              Path to git repository (default to pwd)" | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 24 | } | 
| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 25 |  | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 26 | LINTERS_ALL=( \ | 
|  | 27 | commit_gitlint \ | 
|  | 28 | commit_spelling \ | 
|  | 29 | clang_format \ | 
|  | 30 | eslint \ | 
|  | 31 | pycodestyle \ | 
|  | 32 | shellcheck \ | 
|  | 33 | ) | 
|  | 34 | LINTERS_DISABLED=() | 
|  | 35 | LINTERS_ENABLED=() | 
| Patrick Williams | 785327a | 2022-12-05 16:20:43 -0600 | [diff] [blame] | 36 | declare -A LINTERS_FAILED=() | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 37 |  | 
| Patrick Williams | 26d9d2c | 2022-12-05 15:03:07 -0600 | [diff] [blame] | 38 | eval set -- "$(getopt -o 'h' --long 'help,list-tools,no-diff,disable:,allow-missing' -n 'format-code.sh' -- "$@")" | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 39 | while true; do | 
|  | 40 | case "$1" in | 
|  | 41 | '-h'|'--help') | 
|  | 42 | display_help && exit 0 | 
|  | 43 | ;; | 
| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 44 |  | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 45 | '--list-tools') | 
|  | 46 | echo "Available tools:" | 
|  | 47 | for t in "${LINTERS_ALL[@]}"; do | 
|  | 48 | echo "    $t" | 
|  | 49 | done | 
|  | 50 | exit 0 | 
|  | 51 | ;; | 
|  | 52 |  | 
| Patrick Williams | d27ab4c | 2022-11-27 17:51:35 -0600 | [diff] [blame] | 53 | '--no-diff') | 
|  | 54 | OPTION_NO_DIFF=1 | 
|  | 55 | shift | 
|  | 56 | ;; | 
|  | 57 |  | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 58 | '--disable') | 
|  | 59 | LINTERS_DISABLED+=("$2") | 
|  | 60 | shift && shift | 
|  | 61 | ;; | 
|  | 62 |  | 
| Patrick Williams | 26d9d2c | 2022-12-05 15:03:07 -0600 | [diff] [blame] | 63 | '--allow-missing') | 
|  | 64 | ALLOW_MISSING=yes | 
|  | 65 | shift | 
|  | 66 | ;; | 
|  | 67 |  | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 68 | '--') | 
|  | 69 | shift | 
|  | 70 | break | 
|  | 71 | ;; | 
|  | 72 |  | 
|  | 73 | *) | 
|  | 74 | echo "unknown option: $1" | 
|  | 75 | display_help && exit 1 | 
|  | 76 | ;; | 
|  | 77 | esac | 
|  | 78 | done | 
|  | 79 |  | 
|  | 80 | # Detect tty and set nicer colors. | 
|  | 81 | if [ -t 1 ]; then | 
|  | 82 | BLUE="\e[34m" | 
|  | 83 | GREEN="\e[32m" | 
|  | 84 | NORMAL="\e[0m" | 
|  | 85 | RED="\e[31m" | 
|  | 86 | YELLOW="\e[33m" | 
|  | 87 | else # non-tty, no escapes. | 
|  | 88 | BLUE="" | 
|  | 89 | GREEN="" | 
|  | 90 | NORMAL="" | 
|  | 91 | RED="" | 
|  | 92 | YELLOW="" | 
|  | 93 | fi | 
|  | 94 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 95 | # Allow called scripts to know which clang format we are using | 
|  | 96 | export CLANG_FORMAT="clang-format" | 
|  | 97 |  | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 98 | # Path to default config files for linters. | 
|  | 99 | CONFIG_PATH="$(git -C "$(dirname "${BASH_SOURCE[0]}")" rev-parse --show-toplevel)/config" | 
|  | 100 |  | 
|  | 101 | # Find repository root for `pwd` or $1. | 
|  | 102 | if [ -z "$1" ]; then | 
|  | 103 | DIR="$(git rev-parse --show-toplevel || pwd)" | 
|  | 104 | else | 
|  | 105 | DIR="$(git -C "$1" rev-parse --show-toplevel)" | 
|  | 106 | fi | 
| Patrick Williams | bc85b71 | 2022-12-05 15:16:27 -0600 | [diff] [blame] | 107 | if [ ! -e "$DIR/.git" ]; then | 
|  | 108 | echo -e "${RED}Error:${NORMAL} Directory ($DIR) does not appear to be a git repository" | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 109 | exit 1 | 
|  | 110 | fi | 
| Andrew Jeffery | 0cce848 | 2018-04-30 11:37:01 +0930 | [diff] [blame] | 111 |  | 
| Manojkiran Eda | e6f120a | 2021-03-20 11:13:43 +0530 | [diff] [blame] | 112 | cd "${DIR}" | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 113 | echo -e "    ${BLUE}Formatting code under${NORMAL} $DIR" | 
| Andrew Geissler | 9b0105c | 2018-01-10 10:58:35 -0800 | [diff] [blame] | 114 |  | 
| Patrick Williams | 3d29494 | 2022-12-05 14:58:15 -0600 | [diff] [blame] | 115 | # Config hashes: | 
|  | 116 | #   LINTER_REQUIRE - The requirements to run a linter, semi-colon separated. | 
|  | 117 | #       1. Executable. | 
|  | 118 | #       2. [optional] Configuration file. | 
|  | 119 | #       3. [optional] Global fallback configuration file. | 
|  | 120 | # | 
|  | 121 | #   LINTER_IGNORE - An optional set of semi-colon separated ignore-files | 
|  | 122 | #       specific to the linter. | 
|  | 123 | # | 
|  | 124 | #   LINTER_TYPES - The file types supported by the linter, semi-colon separated. | 
|  | 125 | # | 
|  | 126 | #   LINTER_CONFIG - The config (from LINTER_REQUIRE) chosen for the repository. | 
|  | 127 | # | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 128 | declare -A LINTER_REQUIRE=() | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 129 | declare -A LINTER_IGNORE=() | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 130 | declare -A LINTER_TYPES=() | 
| Patrick Williams | 3d29494 | 2022-12-05 14:58:15 -0600 | [diff] [blame] | 131 | declare -A LINTER_CONFIG=() | 
| Manojkiran Eda | 87111bb | 2021-08-14 11:26:16 +0530 | [diff] [blame] | 132 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 133 | LINTER_REQUIRE+=([commit_spelling]="codespell") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 134 | LINTER_TYPES+=([commit_spelling]="commit") | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 135 | function do_commit_spelling() { | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 136 | # Run the codespell with openbmc spcific spellings on the patchset | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 137 | echo -n "openbmc-dictionary - misspelling count >> " | 
|  | 138 | sed "s/Signed-off-by.*//" "$@" | \ | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 139 | codespell -D "${CONFIG_PATH}/openbmc-spelling.txt" -d --count - | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 140 |  | 
|  | 141 | # Run the codespell with generic dictionary on the patchset | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 142 | echo -n "generic-dictionary - misspelling count >> " | 
|  | 143 | sed "s/Signed-off-by.*//" "$@" | \ | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 144 | codespell --builtin clear,rare,en-GB_to_en-US -d --count - | 
|  | 145 | } | 
|  | 146 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 147 | LINTER_REQUIRE+=([commit_gitlint]="gitlint") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 148 | LINTER_TYPES+=([commit_gitlint]="commit") | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 149 | function do_commit_gitlint() { | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 150 | gitlint --extra-path "${CONFIG_PATH}/gitlint/" \ | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 151 | --config "${CONFIG_PATH}/.gitlint" | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 152 | } | 
|  | 153 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 154 | LINTER_REQUIRE+=([eslint]="eslint;.eslintrc.json;${CONFIG_PATH}/eslint-global-config.json") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 155 | LINTER_IGNORE+=([eslint]=".eslintignore") | 
|  | 156 | LINTER_TYPES+=([eslint]="json") | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 157 | function do_eslint() { | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 158 | eslint --no-eslintrc -c "${LINTER_CONFIG[eslint]}" \ | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 159 | --ext .json --format=stylish \ | 
|  | 160 | --resolve-plugins-relative-to /usr/local/lib/node_modules \ | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 161 | --no-error-on-unmatched-pattern "$@" | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 162 | } | 
| Manojkiran Eda | 87111bb | 2021-08-14 11:26:16 +0530 | [diff] [blame] | 163 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 164 | LINTER_REQUIRE+=([pycodestyle]="pycodestyle;setup.cfg") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 165 | LINTER_TYPES+=([pycodestyle]="python") | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 166 | function do_pycodestyle() { | 
| Patrick Williams | 617a3f2 | 2022-12-07 09:54:47 -0600 | [diff] [blame^] | 167 | pycodestyle --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203,E501 \ | 
|  | 168 | --show-source "$@" | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 169 | } | 
| James Feist | f1665d6 | 2019-11-22 09:06:33 -0800 | [diff] [blame] | 170 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 171 | LINTER_REQUIRE+=([shellcheck]="shellcheck;.shellcheck") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 172 | LINTER_TYPES+=([shellcheck]="bash;sh") | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 173 | function do_shellcheck() { | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 174 | shellcheck --color=never -x "$@" | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 175 | } | 
| James Feist | f1665d6 | 2019-11-22 09:06:33 -0800 | [diff] [blame] | 176 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 177 | LINTER_REQUIRE+=([clang_format]="clang-format;.clang-format") | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 178 | LINTER_IGNORE+=([clang_format]=".clang-ignore;.clang-format-ignore") | 
|  | 179 | LINTER_TYPES+=([clang_format]="c;cpp") | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 180 | function do_clang_format() { | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 181 | "${CLANG_FORMAT}" -i "$@" | 
|  | 182 | } | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 183 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 184 | function get_file_type() | 
|  | 185 | { | 
|  | 186 | case "$(basename "$1")" in | 
|  | 187 | # First to early detect template files. | 
|  | 188 | *.in | *.meson) echo "meson-template" && return ;; | 
|  | 189 | *.mako | *.mako.*) echo "mako" && return ;; | 
| Patrick Williams | d535ecb | 2022-12-02 14:54:18 -0600 | [diff] [blame] | 190 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 191 | *.ac) echo "autoconf" && return ;; | 
|  | 192 | *.[ch]) echo "c" && return ;; | 
|  | 193 | *.[ch]pp) echo "cpp" &&  return ;; | 
|  | 194 | *.json) echo "json" && return ;; | 
|  | 195 | *.md) echo "markdown" && return ;; | 
|  | 196 | *.py) echo "python" && return ;; | 
|  | 197 | *.yaml | *.yml) echo "yaml" && return ;; | 
| Patrick Williams | d535ecb | 2022-12-02 14:54:18 -0600 | [diff] [blame] | 198 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 199 | # Special files. | 
|  | 200 | .git/COMMIT_EDITMSG) echo "commit" && return ;; | 
|  | 201 | meson.build) echo "meson" && return ;; | 
|  | 202 | esac | 
|  | 203 |  | 
|  | 204 | case "$(file "$1")" in | 
|  | 205 | *Bourne-Again\ shell*) echo "bash" && return ;; | 
|  | 206 | *C++\ source*) echo "cpp" && return ;; | 
|  | 207 | *C\ source*) echo "c" && return ;; | 
|  | 208 | *JSON\ data*) echo "json" && return ;; | 
|  | 209 | *POSIX\ shell*) echo "sh" && return ;; | 
|  | 210 | *Python\ script*) echo "python" && return ;; | 
|  | 211 | *zsh\ shell*) echo "zsh" && return ;; | 
|  | 212 | esac | 
|  | 213 |  | 
|  | 214 | echo "unknown" | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 215 | } | 
|  | 216 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 217 | function check_linter() | 
|  | 218 | { | 
|  | 219 | TITLE="$1" | 
|  | 220 | IFS=";" read -r -a ARGS <<< "$2" | 
|  | 221 |  | 
| Patrick Williams | 147f37a | 2022-12-04 14:57:10 -0600 | [diff] [blame] | 222 | if [[ "${LINTERS_DISABLED[*]}" =~ $1 ]]; then | 
|  | 223 | return | 
|  | 224 | fi | 
|  | 225 |  | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 226 | EXE="${ARGS[0]}" | 
|  | 227 | if [ ! -x "${EXE}" ]; then | 
|  | 228 | if ! which "${EXE}" > /dev/null 2>&1 ; then | 
|  | 229 | echo -e "    ${YELLOW}${TITLE}:${NORMAL} cannot find ${EXE}" | 
| Patrick Williams | 26d9d2c | 2022-12-05 15:03:07 -0600 | [diff] [blame] | 230 | if [ -z "$ALLOW_MISSING" ]; then | 
|  | 231 | exit 1 | 
|  | 232 | fi | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 233 | return | 
|  | 234 | fi | 
|  | 235 | fi | 
|  | 236 |  | 
|  | 237 | CONFIG="${ARGS[1]}" | 
|  | 238 | FALLBACK="${ARGS[2]}" | 
|  | 239 |  | 
|  | 240 | if [ -n "${CONFIG}" ]; then | 
|  | 241 | if [ -e "${CONFIG}" ]; then | 
|  | 242 | LINTER_CONFIG+=( [${TITLE}]="${CONFIG}" ) | 
|  | 243 | elif [ -n "${FALLBACK}" ] && [ -e "${FALLBACK}" ]; then | 
|  | 244 | echo -e "    ${YELLOW}${TITLE}:${NORMAL} cannot find ${CONFIG}; using ${FALLBACK}" | 
|  | 245 | LINTER_CONFIG+=( [${TITLE}]="${FALLBACK}" ) | 
|  | 246 | else | 
|  | 247 | echo -e "    ${YELLOW}${TITLE}:${NORMAL} cannot find config ${CONFIG}" | 
|  | 248 | return | 
|  | 249 | fi | 
|  | 250 | fi | 
|  | 251 |  | 
|  | 252 | LINTERS_ENABLED+=( "${TITLE}" ) | 
|  | 253 | } | 
|  | 254 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 255 | # Check for a global .linter-ignore file. | 
|  | 256 | GLOBAL_IGNORE=("cat") | 
|  | 257 | if [ -e ".linter-ignore" ]; then | 
|  | 258 | GLOBAL_IGNORE=("${CONFIG_PATH}/lib/ignore-filter" ".linter-ignore") | 
|  | 259 | fi | 
|  | 260 |  | 
|  | 261 | # Find all the files in the git repository and organize by type. | 
|  | 262 | declare -A FILES=() | 
|  | 263 | if [ -e .git/COMMIT_EDITMSG ]; then | 
|  | 264 | FILES+=([commit]=".git/COMMIT_EDITMSG") | 
|  | 265 | fi | 
|  | 266 | while read -r file; do | 
|  | 267 | ftype="$(get_file_type "$file")" | 
|  | 268 | FILES+=([$ftype]="$(echo -ne "$file;${FILES[$ftype]:-}")") | 
|  | 269 | done < <(git ls-files | "${GLOBAL_IGNORE[@]}") | 
|  | 270 |  | 
|  | 271 | # For each linter, check if there are an applicable files and if it can | 
|  | 272 | # be enabled. | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 273 | for op in "${LINTERS_ALL[@]}"; do | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 274 | for ftype in ${LINTER_TYPES[$op]//;/ }; do | 
|  | 275 | if [[ -v FILES["$ftype"] ]]; then | 
|  | 276 | check_linter "$op" "${LINTER_REQUIRE[${op}]}" | 
|  | 277 | break | 
|  | 278 | fi | 
|  | 279 | done | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 280 | done | 
|  | 281 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 282 | # Call each linter. | 
| Patrick Williams | dad9b7a | 2022-11-30 13:10:20 -0600 | [diff] [blame] | 283 | for op in "${LINTERS_ENABLED[@]}"; do | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 284 |  | 
|  | 285 | # Determine the linter-specific ignore file(s). | 
|  | 286 | LOCAL_IGNORE=("${CONFIG_PATH}/lib/ignore-filter") | 
|  | 287 | if [[ -v LINTER_IGNORE["$op"] ]]; then | 
|  | 288 | for ignorefile in ${LINTER_IGNORE["$op"]//;/ } ; do | 
|  | 289 | if [ -e "$ignorefile" ]; then | 
|  | 290 | LOCAL_IGNORE+=("$ignorefile") | 
|  | 291 | fi | 
|  | 292 | done | 
|  | 293 | fi | 
|  | 294 | if [ 1 -eq ${#LOCAL_IGNORE[@]} ]; then | 
|  | 295 | LOCAL_IGNORE=("cat") | 
|  | 296 | fi | 
|  | 297 |  | 
|  | 298 | # Find all the files for this linter, filtering out the ignores. | 
|  | 299 | LINTER_FILES=() | 
|  | 300 | while read -r file ; do | 
|  | 301 | if [ -e "$file" ]; then | 
|  | 302 | LINTER_FILES+=("$file") | 
|  | 303 | fi | 
|  | 304 | done < <(for ftype in ${LINTER_TYPES[$op]//;/ }; do | 
|  | 305 | # shellcheck disable=SC2001 | 
|  | 306 | echo "${FILES["$ftype"]:-}" | sed "s/;/\\n/g" | 
|  | 307 | done | "${LOCAL_IGNORE[@]}") | 
|  | 308 |  | 
|  | 309 | # Call the linter now with all the files. | 
| Patrick Williams | 200ec18 | 2022-12-06 08:32:03 -0600 | [diff] [blame] | 310 | if [ 0 -ne ${#LINTER_FILES[@]} ]; then | 
|  | 311 | echo -e "    ${BLUE}Running $op${NORMAL}" | 
|  | 312 | if ! "do_$op" "${LINTER_FILES[@]}" ; then | 
|  | 313 | LINTERS_FAILED+=([$op]=1) | 
|  | 314 | fi | 
|  | 315 | else | 
|  | 316 | echo -e "    ${YELLOW}${op}:${NORMAL} all applicable files are on ignore-lists" | 
| Patrick Williams | 785327a | 2022-12-05 16:20:43 -0600 | [diff] [blame] | 317 | fi | 
| Patrick Williams | 38515a3 | 2022-11-27 06:58:56 -0600 | [diff] [blame] | 318 | done | 
| Andrew Jeffery | 457b6d1 | 2018-03-09 15:28:14 +1030 | [diff] [blame] | 319 |  | 
| Patrick Williams | 785327a | 2022-12-05 16:20:43 -0600 | [diff] [blame] | 320 | # Check for failing linters. | 
|  | 321 | if [ 0 -ne ${#LINTERS_FAILED[@]} ]; then | 
|  | 322 | for op in "${!LINTERS_FAILED[@]}"; do | 
|  | 323 | echo -e "$op: ${RED}FAILED${NORMAL}" | 
|  | 324 | done | 
|  | 325 | exit 1 | 
|  | 326 | fi | 
|  | 327 |  | 
| Patrick Williams | 71b7324 | 2022-12-02 21:07:52 -0600 | [diff] [blame] | 328 | # Check for differences. | 
| Patrick Williams | d27ab4c | 2022-11-27 17:51:35 -0600 | [diff] [blame] | 329 | if [ -z "$OPTION_NO_DIFF" ]; then | 
|  | 330 | echo -e "    ${BLUE}Result differences...${NORMAL}" | 
|  | 331 | if ! git --no-pager diff --exit-code ; then | 
|  | 332 | echo -e "Format: ${RED}FAILED${NORMAL}" | 
|  | 333 | exit 1 | 
|  | 334 | else | 
|  | 335 | echo -e "Format: ${GREEN}PASSED${NORMAL}" | 
|  | 336 | fi | 
| Patrick Williams | c1513c8 | 2022-11-27 17:37:08 -0600 | [diff] [blame] | 337 | fi | 
|  | 338 |  | 
| Andrew Jeffery | 457b6d1 | 2018-03-09 15:28:14 +1030 | [diff] [blame] | 339 | # Sometimes your situation is terrible enough that you need the flexibility. | 
|  | 340 | # For example, phosphor-mboxd. | 
| Patrick Williams | 330b077 | 2022-11-28 06:14:06 -0600 | [diff] [blame] | 341 | for formatter in "format-code.sh" "format-code"; do | 
|  | 342 | if [[ -x "${formatter}" ]]; then | 
|  | 343 | echo -e "    ${BLUE}Calling secondary formatter:${NORMAL} ${formatter}" | 
|  | 344 | "./${formatter}" | 
|  | 345 | if [ -z "$OPTION_NO_DIFF" ]; then | 
|  | 346 | git --no-pager diff --exit-code | 
|  | 347 | fi | 
| Patrick Williams | d27ab4c | 2022-11-27 17:51:35 -0600 | [diff] [blame] | 348 | fi | 
| Patrick Williams | 330b077 | 2022-11-28 06:14:06 -0600 | [diff] [blame] | 349 | done |