You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

198 lines
4.9 KiB

  1. #!/bin/sh
  2. set -e
  3. fix=false
  4. quiet=false
  5. while [ "$#" -gt 0 ]; do
  6. case "$1" in
  7. -q)
  8. quiet=true
  9. ;;
  10. -w)
  11. fix=true
  12. ;;
  13. -c)
  14. commit=true
  15. fix=true
  16. quiet=true
  17. ;;
  18. *)
  19. echo "E: invalid argument $1"
  20. exit 1
  21. ;;
  22. esac
  23. shift
  24. done
  25. error() { if [ "$quiet" != true ]; then echo "E: $1"; fi }
  26. info() { if [ "$quiet" != true ]; then echo "I: $1"; fi }
  27. # Ensure the system tools do not attempt to perform multibyte conversions
  28. export LANG=C
  29. # Find out where the top directory is and go there
  30. top_srcdir="$(cd "$(dirname $0)"; cd ..; pwd)"
  31. cd "$top_srcdir"
  32. # Check for working tools
  33. if [ "$(echo foo | grep -c foo)" != 1 ]; then
  34. error "grep -c does not appear to work, cancelling"
  35. exit 0
  36. fi
  37. SED=sed
  38. if gsed --version >/dev/null 2>&1; then
  39. SED=gsed
  40. fi
  41. if [ "$(echo 'x\x' | $SED 's/.*[^x\t]//')" != x ]; then
  42. error "sed does not appear to work, cancelling"
  43. exit 0
  44. fi
  45. if d2u -h >/dev/null 2>&1; then
  46. d2u=d2u
  47. elif dos2unix -h >/dev/null 2>&1; then
  48. d2u=dos2unix
  49. else
  50. error "d2u or dos2unix not found, cancelling"
  51. exit 0
  52. fi
  53. # Find out whether we need to care about CRLF
  54. case "$(uname 2>/dev/null)" in
  55. MINGW*)
  56. check_crlf=false
  57. ;;
  58. *)
  59. check_crlf=true
  60. ;;
  61. esac
  62. # Find out what kind of Vcs directory this is
  63. if [ -f "$top_srcdir/.git/index" ]; then
  64. info "detected Git repository"
  65. repo=git
  66. elif [ -f "$top_srcdir/.svn/format" ]; then
  67. info "detected SVN repository"
  68. repo=svn
  69. else
  70. info "not in a Vcs directory, nothing to do"
  71. exit 0
  72. fi
  73. total_crlfs=0
  74. total_spaces=0
  75. total_tabs=0
  76. OIFS="$IFS"
  77. IFS='
  78. '
  79. if [ "$repo" = git ]; then
  80. FILES="`git ls-files`"
  81. else
  82. FILES="`svn ls -R`"
  83. fi
  84. total_files=0
  85. for file in $FILES; do
  86. if [ -f "$file" ]; then
  87. total_files="$(($total_files + 1))"
  88. fi
  89. done
  90. total_errors=0
  91. for file in $FILES; do
  92. case "$file" in
  93. # These files aren't ours, don't fix
  94. src/bullet/*|external/*|*/generated/*|web/plugins/*)
  95. :
  96. ;;
  97. # Don't harass these people
  98. people/peeweek/*|people/touky/*)
  99. :
  100. ;;
  101. # These files we know how to handle
  102. *.c|*.cpp|*.m|*.mm|*.h|*.hh|*.lolfx|*.l|*.y|*.sh|*.py)
  103. clean=true
  104. # Check for CR LF
  105. if [ "$check_crlf" = true ]; then
  106. ncrlfs="$(od -tx1 "$file" | cut -b8- | tr ' ' '\n' | grep -c 0d || true)"
  107. total_crlfs="$(($total_crlfs + $ncrlfs))"
  108. if [ "$ncrlfs" -gt 0 ]; then
  109. clean=false
  110. if [ "$fix" = true ]; then
  111. $d2u -q "$file"
  112. info "$file has $ncrlfs CR characters"
  113. else
  114. error "$file has $ncrlfs CR characters"
  115. fi
  116. fi
  117. fi
  118. # Check for trailing spaces
  119. nspaces="$($SED 's/.*[^ \t]//' "$file" | tr -cd '\t ' | wc -c)"
  120. total_spaces="$(($total_spaces + $nspaces))"
  121. if [ "$nspaces" -gt 0 ]; then
  122. clean=false
  123. if [ "$fix" = true ]; then
  124. $SED -i 's/[[:space:]][[:space:]]*$//g' "$file"
  125. info "$file has $nspaces trailing spaces"
  126. else
  127. error "$file has $nspaces trailing spaces"
  128. fi
  129. fi
  130. # Check for tabs
  131. ntabs="$(tr -cd '\t' < "$file" | wc -c)"
  132. total_tabs="$(($total_tabs + $ntabs))"
  133. if [ "$ntabs" -gt 0 ]; then
  134. clean=false
  135. if [ "$fix" = true ]; then
  136. $SED -i 's/\t/ /g' "$file"
  137. info "$file has $ntabs tabs"
  138. else
  139. error "$file has $ntabs tabs"
  140. fi
  141. fi
  142. if [ "$clean" != true ]; then
  143. total_errors="$(($total_errors + 1))"
  144. fi
  145. ;;
  146. esac
  147. done
  148. IFS="$OIFS"
  149. if [ "$total_errors" -gt 0 ]; then
  150. if [ "$commit" = "true" ]; then
  151. # EITHER: commit all modified files
  152. svn commit --username lolbot --non-interactive -F - << EOF
  153. fixed $total_errors files out of $total_files:
  154. - removed $total_crlfs CR characters
  155. - removed $total_spaces trailing whitespaces
  156. - replaced $total_tabs tabs with spaces
  157. EOF
  158. elif [ "$fix" = "true" ]; then
  159. # OR: report in stdout
  160. info "fixed $total_errors files out of $total_files:"
  161. if [ "$total_crlfs" -gt 0 ]; then
  162. info " - fixed $total_crlfs CR characters"
  163. fi
  164. if [ "$total_spaces" -gt 0 ]; then
  165. info " - fixed $total_spaces trailing spaces"
  166. fi
  167. if [ "$total_tabs" -gt 0 ]; then
  168. info " - fixed $total_tabs tabs"
  169. fi
  170. info "re-run with -c to commit fixes"
  171. else
  172. # OR: warn about how to fix errors
  173. info "re-run with -w to fix errors"
  174. fi
  175. else
  176. info "all $total_files source files appear to be OK, congratulations"
  177. fi