blob: 053342f87879a630a50e0847b89161c80d309e64 [file] [log] [blame]
Damjan Marion942542f2020-12-12 19:09:31 +01001#!/bin/bash
2
3# Copyright (c) 2020 Cisco and/or its affiliates.
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at:
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -eEo pipefail
17
Ray Kinsella71835982021-03-12 15:57:29 +000018CLANG_FORMAT_VER_REGEX='([0-9]+)\.[0-9]+\.[0-9]+'
19CLANG_FORMAT_DIFF="/usr/share/clang/clang-format-diff.py"
20
Dave Wallacefb1135d2021-11-09 13:58:12 -050021# TODO: Remove clang-format-${CLANG_FORMAT_VER} from 'make install-deps' when
22# CLANG_FORMAT_VER default value is upgraded
Dave Wallace4a332312022-03-17 17:44:35 -040023CLANG_FORMAT_VER=${CLANG_FORMAT_VER:-11}
Damjan Marion942542f2020-12-12 19:09:31 +010024GIT_DIFF_ARGS="-U0 --no-color --relative HEAD~1"
25CLANG_FORMAT_DIFF_ARGS="-style file -p1"
26SUFFIX="-${CLANG_FORMAT_VER}"
27
Ray Kinsella71835982021-03-12 15:57:29 +000028# Attempt to find clang-format to confirm Clang version.
29if command -v clang-format${SUFFIX} &> /dev/null;
30then
31 CLANG_FORMAT=clang-format${SUFFIX}
32elif command -v clang-format &> /dev/null;
33then
34 CLANG_FORMAT=clang-format
35fi
36
37CLANG_FORMAT_VERSION=$(${CLANG_FORMAT} --version)
38echo $CLANG_FORMAT_VERSION
39
40# Confirm that Clang is the expected version.
41if [[ ! $CLANG_FORMAT_VERSION =~ $CLANG_FORMAT_VER_REGEX ]];
42then
43 echo "*******************************************************************"
44 echo "* CHECKSTYLE VERSION REGEX CHECK FAILED"
45 echo "* $CLANG_FORMAT_VERSION"
46 echo "*******************************************************************"
47 exit 1
48fi
49
50if [[ ! $CLANG_FORMAT_VER == "${BASH_REMATCH[1]}" ]];
51then
52 echo "*******************************************************************"
53 echo "* CHECKSTYLE VERSION CHECK FAILED"
54 echo "* Expected major version $CLANG_FORMAT_VER, found ${BASH_REMATCH[1]}"
55 echo "*******************************************************************"
56 exit 1
57fi
58
59# Attempt to find clang-format-diff.
60if command -v clang-format-diff${SUFFIX} &> /dev/null;
61then
62 CLANG_FORMAT_DIFF=clang-format-diff${SUFFIX}
Klement Sekerab9ff03c2022-02-18 16:23:33 +000063elif command -v clang-format-diff.py &> /dev/null;
64then
65 CLANG_FORMAT_DIFF=clang-format-diff.py
Ray Kinsella71835982021-03-12 15:57:29 +000066elif command -v clang-format-diff &> /dev/null;
67then
Klement Sekerab9ff03c2022-02-18 16:23:33 +000068 CLANG_FORMAT_DIFF=clang-format-diff
Ray Kinsella71835982021-03-12 15:57:29 +000069elif [ ! -f $CLANG_FORMAT_DIFF ] ;
70then
71 echo "*******************************************************************"
72 echo "* CHECKSTYLE FAILED"
73 echo "* Could not locate the clang-format-diff script"
74 echo "*******************************************************************"
75 exit 1
76fi
Damjan Marion942542f2020-12-12 19:09:31 +010077
78in=$(mktemp)
Neale Ranns8c0474a2021-01-04 08:58:12 +000079git diff ${GIT_DIFF_ARGS} ':!*.patch' > ${in}
Damjan Marion942542f2020-12-12 19:09:31 +010080
81line_count=$(sed -n '/^+.*\*INDENT-O[NF][F]\{0,1\}\*/p' ${in} | wc -l)
82if [ ${line_count} -gt 0 ] ; then
83 echo
84 sed -n '/^+++ /{h}; /^+.*\*INDENT-O[NF][F]\{0,1\}\*/{x;p;x;p;}' ${in}
85 echo
86 echo "*******************************************************************"
87 echo "* CHECKSTYLE FAILED"
88 echo "* Please remove INDENT-ON and INDENT-OFF from modified lines."
89 echo "*******************************************************************"
90 rm ${in}
91 exit 1
92fi
93
94if [ "${1}" == "--fix" ]; then
Ray Kinsella71835982021-03-12 15:57:29 +000095 cat ${in} | ${CLANG_FORMAT_DIFF} ${CLANG_FORMAT_DIFF_ARGS} -i
Damjan Marion942542f2020-12-12 19:09:31 +010096 filelist=$(sed -n 's/^+++ b\/\(.*\.[ch]\)/\1/p' ${in})
97 git status ${filelist}
98 rm ${in}
99 exit 0
100fi
101
102line_count=$(sed -n '/^+.*\s\+$/p' ${in} | wc -l)
103if [ ${line_count} -gt 0 ] ; then
104 echo
105 sed -n '/^+++/h; /^+.*\s\+$/{x;p;x;p;}' ${in}
106 echo
107 echo "*******************************************************************"
108 echo "* CHECKSTYLE FAILED"
109 echo "* Trailing whitespace detected"
110 echo "*******************************************************************"
111 rm ${in}
112 exit 1
113fi
114
115out=$(mktemp)
116
Ray Kinsella71835982021-03-12 15:57:29 +0000117cat ${in} | ${CLANG_FORMAT_DIFF} ${CLANG_FORMAT_DIFF_ARGS} > ${out}
Damjan Marion942542f2020-12-12 19:09:31 +0100118rm ${in}
119
120line_count=$(cat ${out} | wc -l)
121
122if [ -t 1 ] && [ -n $(tput colors) ] && [ $(tput colors) -ge 1 ] && \
123 command -v highlight &> /dev/null ; then
124 highlight --syntax diff -O ansi ${out}
125else
126 cat ${out}
127fi
128
129rm ${out}
130
131if [ ${line_count} -gt 0 ] ; then
132 echo "*******************************************************************"
133 echo "* CHECKSTYLE FAILED"
134 echo "* CONSULT DIFF ABOVE"
135 echo "* NOTE: Running 'extras/scripts/checkstyle.sh --fix' *MAY* fix the issue"
136 echo "*******************************************************************"
137 exit 1
138else
139 echo "*******************************************************************"
140 echo "* CHECKSTYLE SUCCESSFULLY COMPLETED"
141 echo "*******************************************************************"
142 exit 0
143fi