blob: 3e0155f54547971e72a042f097097d77f4b9ac1b [file] [log] [blame]
Éric Araujoa0e92a82011-07-26 18:01:08 +02001#!/usr/bin/env python3
Georg Brandla9afb682010-10-21 12:49:28 +00002import re
3import sys
4import shutil
Christian Heimesada8c3b2008-03-18 18:26:33 +00005import os.path
6import subprocess
Éric Araujoa3e072b2011-07-30 21:34:04 +02007import sysconfig
Christian Heimesada8c3b2008-03-18 18:26:33 +00008
9import reindent
Georg Brandla9afb682010-10-21 12:49:28 +000010import untabify
Christian Heimesada8c3b2008-03-18 18:26:33 +000011
12
Éric Araujoa3e072b2011-07-30 21:34:04 +020013SRCDIR = sysconfig.get_config_var('srcdir')
14
15
Brett Cannon058173e2010-07-04 22:05:34 +000016def n_files_str(count):
17 """Return 'N file(s)' with the proper plurality on 'file'."""
18 return "{} file{}".format(count, "s" if count != 1 else "")
19
Florent Xiclunae4a33802010-08-09 12:24:20 +000020
Christian Heimesada8c3b2008-03-18 18:26:33 +000021def status(message, modal=False, info=None):
22 """Decorator to output status info to stdout."""
23 def decorated_fxn(fxn):
24 def call_fxn(*args, **kwargs):
25 sys.stdout.write(message + ' ... ')
26 sys.stdout.flush()
27 result = fxn(*args, **kwargs)
28 if not modal and not info:
29 print("done")
30 elif info:
31 print(info(result))
32 else:
Florent Xiclunae4a33802010-08-09 12:24:20 +000033 print("yes" if result else "NO")
Christian Heimesada8c3b2008-03-18 18:26:33 +000034 return result
35 return call_fxn
36 return decorated_fxn
37
Florent Xiclunae4a33802010-08-09 12:24:20 +000038
Christian Heimesada8c3b2008-03-18 18:26:33 +000039@status("Getting the list of files that have been added/changed",
Georg Brandla9afb682010-10-21 12:49:28 +000040 info=lambda x: n_files_str(len(x)))
Christian Heimesada8c3b2008-03-18 18:26:33 +000041def changed_files():
Éric Araujo56ec5fe2011-07-31 18:41:25 +020042 """Get the list of changed or added files from Mercurial."""
43 if not os.path.isdir(os.path.join(SRCDIR, '.hg')):
Georg Brandla9afb682010-10-21 12:49:28 +000044 sys.exit('need a checkout to get modified files')
45
Éric Araujo56ec5fe2011-07-31 18:41:25 +020046 cmd = 'hg status --added --modified --no-status'
47 with subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) as st:
Benjamin Peterson4177eff2011-06-27 18:25:06 -050048 return [x.decode().rstrip() for x in st.stdout]
Florent Xiclunae4a33802010-08-09 12:24:20 +000049
Christian Heimesada8c3b2008-03-18 18:26:33 +000050
Brett Cannon058173e2010-07-04 22:05:34 +000051def report_modified_files(file_paths):
52 count = len(file_paths)
53 if count == 0:
54 return n_files_str(count)
55 else:
56 lines = ["{}:".format(n_files_str(count))]
57 for path in file_paths:
58 lines.append(" {}".format(path))
59 return "\n".join(lines)
60
Florent Xiclunae4a33802010-08-09 12:24:20 +000061
Brett Cannon058173e2010-07-04 22:05:34 +000062@status("Fixing whitespace", info=report_modified_files)
Christian Heimesada8c3b2008-03-18 18:26:33 +000063def normalize_whitespace(file_paths):
64 """Make sure that the whitespace for .py files have been normalized."""
65 reindent.makebackup = False # No need to create backups.
Benjamin Peterson4177eff2011-06-27 18:25:06 -050066 fixed = [path for path in file_paths if path.endswith('.py') and
Éric Araujoad548b82011-07-31 18:33:00 +020067 reindent.check(os.path.join(SRCDIR, path))]
Brett Cannon058173e2010-07-04 22:05:34 +000068 return fixed
Christian Heimesada8c3b2008-03-18 18:26:33 +000069
Florent Xiclunae4a33802010-08-09 12:24:20 +000070
Georg Brandla9afb682010-10-21 12:49:28 +000071@status("Fixing C file whitespace", info=report_modified_files)
72def normalize_c_whitespace(file_paths):
73 """Report if any C files """
74 fixed = []
75 for path in file_paths:
Éric Araujoa3e072b2011-07-30 21:34:04 +020076 abspath = os.path.join(SRCDIR, path)
77 with open(abspath, 'r') as f:
Georg Brandla9afb682010-10-21 12:49:28 +000078 if '\t' not in f.read():
79 continue
Éric Araujoa3e072b2011-07-30 21:34:04 +020080 untabify.process(abspath, 8, verbose=False)
Georg Brandla9afb682010-10-21 12:49:28 +000081 fixed.append(path)
82 return fixed
83
84
85ws_re = re.compile(br'\s+(\r?\n)$')
86
87@status("Fixing docs whitespace", info=report_modified_files)
88def normalize_docs_whitespace(file_paths):
89 fixed = []
90 for path in file_paths:
Éric Araujoa3e072b2011-07-30 21:34:04 +020091 abspath = os.path.join(SRCDIR, path)
Georg Brandla9afb682010-10-21 12:49:28 +000092 try:
Éric Araujoa3e072b2011-07-30 21:34:04 +020093 with open(abspath, 'rb') as f:
Georg Brandla9afb682010-10-21 12:49:28 +000094 lines = f.readlines()
95 new_lines = [ws_re.sub(br'\1', line) for line in lines]
96 if new_lines != lines:
Éric Araujoa3e072b2011-07-30 21:34:04 +020097 shutil.copyfile(abspath, abspath + '.bak')
98 with open(abspath, 'wb') as f:
Georg Brandla9afb682010-10-21 12:49:28 +000099 f.writelines(new_lines)
100 fixed.append(path)
101 except Exception as err:
102 print('Cannot fix %s: %s' % (path, err))
103 return fixed
104
105
Christian Heimesada8c3b2008-03-18 18:26:33 +0000106@status("Docs modified", modal=True)
107def docs_modified(file_paths):
Brett Cannon058173e2010-07-04 22:05:34 +0000108 """Report if any file in the Doc directory has been changed."""
109 return bool(file_paths)
Christian Heimesada8c3b2008-03-18 18:26:33 +0000110
Florent Xiclunae4a33802010-08-09 12:24:20 +0000111
Christian Heimesada8c3b2008-03-18 18:26:33 +0000112@status("Misc/ACKS updated", modal=True)
113def credit_given(file_paths):
114 """Check if Misc/ACKS has been changed."""
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000115 return 'Misc/ACKS' in file_paths
Christian Heimesada8c3b2008-03-18 18:26:33 +0000116
Florent Xiclunae4a33802010-08-09 12:24:20 +0000117
Christian Heimesada8c3b2008-03-18 18:26:33 +0000118@status("Misc/NEWS updated", modal=True)
119def reported_news(file_paths):
120 """Check if Misc/NEWS has been changed."""
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000121 return 'Misc/NEWS' in file_paths
Christian Heimesada8c3b2008-03-18 18:26:33 +0000122
123
124def main():
125 file_paths = changed_files()
Brett Cannon058173e2010-07-04 22:05:34 +0000126 python_files = [fn for fn in file_paths if fn.endswith('.py')]
127 c_files = [fn for fn in file_paths if fn.endswith(('.c', '.h'))]
Georg Brandla9afb682010-10-21 12:49:28 +0000128 doc_files = [fn for fn in file_paths if fn.startswith('Doc')]
Brett Cannon058173e2010-07-04 22:05:34 +0000129 special_files = {'Misc/ACKS', 'Misc/NEWS'} & set(file_paths)
130 # PEP 8 whitespace rules enforcement.
131 normalize_whitespace(python_files)
Georg Brandla9afb682010-10-21 12:49:28 +0000132 # C rules enforcement.
133 normalize_c_whitespace(c_files)
134 # Doc whitespace enforcement.
135 normalize_docs_whitespace(doc_files)
Christian Heimesada8c3b2008-03-18 18:26:33 +0000136 # Docs updated.
Georg Brandla9afb682010-10-21 12:49:28 +0000137 docs_modified(doc_files)
Christian Heimesada8c3b2008-03-18 18:26:33 +0000138 # Misc/ACKS changed.
Brett Cannon058173e2010-07-04 22:05:34 +0000139 credit_given(special_files)
Christian Heimesada8c3b2008-03-18 18:26:33 +0000140 # Misc/NEWS changed.
Brett Cannon058173e2010-07-04 22:05:34 +0000141 reported_news(special_files)
Christian Heimesada8c3b2008-03-18 18:26:33 +0000142
143 # Test suite run and passed.
Éric Araujofbc5ff62011-08-12 17:50:08 +0200144 if python_files or c_files:
145 print()
146 print("Did you run the test suite?")
Christian Heimesada8c3b2008-03-18 18:26:33 +0000147
148
149if __name__ == '__main__':
150 main()