2013-02-19 04:40:57 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
import optparse
|
|
|
|
import subprocess
|
2012-10-04 20:30:01 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
from os import path
|
|
|
|
from collections import defaultdict
|
2012-10-04 20:30:01 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option('--full',
|
|
|
|
action='store_true',
|
|
|
|
help='Check some things we typically ignore')
|
|
|
|
(options, args) = parser.parse_args()
|
2012-10-25 21:55:52 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
os.chdir(path.join(path.dirname(__file__), '..'))
|
2012-10-04 20:30:01 +02:00
|
|
|
|
2012-10-04 21:27:52 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
# Exclude some directories and files from lint checking
|
2012-10-20 03:00:05 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
exclude_trees = """
|
2013-07-25 22:41:44 +02:00
|
|
|
static/third
|
2013-02-19 04:40:57 +01:00
|
|
|
confirmation
|
2013-07-29 23:03:31 +02:00
|
|
|
zerver/tests/frontend/casperjs
|
|
|
|
zerver/migrations
|
2013-03-26 16:20:06 +01:00
|
|
|
node_modules
|
2013-02-19 04:40:57 +01:00
|
|
|
""".split()
|
2012-10-04 20:30:01 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
exclude_files = """
|
2013-08-06 22:51:47 +02:00
|
|
|
zproject/test_settings.py
|
2013-09-24 20:28:28 +02:00
|
|
|
zproject/settings.py
|
2013-02-19 04:40:57 +01:00
|
|
|
tools/jslint/jslint.js
|
2013-10-31 22:09:33 +01:00
|
|
|
api/setup.py
|
2013-02-19 04:40:57 +01:00
|
|
|
""".split()
|
2012-10-25 21:55:52 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-11-27 19:30:44 +01:00
|
|
|
if args:
|
|
|
|
files = args
|
|
|
|
else:
|
|
|
|
# If no files are specified on the command line, use the entire git checkout
|
|
|
|
files = map(str.strip, subprocess.check_output(['git', 'ls-files']).split('\n'))
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-11-27 19:30:44 +01:00
|
|
|
# Categorize by language all files we want to check
|
2013-02-19 04:40:57 +01:00
|
|
|
by_lang = defaultdict(list)
|
|
|
|
|
2013-11-27 19:30:44 +01:00
|
|
|
for filepath in files:
|
2013-02-19 04:40:57 +01:00
|
|
|
if (not filepath or not path.isfile(filepath)
|
|
|
|
or (filepath in exclude_files)
|
|
|
|
or any(filepath.startswith(d+'/') for d in exclude_trees)):
|
|
|
|
continue
|
|
|
|
|
|
|
|
_, exn = path.splitext(filepath)
|
|
|
|
if not exn:
|
|
|
|
# No extension; look at the first line
|
|
|
|
with file(filepath) as f:
|
|
|
|
if re.match(r'^#!.*\bpython', f.readline()):
|
|
|
|
exn = '.py'
|
|
|
|
|
|
|
|
by_lang[exn].append(filepath)
|
|
|
|
|
2013-06-21 23:58:02 +02:00
|
|
|
def check_trailing_whitespace(fn):
|
|
|
|
failed = False
|
|
|
|
for i, line in enumerate(open(fn)):
|
|
|
|
if re.search('\s+$', line.strip('\n')):
|
|
|
|
sys.stdout.write('Fix whitespace at %s line %s\n' % (fn, i+1))
|
|
|
|
failed = True
|
|
|
|
return failed
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-07-05 18:53:43 +02:00
|
|
|
def perform_extra_js_checks(fn):
|
|
|
|
failed = False
|
|
|
|
for i, line in enumerate(open(fn)):
|
|
|
|
line = line.strip('\n')
|
|
|
|
if re.search('[^_]function\(', line):
|
|
|
|
sys.stdout.write('The keyword "function" should be followed by a space in %s line %s\n' % (fn, i+1))
|
|
|
|
print line
|
|
|
|
failed = True
|
|
|
|
return failed
|
|
|
|
|
|
|
|
|
2013-06-27 20:03:28 +02:00
|
|
|
def check_python_gotchas(fn):
|
|
|
|
'''
|
|
|
|
Check for certain Python gotchas that pyflakes doesn't catch.
|
|
|
|
'''
|
|
|
|
failed = False
|
|
|
|
for i, line in enumerate(open(fn)):
|
|
|
|
line = line.strip('\n')
|
|
|
|
|
|
|
|
# Hacks to skip lines that confuse our dirt simple code:
|
|
|
|
if re.match('\s*[*#]', line):
|
|
|
|
continue
|
|
|
|
if 'help=' in line:
|
|
|
|
continue
|
|
|
|
|
|
|
|
gotcha_regexes = [
|
2013-10-09 20:32:47 +02:00
|
|
|
"'[^']*'\s+\([^']*$", # 'foo'(2) makes no sense
|
|
|
|
'"[^"]*"\s+\([^"]*$', # ditto
|
2013-06-27 20:03:28 +02:00
|
|
|
'% [a-z_]*$', # "%s" % s [we prefer "%s" % (s,)]
|
|
|
|
]
|
|
|
|
for gotcha_regex in gotcha_regexes:
|
|
|
|
if re.search(gotcha_regex, line):
|
|
|
|
sys.stdout.write('Suspicious code at %s line %s (regex=%r)\n' % (fn, i+1, gotcha_regex))
|
|
|
|
print line
|
|
|
|
failed = True
|
|
|
|
break
|
|
|
|
return failed
|
|
|
|
|
2013-05-31 20:51:37 +02:00
|
|
|
# Invoke the appropriate lint checker for each language,
|
|
|
|
# and also check files for extra whitespace.
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-07-18 23:38:15 +02:00
|
|
|
import logging
|
|
|
|
logging.basicConfig(format="%(asctime)s %(message)s")
|
|
|
|
logger = logging.getLogger()
|
|
|
|
# Change this to logging.INFO to see performance data
|
|
|
|
logger.setLevel(logging.WARNING)
|
|
|
|
|
|
|
|
def check_pyflakes():
|
2013-11-27 19:30:44 +01:00
|
|
|
if not by_lang['.py']:
|
|
|
|
return False
|
2013-02-19 04:40:57 +01:00
|
|
|
failed = False
|
2013-07-18 23:38:15 +02:00
|
|
|
pyflakes = subprocess.Popen(['pyflakes'] + by_lang['.py'],
|
|
|
|
stdout = subprocess.PIPE,
|
|
|
|
stderr = subprocess.PIPE)
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-07-18 23:38:15 +02:00
|
|
|
# pyflakes writes some output (like syntax errors) to stderr. :/
|
|
|
|
for pipe in (pyflakes.stdout, pyflakes.stderr):
|
|
|
|
for ln in pipe:
|
|
|
|
if options.full or not \
|
|
|
|
('imported but unused' in ln or
|
2013-11-13 03:34:28 +01:00
|
|
|
'redefinition of unused' in ln or
|
2013-07-18 23:38:15 +02:00
|
|
|
("zephyr_mirror_backend.py:" in ln and
|
|
|
|
"redefinition of unused 'simplejson' from line" in ln)):
|
|
|
|
sys.stdout.write(ln)
|
|
|
|
failed = True
|
|
|
|
return failed
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-07-18 23:38:15 +02:00
|
|
|
def check_custom_checks():
|
|
|
|
failed = False
|
2013-02-19 04:40:57 +01:00
|
|
|
|
2013-05-31 20:51:37 +02:00
|
|
|
for fn in by_lang['.js'] + by_lang['.py']:
|
2013-06-21 23:58:02 +02:00
|
|
|
if check_trailing_whitespace(fn):
|
2013-05-31 20:51:37 +02:00
|
|
|
failed = True
|
|
|
|
|
2013-06-27 20:03:28 +02:00
|
|
|
for fn in by_lang['.py']:
|
|
|
|
if check_python_gotchas(fn):
|
|
|
|
failed = True
|
|
|
|
|
2013-07-05 18:53:43 +02:00
|
|
|
for fn in by_lang['.js']:
|
|
|
|
if perform_extra_js_checks(fn):
|
|
|
|
failed = True
|
|
|
|
|
2013-07-18 23:38:15 +02:00
|
|
|
return failed
|
2013-03-25 23:44:38 +01:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
lint_functions = {}
|
|
|
|
|
|
|
|
def run_parallel():
|
|
|
|
pids = []
|
|
|
|
for name, func in lint_functions.items():
|
|
|
|
pid = os.fork()
|
|
|
|
if pid == 0:
|
|
|
|
logging.info("start " + name)
|
|
|
|
result = func()
|
|
|
|
logging.info("finish " + name)
|
|
|
|
os._exit(result)
|
|
|
|
pids.append(pid)
|
2013-07-18 23:38:15 +02:00
|
|
|
failed = False
|
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
for pid in pids:
|
|
|
|
(_, status) = os.waitpid(pid, 0)
|
|
|
|
if status != 0:
|
|
|
|
failed = True
|
|
|
|
return failed
|
|
|
|
|
|
|
|
def lint(func):
|
|
|
|
lint_functions[func.__name__] = func
|
|
|
|
return func
|
|
|
|
|
|
|
|
try:
|
2013-07-18 23:38:15 +02:00
|
|
|
# Make the lint output bright red
|
|
|
|
sys.stdout.write('\x1B[1;31m')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
@lint
|
|
|
|
def templates():
|
2013-10-08 14:31:16 +02:00
|
|
|
result = subprocess.call(['tools/check-handlebar-templates'])
|
2013-11-27 19:00:08 +01:00
|
|
|
return result
|
2013-10-08 14:31:16 +02:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
@lint
|
|
|
|
def jslint():
|
2013-07-19 17:41:00 +02:00
|
|
|
result = subprocess.call(['tools/node', 'tools/jslint/check-all.js']
|
|
|
|
+ by_lang['.js'])
|
2013-11-27 19:00:08 +01:00
|
|
|
return result
|
2013-07-18 23:38:15 +02:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
@lint
|
|
|
|
def puppet():
|
2013-11-27 19:30:44 +01:00
|
|
|
if not by_lang['.pp']:
|
|
|
|
return 0
|
2013-08-08 22:06:26 +02:00
|
|
|
result = subprocess.call(['puppet', 'parser', 'validate'] + by_lang['.pp'])
|
2013-11-27 19:00:08 +01:00
|
|
|
return result
|
2013-08-08 22:06:26 +02:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
@lint
|
|
|
|
def custom():
|
2013-07-18 23:38:15 +02:00
|
|
|
failed = check_custom_checks()
|
2013-11-27 19:00:08 +01:00
|
|
|
return 1 if failed else 0
|
2013-07-18 23:38:15 +02:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
@lint
|
|
|
|
def pyflakes():
|
2013-09-19 16:39:51 +02:00
|
|
|
failed = check_pyflakes()
|
2013-11-27 19:00:08 +01:00
|
|
|
return 1 if failed else 0
|
2013-09-19 16:39:51 +02:00
|
|
|
|
2013-11-27 19:00:08 +01:00
|
|
|
failed = run_parallel()
|
2013-09-19 16:43:24 +02:00
|
|
|
|
2013-02-19 04:40:57 +01:00
|
|
|
sys.exit(1 if failed else 0)
|
|
|
|
|
|
|
|
finally:
|
|
|
|
# Restore normal terminal colors
|
|
|
|
sys.stdout.write('\x1B[0m')
|