check_known_checkpatch_issues.sh 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2015 Intel Corporation.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. # crawls the source tree to find out the amount of checkpatch issues
  8. # and optionally update scripts/known_checkpatch_issues
  9. # usage: check_known_checkpatch_issues.sh [-u]
  10. # where: -u updates the known_checkpatch_issues db and commits it
  11. # -q is the quiet mode (don't display the diff on stdout)
  12. exe_name=$(basename $0)
  13. do_checkpatch_bin=${ZEPHYR_BASE}/scripts/checkpatch/do_checkpatch.sh
  14. timestamp_bin=${ZEPHYR_BASE}/scripts/checkpatch/timestamp
  15. declare update=n
  16. declare quiet=n
  17. function usage {
  18. printf "usage: %s [-u][-q]\n" ${exe_name} >&2
  19. }
  20. function fail {
  21. usage
  22. exit -1
  23. }
  24. function verify_needed {
  25. needed="\
  26. ${do_checkpatch_bin} \
  27. ${timestamp_bin} \
  28. "
  29. for i in ${needed}; do
  30. type $i &>/dev/null
  31. if [ $? != 0 ]; then
  32. printf "need '%s' but not found in PATH\n" $i >&2
  33. exit -1
  34. fi
  35. done
  36. }
  37. function get_opts {
  38. declare -r optstr="quh"
  39. while getopts ${optstr} opt; do
  40. case ${opt} in
  41. u) update=y ;;
  42. q) quiet=y ;;
  43. h) usage; exit 0 ;;
  44. *) fail ;;
  45. esac
  46. done
  47. }
  48. verify_needed
  49. get_opts $@
  50. do_checkpatch=${do_checkpatch_bin}
  51. timestamp="${timestamp_bin} -u"
  52. ts=$(${timestamp})
  53. uid=$(id -u)
  54. pid=$$
  55. suffix=${uid}-${pid}-${ts}
  56. checkpatch_results=/tmp/checkpatch.results-${suffix}
  57. known_checkpatch_issues=${ZEPHYR_BASE}/scripts/known_checkpatch_issues
  58. checkpatch_issues=/tmp/checkpatch_issues-${suffix}
  59. git_log_params="\
  60. --abbrev=8 \
  61. --abbrev-commit \
  62. "
  63. commit_id_str=$(git log ${git_log_params} HEAD | head -n 1)
  64. echo ${commit_id_str} > ${checkpatch_issues}
  65. ${do_checkpatch} ${checkpatch_results} >> ${checkpatch_issues}
  66. diff_file=/tmp/checkpatch.results.diff-${suffix}
  67. diff -u ${known_checkpatch_issues} ${checkpatch_issues} > ${diff_file}
  68. if [ ${quiet} = n ]; then
  69. cat ${diff_file}
  70. fi
  71. # find all lines that starts with '+' but not '+commit' or '+++ diff'
  72. minuses_err_str=(\
  73. $(cat ${diff_file} | \
  74. grep -v -E "^\-\-\-" | grep -v -E "^\-commit " | grep -E "^\-" | \
  75. awk '{print $1}' | cut -d\- -f 2-) \
  76. )
  77. minuses_num_err=(\
  78. $(cat ${diff_file} | \
  79. grep -v -E "^\-\-\-" | grep -v -E "^\-commit " | grep -E "^\-" | \
  80. awk '{print $2}') \
  81. )
  82. plusses_err_str=(\
  83. $(cat ${diff_file} | \
  84. grep -v -E "^\+\+\+" | grep -v -E "^\+commit " | grep -E "^\+" | \
  85. awk '{print $1}' | cut -d\+ -f 2-) \
  86. )
  87. plusses_num_err=(\
  88. $(cat ${diff_file} | \
  89. grep -v -E "^\+\+\+" | grep -v -E "^\+commit " | grep -E "^\+" | \
  90. awk '{print $2}') \
  91. )
  92. exit_code=0
  93. declare -i num_plusses=${#plusses_num_err[@]}
  94. declare -i num_minuses=${#minuses_num_err[@]}
  95. declare -i test_num=${num_plusses}
  96. while [ ${test_num} -gt 0 ]; do
  97. test_num+=-1
  98. match=n
  99. declare -i i=${num_minuses}
  100. while [ $i -gt 0 ]; do
  101. i+=-1
  102. if [ ${plusses_err_str[${test_num}]} = ${minuses_err_str[$i]} ]; then
  103. n_minus=${minuses_num_err[$i]}
  104. n_plus=${plusses_num_err[${test_num}]}
  105. if [ ${n_plus} -gt ${n_minus} ]; then
  106. exit_code=1
  107. break 2
  108. fi
  109. match=y
  110. break 1
  111. fi
  112. done
  113. if [ ${match} = n ]; then
  114. # there was no match for the plus line, so that is a new error
  115. exit_code=1
  116. break 1
  117. fi
  118. done
  119. if [ ${update} = y ]; then
  120. msg="known_checkpatch_issues: updating to ${commit_id_str}"
  121. cp ${checkpatch_issues} ${known_checkpatch_issues}
  122. git add ${known_checkpatch_issues}
  123. git commit -m "${msg}"
  124. fi
  125. exit ${exit_code}