blob: c8eeda8b7eb2d7c16e1a66c43113ac7f7a90b1f3 [file] [log] [blame]
Chris Withersfb1f5b32019-04-26 20:29:03 +01001import re
2from argparse import ArgumentParser
Chris Withers871b5262019-04-27 15:04:13 +01003from os.path import dirname, abspath, join
Chris Withersfb1f5b32019-04-26 20:29:03 +01004from subprocess import check_output, call
5
6
7def git(command, repo):
8 return check_output('git '+command, cwd=repo, shell=True).decode()
9
10
11def repo_state_bad(mock_repo):
12 status = git('status', mock_repo)
13 if 'You are in the middle of an am session' in status:
14 print(f'Mock repo at {mock_repo} needs cleanup:\n')
15 call('git status', shell=True)
16 return True
17
18
19def cleanup_old_patches(mock_repo):
20 print('cleaning up old patches:')
21 call('rm -vf /tmp/*.mock.patch', shell=True)
22 call('find . -name "*.rej" -print -delete', shell=True, cwd=mock_repo)
23
24
25def find_initial_cpython_rev():
26 with open('lastsync.txt') as source:
27 return source.read().strip()
28
29
30def cpython_revs_affecting_mock(cpython_repo, start):
31 revs = git(f'log --no-merges --format=%H {start}.. '
32 f'-- Lib/unittest/mock.py Lib/unittest/test/testmock/',
33 repo=cpython_repo).split()
34 revs.reverse()
Chris Withers76523d32019-04-27 15:47:35 +010035 print(f'{len(revs)} patches that may need backporting')
Chris Withersfb1f5b32019-04-26 20:29:03 +010036 return revs
37
38
39def has_been_backported(mock_repo, cpython_rev):
40 backport_rev = git(f'log --format=%H --grep "Backports: {cpython_rev}"',
41 repo=mock_repo).strip()
42 if backport_rev:
43 print(f'{cpython_rev} backported in {backport_rev}')
44 return True
45 print(f'{cpython_rev} has not been backported')
46
47
48def extract_patch_for(cpython_repo, rev):
49 return git(f'format-patch -1 --no-stat --keep-subject --signoff --stdout {rev}',
50 repo=cpython_repo)
51
52
53def munge(rev, patch):
54
55 sign_off = 'Signed-off-by:'
56 patch = patch.replace(sign_off, f'Backports: {rev}\n{sign_off}', 1)
57
58 for pattern, sub in (
59 ('(a|b)/Lib/unittest/mock.py', r'\1/mock/mock.py'),
60 ('(a|b)/Lib/unittest/test/testmock/(.+)', r'\1/mock/tests/\2'),
61 ('(a|b)/Misc/NEWS', r'\1/NEWS'),
62 ):
63 patch = re.sub(pattern, sub, patch)
64 return patch
65
66
67def apply_patch(mock_repo, rev, patch):
68 patch_path = f'/tmp/{rev}.mock.patch'
69
70 with open(patch_path, 'w') as target:
71 target.write(patch)
72 print(f'wrote {patch_path}')
73
74 call(f'git am -k --reject {patch_path}', cwd=mock_repo, shell=True)
75
76
Chris Withers871b5262019-04-27 15:04:13 +010077def update_last_sync(mock_repo, rev):
78 with open(join(mock_repo, 'lastsync.txt'), 'w') as target:
79 target.write(rev+'\n')
80 print(f'update lastsync.txt to {rev}')
81
Chris Withersfb1f5b32019-04-26 20:29:03 +010082def main():
83 args = parse_args()
84
85 if repo_state_bad(args.mock):
86 return
87
88 cleanup_old_patches(args.mock)
89
90 initial_cpython_rev = find_initial_cpython_rev()
91
92 revs = cpython_revs_affecting_mock(args.cpython, initial_cpython_rev)
93 for rev in revs:
94
95 if has_been_backported(args.mock, rev):
Chris Withers871b5262019-04-27 15:04:13 +010096 update_last_sync(args.mock, rev)
Chris Withersfb1f5b32019-04-26 20:29:03 +010097 continue
98
99 patch = extract_patch_for(args.cpython, rev)
100 patch = munge(rev, patch)
101 apply_patch(args.mock, rev, patch)
102 break
103
104
105def parse_args():
106 parser = ArgumentParser()
107 parser.add_argument('--cpython', default='../cpython')
108 parser.add_argument('--mock', default=abspath(dirname(__file__)))
109 return parser.parse_args()
110
111
112if __name__ == '__main__':
113 main()