author | Vadim Gelfer <vadim.gelfer@gmail.com> |
Wed, 28 Dec 2005 07:11:46 -0800 | |
changeset 1603 | 5352a5407dc1 |
parent 1226 | f3837564ed03 |
child 1604 | da3f1121721b |
permissions | -rwxr-xr-x |
875 | 1 |
#!/usr/bin/python |
2 |
# |
|
3 |
# Interactive script for sending a collection of Mercurial changesets |
|
4 |
# as a series of patch emails. |
|
5 |
# |
|
6 |
# The series is started off with a "[PATCH 0 of N]" introduction, |
|
7 |
# which describes the series as a whole. |
|
8 |
# |
|
9 |
# Each patch email has a Subject line of "[PATCH M of N] ...", using |
|
10 |
# the first line of the changeset description as the subject text. |
|
11 |
# The message contains two or three body parts: |
|
12 |
# |
|
13 |
# The remainder of the changeset description. |
|
14 |
# |
|
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
15 |
# [Optional] If the diffstat program is installed, the result of |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
16 |
# running diffstat on the patch. |
875 | 17 |
# |
18 |
# The patch itself, as generated by "hg export". |
|
19 |
# |
|
20 |
# Each message refers to all of its predecessors using the In-Reply-To |
|
21 |
# and References headers, so they will show up as a sequence in |
|
22 |
# threaded mail and news readers, and in mail archives. |
|
23 |
# |
|
24 |
# For each changeset, you will be prompted with a diffstat summary and |
|
25 |
# the changeset summary, so you can be sure you are sending the right |
|
26 |
# changes. |
|
27 |
# |
|
28 |
# It is best to run this script with the "-n" (test only) flag before |
|
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
29 |
# firing it up "for real", in which case it will use your pager to |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
30 |
# display each of the messages that it would send. |
875 | 31 |
# |
32 |
# To configure a default mail host, add a section like this to your |
|
33 |
# hgrc file: |
|
34 |
# |
|
35 |
# [smtp] |
|
36 |
# host = my_mail_host |
|
37 |
# port = 1025 |
|
1226
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
38 |
# tls = yes # or omit if not needed |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
39 |
# username = user # if SMTP authentication required |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
40 |
# password = password # if SMTP authentication required - PLAINTEXT |
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
41 |
# |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
42 |
# To configure other defaults, add a section like this to your hgrc |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
43 |
# file: |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
44 |
# |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
45 |
# [patchbomb] |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
46 |
# from = My Name <my@email> |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
47 |
# to = recipient1, recipient2, ... |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
48 |
# cc = cc1, cc2, ... |
875 | 49 |
|
50 |
from email.MIMEMultipart import MIMEMultipart |
|
51 |
from email.MIMEText import MIMEText |
|
52 |
from mercurial import commands |
|
53 |
from mercurial import fancyopts |
|
54 |
from mercurial import hg |
|
55 |
from mercurial import ui |
|
56 |
import os |
|
57 |
import popen2 |
|
58 |
import smtplib |
|
59 |
import socket |
|
60 |
import sys |
|
61 |
import tempfile |
|
62 |
import time |
|
63 |
||
1204
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
64 |
try: |
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
65 |
# readline gives raw_input editing capabilities, but is not |
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
66 |
# present on windows |
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
67 |
import readline |
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
68 |
except ImportError: pass |
b0f6053df539
patchbomb: continue if we can't import readline.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1154
diff
changeset
|
69 |
|
875 | 70 |
def diffstat(patch): |
71 |
fd, name = tempfile.mkstemp() |
|
72 |
try: |
|
73 |
p = popen2.Popen3('diffstat -p1 -w79 2>/dev/null > ' + name) |
|
74 |
try: |
|
75 |
for line in patch: print >> p.tochild, line |
|
76 |
p.tochild.close() |
|
77 |
if p.wait(): return |
|
78 |
fp = os.fdopen(fd, 'r') |
|
79 |
stat = [] |
|
80 |
for line in fp: stat.append(line.lstrip()) |
|
81 |
last = stat.pop() |
|
82 |
stat.insert(0, last) |
|
83 |
stat = ''.join(stat) |
|
84 |
if stat.startswith('0 files'): raise ValueError |
|
85 |
return stat |
|
86 |
except: raise |
|
87 |
finally: |
|
88 |
try: os.unlink(name) |
|
89 |
except: pass |
|
90 |
||
91 |
def patchbomb(ui, repo, *revs, **opts): |
|
92 |
def prompt(prompt, default = None, rest = ': ', empty_ok = False): |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
93 |
if default: prompt += ' [%s]' % default |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
94 |
prompt += rest |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
95 |
while True: |
875 | 96 |
r = raw_input(prompt) |
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
97 |
if r: return r |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
98 |
if default is not None: return default |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
99 |
if empty_ok: return r |
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
100 |
ui.warn('Please enter a valid value.\n') |
875 | 101 |
|
102 |
def confirm(s): |
|
103 |
if not prompt(s, default = 'y', rest = '? ').lower().startswith('y'): |
|
104 |
raise ValueError |
|
105 |
||
106 |
def cdiffstat(summary, patch): |
|
107 |
s = diffstat(patch) |
|
108 |
if s: |
|
109 |
if summary: |
|
110 |
ui.write(summary, '\n') |
|
111 |
ui.write(s, '\n') |
|
112 |
confirm('Does the diffstat above look okay') |
|
113 |
return s |
|
114 |
||
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
115 |
def makepatch(patch, idx, total): |
875 | 116 |
desc = [] |
117 |
node = None |
|
1135
e455d91f6259
Variable 'body' was missing in patchbomb script.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1118
diff
changeset
|
118 |
body = '' |
875 | 119 |
for line in patch: |
120 |
if line.startswith('#'): |
|
121 |
if line.startswith('# Node ID'): node = line.split()[-1] |
|
122 |
continue |
|
123 |
if line.startswith('diff -r'): break |
|
124 |
desc.append(line) |
|
125 |
if not node: raise ValueError |
|
1118
63b5f68d8167
patchbomb: eliminate silly complete summary message
mpm@selenic.com
parents:
1032
diff
changeset
|
126 |
|
63b5f68d8167
patchbomb: eliminate silly complete summary message
mpm@selenic.com
parents:
1032
diff
changeset
|
127 |
#body = ('\n'.join(desc[1:]).strip() or |
63b5f68d8167
patchbomb: eliminate silly complete summary message
mpm@selenic.com
parents:
1032
diff
changeset
|
128 |
# 'Patch subject is complete summary.') |
63b5f68d8167
patchbomb: eliminate silly complete summary message
mpm@selenic.com
parents:
1032
diff
changeset
|
129 |
#body += '\n\n\n' |
63b5f68d8167
patchbomb: eliminate silly complete summary message
mpm@selenic.com
parents:
1032
diff
changeset
|
130 |
|
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
131 |
if opts['diffstat']: |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
132 |
body += cdiffstat('\n'.join(desc), patch) + '\n\n' |
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
133 |
body += '\n'.join(patch) |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
134 |
msg = MIMEText(body) |
875 | 135 |
subj = '[PATCH %d of %d] %s' % (idx, total, desc[0].strip()) |
136 |
if subj.endswith('.'): subj = subj[:-1] |
|
137 |
msg['Subject'] = subj |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
138 |
msg['X-Mercurial-Node'] = node |
875 | 139 |
return msg |
140 |
||
141 |
start_time = int(time.time()) |
|
142 |
||
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
143 |
def genmsgid(id): |
875 | 144 |
return '<%s.%s@%s>' % (id[:20], start_time, socket.getfqdn()) |
145 |
||
146 |
patches = [] |
|
147 |
||
148 |
class exportee: |
|
149 |
def __init__(self, container): |
|
150 |
self.lines = [] |
|
151 |
self.container = container |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
152 |
self.name = 'email' |
875 | 153 |
|
154 |
def write(self, data): |
|
155 |
self.lines.append(data) |
|
156 |
||
157 |
def close(self): |
|
158 |
self.container.append(''.join(self.lines).split('\n')) |
|
159 |
self.lines = [] |
|
160 |
||
1032
706c590c9060
Get patchbomb working with tip again.
Bryan O'Sullivan <bos@serpentine.com>
parents:
998
diff
changeset
|
161 |
commands.export(ui, repo, *args, **{'output': exportee(patches), |
1603
5352a5407dc1
make patchbomb work with recent changes to export
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
1226
diff
changeset
|
162 |
'switch_parent': False, |
1032
706c590c9060
Get patchbomb working with tip again.
Bryan O'Sullivan <bos@serpentine.com>
parents:
998
diff
changeset
|
163 |
'text': None}) |
875 | 164 |
|
165 |
jumbo = [] |
|
166 |
msgs = [] |
|
167 |
||
168 |
ui.write('This patch series consists of %d patches.\n\n' % len(patches)) |
|
169 |
||
170 |
for p, i in zip(patches, range(len(patches))): |
|
171 |
jumbo.extend(p) |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
172 |
msgs.append(makepatch(p, i + 1, len(patches))) |
875 | 173 |
|
174 |
ui.write('\nWrite the introductory message for the patch series.\n\n') |
|
175 |
||
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
176 |
sender = (opts['from'] or ui.config('patchbomb', 'from') or |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
177 |
prompt('From', ui.username())) |
875 | 178 |
|
179 |
msg = MIMEMultipart() |
|
180 |
msg['Subject'] = '[PATCH 0 of %d] %s' % ( |
|
181 |
len(patches), |
|
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
182 |
opts['subject'] or |
875 | 183 |
prompt('Subject:', rest = ' [PATCH 0 of %d] ' % len(patches))) |
1154
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
184 |
|
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
185 |
def getaddrs(opt, prpt, default = None): |
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
186 |
addrs = opts[opt] or (ui.config('patchbomb', opt) or |
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
187 |
prompt(prpt, default = default)).split(',') |
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
188 |
return [a.strip() for a in addrs if a.strip()] |
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
189 |
to = getaddrs('to', 'To') |
c3cb9f39a91f
patchbomb: fix up confusion between strings and lists of strings.
bos@serpentine.internal.keyresearch.com
parents:
1136
diff
changeset
|
190 |
cc = getaddrs('cc', 'Cc', '') |
875 | 191 |
|
192 |
ui.write('Finish with ^D or a dot on a line by itself.\n\n') |
|
193 |
||
194 |
body = [] |
|
195 |
||
196 |
while True: |
|
197 |
try: l = raw_input() |
|
198 |
except EOFError: break |
|
199 |
if l == '.': break |
|
200 |
body.append(l) |
|
201 |
||
202 |
msg.attach(MIMEText('\n'.join(body) + '\n')) |
|
203 |
||
204 |
ui.write('\n') |
|
205 |
||
1136
d451888505d7
Make diffstat optional for patchbomb script.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1135
diff
changeset
|
206 |
if opts['diffstat']: |
d451888505d7
Make diffstat optional for patchbomb script.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1135
diff
changeset
|
207 |
d = cdiffstat('Final summary:\n', jumbo) |
d451888505d7
Make diffstat optional for patchbomb script.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1135
diff
changeset
|
208 |
if d: msg.attach(MIMEText(d)) |
875 | 209 |
|
210 |
msgs.insert(0, msg) |
|
211 |
||
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
212 |
if not opts['test']: |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
213 |
s = smtplib.SMTP() |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
214 |
s.connect(host = ui.config('smtp', 'host', 'mail'), |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
215 |
port = int(ui.config('smtp', 'port', 25))) |
1226
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
216 |
if ui.configbool('smtp', 'tls'): |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
217 |
s.ehlo() |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
218 |
s.starttls() |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
219 |
s.ehlo() |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
220 |
username = ui.config('smtp', 'username') |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
221 |
password = ui.config('smtp', 'password') |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
222 |
if username and password: |
f3837564ed03
patchbomb: add TLS and SMTP AUTH support.
Bryan O'Sullivan <bos@serpentine.com>
parents:
1204
diff
changeset
|
223 |
s.login(username, password) |
875 | 224 |
parent = None |
225 |
tz = time.strftime('%z') |
|
226 |
for m in msgs: |
|
227 |
try: |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
228 |
m['Message-Id'] = genmsgid(m['X-Mercurial-Node']) |
875 | 229 |
except TypeError: |
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
230 |
m['Message-Id'] = genmsgid('patchbomb') |
875 | 231 |
if parent: |
232 |
m['In-Reply-To'] = parent |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
233 |
else: |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
234 |
parent = m['Message-Id'] |
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
235 |
m['Date'] = time.strftime('%a, %e %b %Y %T ', time.localtime(start_time)) + tz |
875 | 236 |
start_time += 1 |
237 |
m['From'] = sender |
|
238 |
m['To'] = ', '.join(to) |
|
239 |
if cc: m['Cc'] = ', '.join(cc) |
|
240 |
ui.status('Sending ', m['Subject'], ' ...\n') |
|
241 |
if opts['test']: |
|
242 |
fp = os.popen(os.getenv('PAGER', 'more'), 'w') |
|
243 |
fp.write(m.as_string(0)) |
|
244 |
fp.write('\n') |
|
245 |
fp.close() |
|
246 |
else: |
|
247 |
s.sendmail(sender, to + cc, m.as_string(0)) |
|
876
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
248 |
if not opts['test']: |
14cfaaec2e8e
Get patchbomb script to not use MIME attachments.
Bryan O'Sullivan <bos@serpentine.com>
parents:
875
diff
changeset
|
249 |
s.close() |
875 | 250 |
|
251 |
if __name__ == '__main__': |
|
252 |
optspec = [('c', 'cc', [], 'email addresses of copy recipients'), |
|
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
253 |
('d', 'diffstat', None, 'add diffstat output to messages'), |
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
254 |
('f', 'from', '', 'email address of sender'), |
875 | 255 |
('n', 'test', None, 'print messages that would be sent'), |
877
25430c523677
Polish patchbomb script.
Bryan O'Sullivan <bos@serpentine.com>
parents:
876
diff
changeset
|
256 |
('s', 'subject', '', 'subject of introductory message'), |
875 | 257 |
('t', 'to', [], 'email addresses of recipients')] |
258 |
options = {} |
|
259 |
try: |
|
260 |
args = fancyopts.fancyopts(sys.argv[1:], commands.globalopts + optspec, |
|
261 |
options) |
|
262 |
except fancyopts.getopt.GetoptError, inst: |
|
263 |
u = ui.ui() |
|
264 |
u.warn('error: %s' % inst) |
|
265 |
sys.exit(1) |
|
266 |
||
267 |
u = ui.ui(options["verbose"], options["debug"], options["quiet"], |
|
268 |
not options["noninteractive"]) |
|
269 |
repo = hg.repository(ui = u) |
|
270 |
||
271 |
patchbomb(u, repo, *args, **options) |