contrib/nmbug/nmbug-status: combine thread messages

Newer patch email containing In-Reply-To: to an email sent some time ago
(i.e. to a "thread") was not visible in that "thread" in patch view when
another patch "thread" was submitted in between. This change collects
all messages in every (notmuch-created) thread together before printing
all these threads out in a patch view.

Thanks to Ethan Glasser-Camp for initial review and suggestions with
code examples.
This commit is contained in:
Tomi Ollila 2012-10-24 09:59:59 +03:00 committed by David Bremner
parent d1e0941350
commit 02cafc84b4

View file

@ -51,12 +51,19 @@ if args.text:
else: else:
output_format = 'html' output_format = 'html'
headers = ['date', 'from', 'subject'] class Thread:
last = {} def __init__(self, last, lines):
self.last = last
self.lines = lines
def clear_last(): def join_utf8_with_newlines(self):
for header in headers: return '\n'.join( (line.encode('utf-8') for line in self.lines) )
last[header] = ''
def output_with_separator(threadlist, sep):
outputs = (thread.join_utf8_with_newlines() for thread in threadlist)
print sep.join(outputs)
headers = ['date', 'from', 'subject']
def print_view(title, query, comment): def print_view(title, query, comment):
@ -64,7 +71,12 @@ def print_view(title, query, comment):
q_new = notmuch.Query(db, query_string) q_new = notmuch.Query(db, query_string)
q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST) q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
last['thread_id'] = '' last_thread_id = ''
threads = {}
threadlist = []
out = {}
last = None
lines = None
if output_format == 'html': if output_format == 'html':
print '<h3><a name="%s" />%s</h3>' % (title, title) print '<h3><a name="%s" />%s</h3>' % (title, title)
@ -77,11 +89,21 @@ def print_view(title, query, comment):
for m in q_new.search_messages(): for m in q_new.search_messages():
out = {}
thread_id = m.get_thread_id() thread_id = m.get_thread_id()
if thread_id != last['thread_id']:
clear_last() if thread_id != last_thread_id:
if threads.has_key(thread_id):
last = threads[thread_id].last
lines = threads[thread_id].lines
else:
last = {}
lines = []
thread = Thread(last, lines)
threads[thread_id] = thread
for h in headers:
last[h] = ''
threadlist.append(thread)
last_thread_id = thread_id
for header in headers: for header in headers:
val = m.get_header(header) val = m.get_header(header)
@ -94,38 +116,35 @@ def print_view(title, query, comment):
if val == '': if val == '':
val = addr.split('@')[0] val = addr.split('@')[0]
if last[header] == val: if header != 'subject' and last[header] == val:
out[header] = '' out[header] = ''
else: else:
out[header] = val.encode('utf-8') out[header] = val
last[header] = val last[header] = val
mid = m.get_message_id() mid = m.get_message_id()
out['id'] = 'id:"%s"' % mid out['id'] = 'id:"%s"' % mid
if output_format == 'html': if output_format == 'html':
# XXX using <br /> is a hack, but ... // 20111216 too
if thread_id != last['thread_id']:
br = '<br />'
else:
br = ''
out['subject'] = '<a href="http://mid.gmane.org/%s">%s</a>' \ out['subject'] = '<a href="http://mid.gmane.org/%s">%s</a>' \
% (urllib.quote(mid), out['subject']) % (urllib.quote(mid), out['subject'])
print ' <tr><td>%s %s' % (br, out['date']) lines.append(' <tr><td>%s' % out['date'])
print '</td><td>%s %s' % (br, out['id']) lines.append('</td><td>%s' % out['id'])
print '</td></tr>' lines.append('</td></tr>')
print ' <tr><td>%s' % out['from'] lines.append(' <tr><td>%s' % out['from'])
print '</td><td>%s' % out['subject'] lines.append('</td><td>%s' % out['subject'])
print '</td></tr>\n' lines.append('</td></tr>')
else: else:
print '%(date)-10.10s %(from)-20.20s %(subject)-40.40s\n%(id)72s\n' % out lines.append('%(date)-10.10s %(from)-20.20s %(subject)-40.40s\n%(id)72s' % out)
last['thread_id'] = thread_id
if output_format == 'html': if output_format == 'html':
output_with_separator(threadlist,
'\n<tr><td colspan="2"><br /></td></tr>\n')
print '</table>' print '</table>'
else:
output_with_separator(threadlist, '\n\n')
# main program # main program