Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

204 Zeilen
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/*|\
  95. external/*|\
  96. */generated/*|\
  97. web/plugins/*)
  98. :
  99. ;;
  100. # Don't harass these people
  101. people/peeweek/*|\
  102. people/touky/*|\
  103. people/benlitz/*|\
  104. people/sam/lua-*)
  105. :
  106. ;;
  107. # These files we know how to handle
  108. *.c|*.cpp|*.m|*.mm|*.h|*.hh|*.lolfx|*.l|*.y|*.sh|*.py)
  109. clean=true
  110. # Check for CR LF
  111. if [ "$check_crlf" = true ]; then
  112. ncrlfs="$(od -tx1 "$file" | cut -b8- | tr ' ' '\n' | grep -c 0d || true)"
  113. total_crlfs="$(($total_crlfs + $ncrlfs))"
  114. if [ "$ncrlfs" -gt 0 ]; then
  115. clean=false
  116. if [ "$fix" = true ]; then
  117. $d2u -q "$file"
  118. info "$file has $ncrlfs CR characters"
  119. else
  120. error "$file has $ncrlfs CR characters"
  121. fi
  122. fi
  123. fi
  124. # Check for trailing spaces
  125. nspaces="$($SED 's/.*[^ \t]//' "$file" | tr -cd '\t ' | wc -c)"
  126. total_spaces="$(($total_spaces + $nspaces))"
  127. if [ "$nspaces" -gt 0 ]; then
  128. clean=false
  129. if [ "$fix" = true ]; then
  130. $SED -i 's/[[:space:]][[:space:]]*$//g' "$file"
  131. info "$file has $nspaces trailing spaces"
  132. else
  133. error "$file has $nspaces trailing spaces"
  134. fi
  135. fi
  136. # Check for tabs
  137. ntabs="$(tr -cd '\t' < "$file" | wc -c)"
  138. total_tabs="$(($total_tabs + $ntabs))"
  139. if [ "$ntabs" -gt 0 ]; then
  140. clean=false
  141. if [ "$fix" = true ]; then
  142. $SED -i 's/\t/ /g' "$file"
  143. info "$file has $ntabs tabs"
  144. else
  145. error "$file has $ntabs tabs"
  146. fi
  147. fi
  148. if [ "$clean" != true ]; then
  149. total_errors="$(($total_errors + 1))"
  150. fi
  151. ;;
  152. esac
  153. done
  154. IFS="$OIFS"
  155. if [ "$total_errors" -gt 0 ]; then
  156. if [ "$commit" = "true" ]; then
  157. # EITHER: commit all modified files
  158. svn commit --username lolbot --non-interactive -F - << EOF
  159. fixed $total_errors files out of $total_files:
  160. - removed $total_crlfs CR characters
  161. - removed $total_spaces trailing whitespaces
  162. - replaced $total_tabs tabs with spaces
  163. EOF
  164. elif [ "$fix" = "true" ]; then
  165. # OR: report in stdout
  166. info "fixed $total_errors files out of $total_files:"
  167. if [ "$total_crlfs" -gt 0 ]; then
  168. info " - fixed $total_crlfs CR characters"
  169. fi
  170. if [ "$total_spaces" -gt 0 ]; then
  171. info " - fixed $total_spaces trailing spaces"
  172. fi
  173. if [ "$total_tabs" -gt 0 ]; then
  174. info " - fixed $total_tabs tabs"
  175. fi
  176. info "re-run with -c to commit fixes"
  177. else
  178. # OR: warn about how to fix errors
  179. info "re-run with -w to fix errors"
  180. fi
  181. else
  182. info "all $total_files source files appear to be OK, congratulations"
  183. fi