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.
 
 
 

245 Zeilen
6.0 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. can_check_crlf=false
  57. ;;
  58. *)
  59. can_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" -o -f "$top_srcdir/.svn/wc.db" ]; 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. total_props=0
  77. OIFS="$IFS"
  78. IFS='
  79. '
  80. if [ "$repo" = git ]; then
  81. FILES="`git ls-files`"
  82. else
  83. FILES="`svn ls -R`"
  84. fi
  85. total_files=0
  86. for file in $FILES; do
  87. if [ -f "$file" ]; then
  88. total_files="$(($total_files + 1))"
  89. fi
  90. done
  91. total_errors=0
  92. for file in $FILES; do
  93. should_check_crlf=false
  94. should_check_spaces=false
  95. should_check_props=false
  96. case "$file" in
  97. # These files we know how to handle
  98. *.c|*.cpp|*.m|*.mm|*.h|*.hh|*.lolfx|*.lua|*.l|*.y|*.sh|*.py)
  99. should_check_crlf=true
  100. should_check_spaces=true
  101. should_check_props=true
  102. ;;
  103. *)
  104. continue
  105. ;;
  106. esac
  107. case "$file" in
  108. # These files aren't ours, but fix their line endings
  109. src/bullet/*|\
  110. src/lua/*|\
  111. external/*|\
  112. web/plugins/*)
  113. should_check_spaces=false
  114. ;;
  115. esac
  116. case "$file" in
  117. # Don't harass these people, but fix their line endings
  118. people/peeweek/*|\
  119. people/touky/*|\
  120. people/benlitz/*|\
  121. people/sam/lua-*)
  122. should_check_spaces=false
  123. ;;
  124. esac
  125. clean=true
  126. # Check for CR LF
  127. if [ "$can_check_crlf" = true -a "$should_check_crlf" = true ]; then
  128. ncrlfs="$(od -tx1 "$file" | cut -b8- | tr ' ' '\n' | grep -c 0d || true)"
  129. total_crlfs="$(($total_crlfs + $ncrlfs))"
  130. if [ "$ncrlfs" -gt 0 ]; then
  131. clean=false
  132. if [ "$fix" = true ]; then
  133. $d2u -q "$file"
  134. info "$file has $ncrlfs CR characters"
  135. else
  136. error "$file has $ncrlfs CR characters"
  137. fi
  138. fi
  139. fi
  140. # Check for LF SVN prop
  141. if [ "$repo" = svn -a "$should_check_props" = true ]; then
  142. if [ "$(svn propget svn:eol-style "$file")" != "LF" ]; then
  143. clean=false
  144. if [ "$fix" = true ]; then
  145. svn propset svn:eol-style LF "$file"
  146. info "$file is missing svn:eol-style property"
  147. else
  148. error "$file is missing svn:eol-style property"
  149. fi
  150. total_props="$(($total_props + 1))"
  151. fi
  152. fi
  153. # Check for trailing spaces
  154. if [ "$should_check_spaces" = true ]; then
  155. nspaces="$($SED 's/.*[^ \t]//' "$file" | tr -cd '\t ' | wc -c)"
  156. total_spaces="$(($total_spaces + $nspaces))"
  157. if [ "$nspaces" -gt 0 ]; then
  158. clean=false
  159. if [ "$fix" = true ]; then
  160. $SED -i 's/[[:space:]][[:space:]]*$//g' "$file"
  161. info "$file has $nspaces trailing spaces"
  162. else
  163. error "$file has $nspaces trailing spaces"
  164. fi
  165. fi
  166. fi
  167. # Check for tabs
  168. if [ "$should_check_spaces" = true ]; then
  169. ntabs="$(tr -cd '\t' < "$file" | wc -c)"
  170. total_tabs="$(($total_tabs + $ntabs))"
  171. if [ "$ntabs" -gt 0 ]; then
  172. clean=false
  173. if [ "$fix" = true ]; then
  174. $SED -i 's/\t/ /g' "$file"
  175. info "$file has $ntabs tabs"
  176. else
  177. error "$file has $ntabs tabs"
  178. fi
  179. fi
  180. fi
  181. if [ "$clean" != true ]; then
  182. total_errors="$(($total_errors + 1))"
  183. fi
  184. done
  185. IFS="$OIFS"
  186. if [ "$total_errors" -gt 0 ]; then
  187. if [ "$commit" = "true" ]; then
  188. # EITHER: commit all modified files
  189. svn commit --username lolbot --non-interactive -F - << EOF
  190. fixed $total_errors files out of $total_files:
  191. - removed $total_crlfs CR characters
  192. - removed $total_spaces trailing whitespaces
  193. - replaced $total_tabs tabs with spaces
  194. - fixed $total_props svn:eol-style properties
  195. EOF
  196. elif [ "$fix" = "true" ]; then
  197. # OR: report in stdout
  198. info "fixed $total_errors files out of $total_files:"
  199. if [ "$total_crlfs" -gt 0 ]; then
  200. info " - fixed $total_crlfs CR characters"
  201. fi
  202. if [ "$total_spaces" -gt 0 ]; then
  203. info " - fixed $total_spaces trailing spaces"
  204. fi
  205. if [ "$total_tabs" -gt 0 ]; then
  206. info " - fixed $total_tabs tabs"
  207. fi
  208. if [ "$total_props" -gt 0 ]; then
  209. info " - fixed $total_props svn:eol-style properties"
  210. fi
  211. info "re-run with -c to commit fixes"
  212. else
  213. # OR: warn about how to fix errors
  214. info "re-run with -w to fix errors"
  215. fi
  216. else
  217. info "all $total_files source files appear to be OK, congratulations"
  218. fi