maintainer-checkpatch.bash 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2015 Wind River Systems, Inc.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. exe_name=$(basename $0)
  8. # check the last n patches patches from the current branch for errors
  9. # usage: maintainer-checkpatch.bash [(-n <num commits>) | (-c <commit>)] [-s]
  10. # where: -n <num commits> selects the last n commits (default: 1)
  11. # -c <commit> selects the "since" commit
  12. # -s asks for a summary instead of details
  13. #
  14. # -c and -n are mutually exclusive
  15. checkpatch_switches="\
  16. --patch \
  17. --no-tree \
  18. --show-types \
  19. --max-line-length=100 \
  20. "
  21. ignore_list=BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING,FILE_PATH_CHANGES,GERRIT_CHANGE_ID
  22. timestamp_bin=${ZEPHYR_BASE}/scripts/checkpatch/timestamp
  23. timestamp="${timestamp_bin} -u"
  24. checkpatch_bin=${ZEPHYR_BASE}/scripts/checkpatch.pl
  25. checkpatch="${checkpatch_bin} ${checkpatch_switches} --ignore ${ignore_list}"
  26. ts=$(${timestamp})
  27. outdir=/tmp/${exe_name}-${ts}
  28. declare num_commits=1
  29. declare summary=n
  30. declare since_commit=""
  31. function usage {
  32. printf "usage: %s [(-n <num commits>) | (-c <commit>)] [-s]\n" $exe_name >&2
  33. }
  34. function fail {
  35. usage
  36. exit -1
  37. }
  38. function format_patch_fail {
  39. printf "'git format-patch' failed\n"
  40. exit -1
  41. }
  42. function verify_needed {
  43. needed="\
  44. ${timestamp_bin} \
  45. ${checkpatch_bin} \
  46. "
  47. for i in $needed; do
  48. type $i &>/dev/null
  49. if [ $? != 0 ]; then
  50. printf "need '%s' but not found in PATH\n" $i >&2
  51. exit -1
  52. fi
  53. done
  54. }
  55. function get_opts {
  56. declare -r optstr="n:c:sh"
  57. while getopts ${optstr} opt; do
  58. case ${opt} in
  59. n) num_commits=${OPTARG} ;;
  60. c) since_commit=${OPTARG} ;;
  61. s) summary=y ;;
  62. h) usage; exit 0 ;;
  63. *) fail ;;
  64. esac
  65. done
  66. if [ ${num_commits} != 1 -a "x${since_commit}" != x ]; then
  67. fail
  68. fi
  69. }
  70. verify_needed
  71. get_opts $@
  72. if [ x${since_commit} != x ]; then
  73. since=${since_commit}
  74. else
  75. since=HEAD~${num_commits}
  76. fi
  77. git format-patch ${since} -o ${outdir} 2>/dev/null >/dev/null
  78. [ $? = 0 ] || format_patch_fail
  79. for i in $(ls ${outdir}/*); do
  80. printf "\n$(basename ${i})\n"
  81. if [ ${summary} = y ]; then
  82. ${checkpatch} $i | grep "total:"
  83. else
  84. ${checkpatch} $i
  85. fi
  86. done
  87. rm -rf ${outdir}