Statistics
| Branch: | Tag: | Revision:

root / autotools / check-python-code @ 674711de

History | View | Annotate | Download (1.9 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2009 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
set -e
22

    
23
readonly maxlinelen=$(for ((i=0; i<81; ++i)); do echo -n .; done)
24

    
25
if [[ "${#maxlinelen}" != 81 ]]; then
26
  echo "Internal error: Check for line length is incorrect" >&2
27
  exit 1
28
fi
29

    
30
# "[...] If the last ARG evaluates to 0, let returns 1; 0 is returned
31
# otherwise.", hence ignoring the return value.
32
let problems=0 || :
33

    
34
for script; do
35
  if grep -n -H -F $'\t' "$script"; then
36
    let ++problems
37
    echo "Found tabs in $script" >&2
38
  fi
39

    
40
  if grep -n -H -E '[[:space:]]$' "$script"; then
41
    let ++problems
42
    echo "Found end-of-line-whitespace in $script" >&2
43
  fi
44

    
45
  # FIXME: This will also match "foo.xrange(...)"
46
  if grep -n -H -E '^[^#]*\<xrange\>' "$script"; then
47
    let ++problems
48
    echo "Forbidden function 'xrange' used in $script" >&2
49
  fi
50

    
51
  if grep -n -H -E -i '#[[:space:]]*(vim|Local[[:space:]]+Variables):' "$script"
52
  then
53
    let ++problems
54
    echo "Found editor-specific settings in $script" >&2
55
  fi
56

    
57
  if grep -n -H "^$maxlinelen" "$script"; then
58
    let ++problems
59
    echo "Longest line in $script is longer than 80 characters" >&2
60
  fi
61
done
62

    
63
if [[ "$problems" -gt 0 ]]; then
64
  echo "Found $problems problem(s) while checking code." >&2
65
  exit 1
66
fi