forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathauthors.py
executable file
·237 lines (187 loc) · 7.25 KB
/
authors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#!/usr/bin/env python
"""
List the authors who contributed within a given revision interval::
python tools/authors.py REV1..REV2
`REVx` being a commit hash.
To change the name mapping, edit .mailmap on the top-level of the
repository.
"""
# Author: Pauli Virtanen <[email protected]>. This script is in the public domain.
import argparse
import re
import sys
import os
import subprocess
import collections
stdout_b = sys.stdout.buffer
MAILMAP_FILE = os.path.join(os.path.dirname(__file__), "..", ".mailmap")
def main():
p = argparse.ArgumentParser(__doc__.strip())
p.add_argument("range", help=argparse.SUPPRESS)
p.add_argument("-d", "--debug", action="store_true",
help="print debug output")
p.add_argument("-n", "--new", action="store_true",
help="print debug output")
options = p.parse_args()
try:
rev1, rev2 = options.range.split('..')
except ValueError:
p.error("argument is not a revision range")
NAME_MAP = load_name_map(MAILMAP_FILE)
# Analyze log data
all_authors = set()
authors = collections.Counter()
def analyze_line(line, names, disp=False):
line = line.strip().decode('utf-8')
# Check the commit author name
m = re.match('^@@@([^@]*)@@@', line)
if m:
name = m.group(1)
line = line[m.end():]
name = NAME_MAP.get(name, name)
if disp:
if name not in names:
stdout_b.write((" - Author: %s\n" % name).encode('utf-8'))
names.update((name,))
# Look for "thanks to" messages in the commit log
m = re.search(
r'([Tt]hanks to|[Cc]ourtesy of|Co-authored-by:) '
r'([A-Z][A-Za-z]*? [A-Z][A-Za-z]*? [A-Z][A-Za-z]*|[A-Z][A-Za-z]*? [A-Z]\.'
r' [A-Z][A-Za-z]*|[A-Z][A-Za-z ]*? [A-Z][A-Za-z]*|[a-z0-9]+)($|\.| )',
line,
)
if m:
name = m.group(2)
if name not in ('this',):
if disp:
stdout_b.write(" - Log : %s\n" % line.strip().encode('utf-8'))
name = NAME_MAP.get(name, name)
names.update((name,))
line = line[m.end():].strip()
line = re.sub(r'^(and|, and|, ) ', 'Thanks to ', line)
analyze_line(line.encode('utf-8'), names)
# Find all authors before the named range
for line in git.pipe('log', '--pretty=@@@%an@@@%n@@@%cn@@@%n%b',
f'{rev1}'):
analyze_line(line, all_authors)
# Find authors in the named range
for line in git.pipe('log', '--pretty=@@@%an@@@%n@@@%cn@@@%n%b',
f'{rev1}..{rev2}'):
analyze_line(line, authors, disp=options.debug)
# Sort
def name_key(fullname):
m = re.search(' [a-z ]*[A-Za-z-]+$', fullname)
if m:
forename = fullname[:m.start()].strip()
surname = fullname[m.start():].strip()
else:
forename = ""
surname = fullname.strip()
if surname.startswith('van der '):
surname = surname[8:]
if surname.startswith('de '):
surname = surname[3:]
if surname.startswith('von '):
surname = surname[4:]
return (surname.lower(), forename.lower())
# generate set of all new authors
if vars(options)['new']:
new_authors = set(authors.keys()).difference(all_authors)
n_authors = list(new_authors)
n_authors.sort(key=name_key)
# Print some empty lines to separate
stdout_b.write(b"\n\n")
for author in n_authors:
stdout_b.write(("- %s\n" % author).encode('utf-8'))
# return for early exit so we only print new authors
return
try:
authors.pop('GitHub')
except KeyError:
pass
# Order by name. Could order by count with authors.most_common()
authors = sorted(authors.items(), key=lambda i: name_key(i[0]))
# Print
stdout_b.write(b"""
Authors
=======
""")
for author, count in authors:
# remove @ if only GH handle is available
author_clean = author.strip('@')
if author in all_authors:
stdout_b.write((f"* {author_clean} ({count})\n").encode())
else:
stdout_b.write((f"* {author_clean} ({count}) +\n").encode())
stdout_b.write(("""
A total of %(count)d people contributed to this release.
People with a "+" by their names contributed a patch for the first time.
This list of names is automatically generated, and may not be fully complete.
""" % dict(count=len(authors))).encode('utf-8'))
stdout_b.write(b"\nNOTE: Check this list manually! It is automatically generated "
b"and some names\n may be missing.\n")
def load_name_map(filename):
name_map = {}
with open(filename, encoding='utf-8') as f:
for line in f:
line = line.strip()
if line.startswith("#") or not line:
continue
m = re.match(r'^(.*?)\s*<(.*?)>(.*?)\s*<(.*?)>\s*$', line)
if not m:
print(f"Invalid line in .mailmap: '{line!r}'", file=sys.stderr)
sys.exit(1)
new_name = m.group(1).strip()
old_name = m.group(3).strip()
if old_name and new_name:
name_map[old_name] = new_name
return name_map
#------------------------------------------------------------------------------
# Communicating with Git
#------------------------------------------------------------------------------
class Cmd:
executable = None
def __init__(self, executable):
self.executable = executable
def _call(self, command, args, kw, repository=None, call=False):
cmd = [self.executable, command] + list(args)
cwd = None
if repository is not None:
cwd = os.getcwd()
os.chdir(repository)
try:
if call:
return subprocess.call(cmd, **kw)
else:
return subprocess.Popen(cmd, **kw)
finally:
if cwd is not None:
os.chdir(cwd)
def __call__(self, command, *a, **kw):
ret = self._call(command, a, {}, call=True, **kw)
if ret != 0:
raise RuntimeError("%s failed" % self.executable)
def pipe(self, command, *a, **kw):
stdin = kw.pop('stdin', None)
p = self._call(command, a, dict(stdin=stdin, stdout=subprocess.PIPE),
call=False, **kw)
return p.stdout
def read(self, command, *a, **kw):
p = self._call(command, a, dict(stdout=subprocess.PIPE),
call=False, **kw)
out, err = p.communicate()
if p.returncode != 0:
raise RuntimeError("%s failed" % self.executable)
return out
def readlines(self, command, *a, **kw):
out = self.read(command, *a, **kw)
return out.rstrip("\n").split("\n")
def test(self, command, *a, **kw):
ret = self._call(command, a, dict(stdout=subprocess.PIPE,
stderr=subprocess.PIPE),
call=True, **kw)
return (ret == 0)
git = Cmd("git")
#------------------------------------------------------------------------------
if __name__ == "__main__":
main()