]> git.cworth.org Git - sup/blob - lib/sup/thread.rb
fix (mostly!) the updates system
[sup] / lib / sup / thread.rb
1 ## Herein lies all the code responsible for threading messages. It's
2 ## basically an online version of the JWZ threading algorithm:
3 ## http://www.jwz.org/doc/threading.html
4 ##
5 ## I didn't implement it for efficiency, but thanks to our search
6 ## engine backend, it's typically not applied to very many messages at
7 ## once.
8 ##
9 ## At the top level, we have a ThreadSet, which represents a set of
10 ## threads, e.g. a message folder or an inbox. Each ThreadSet contains
11 ## zero or more Threads. A Thread represents all the message related
12 ## to a particular subject. Each Thread has one or more Containers.  A
13 ## Container is a recursive structure that holds the message tree as
14 ## determined by the references: and in-reply-to: headers. Each
15 ## Container holds zero or one messages. In the case of zero messages,
16 ## it means we've seen a reference to the message but haven't (yet)
17 ## seen the message itself.
18 ##
19 ## A Thread can have multiple top-level Containers if we decide to
20 ## group them together independent of tree structure, typically if
21 ## (e.g. due to someone using a primitive MUA) the messages have the
22 ## same subject but we don't have evidence from in-reply-to: or
23 ## references: headers. In this case Thread#each can optionally yield
24 ## a faked root object tying them all together into one tree
25 ## structure.
26
27 module Redwood
28
29 class Thread
30   include Enumerable
31
32   attr_reader :containers
33   def initialize
34     ## ah, the joys of a multithreaded application with a class called
35     ## "Thread". i keep instantiating the wrong one...
36     raise "wrong Thread class, buddy!" if block_given?
37     @containers = []
38   end
39
40   def << c
41     @containers << c
42   end
43
44   def empty?; @containers.empty?; end
45   def empty!; @containers.clear; end
46   def drop c; @containers.delete(c) or raise "bad drop"; end
47
48   ## unused
49   def dump f=$stdout
50     f.puts "=== start thread #{self} with #{@containers.length} trees ==="
51     @containers.each { |c| c.dump_recursive f }
52     f.puts "=== end thread ==="
53   end
54
55   ## yields each message, its depth, and its parent. the message yield
56   ## parameter can be a Message object, or :fake_root, or nil (no
57   ## message found but the presence of one deduced from other
58   ## messages).
59   def each fake_root=false
60     adj = 0
61     root = @containers.find_all { |c| !Message.subj_is_reply?(c) }.argmin { |c| c.date || 0 }
62
63     if root
64       adj = 1
65       root.first_useful_descendant.each_with_stuff do |c, d, par|
66         yield c.message, d, (par ? par.message : nil)
67       end
68     elsif @containers.length > 1 && fake_root
69       adj = 1
70       yield :fake_root, 0, nil
71     end
72
73     @containers.each do |cont|
74       next if cont == root
75       fud = cont.first_useful_descendant
76       fud.each_with_stuff do |c, d, par|
77         ## special case here: if we're an empty root that's already
78         ## been joined by a fake root, don't emit
79         yield c.message, d + adj, (par ? par.message : nil) unless
80           fake_root && c.message.nil? && root.nil? && c == fud 
81       end
82     end
83   end
84
85   def first; each { |m, *o| return m if m }; nil; end
86   def dirty?; any? { |m, *o| m && m.dirty? }; end
87   def date; map { |m, *o| m.date if m }.compact.max; end
88   def snippet
89     with_snippets = select { |m, *o| m && m.snippet && !m.snippet.empty? }
90     first_unread, * = with_snippets.select { |m, *o| m.has_label?(:unread) }.sort_by { |m, *o| m.date }.first
91     return first_unread.snippet if first_unread
92     last_read, * = with_snippets.sort_by { |m, *o| m.date }.last
93     return last_read.snippet if last_read
94     ""
95   end
96   def authors; map { |m, *o| m.from if m }.compact.uniq; end
97
98   def apply_label t; each { |m, *o| m && m.add_label(t) }; end
99   def remove_label t; each { |m, *o| m && m.remove_label(t) }; end
100
101   def toggle_label label
102     if has_label? label
103       remove_label label
104       return false
105     else
106       apply_label label
107       return true
108     end
109   end
110
111   def set_labels l; each { |m, *o| m && m.labels = l }; end
112   
113   def has_label? t; any? { |m, *o| m && m.has_label?(t) }; end
114   def save index; each { |m, *o| m && m.save(index) }; end
115
116   def direct_participants
117     map { |m, *o| [m.from] + m.to if m }.flatten.compact.uniq
118   end
119
120   def participants
121     map { |m, *o| [m.from] + m.to + m.cc + m.bcc if m }.flatten.compact.uniq
122   end
123
124   def size; map { |m, *o| m ? 1 : 0 }.sum; end
125   def subj; argfind { |m, *o| m && m.subj }; end
126   def labels
127       map { |m, *o| m && m.labels }.flatten.compact.uniq.sort_by { |t| t.to_s }
128   end
129   def labels= l
130     each { |m, *o| m && m.labels = l.clone }
131   end
132
133   def latest_message
134     inject(nil) do |a, b| 
135       b = b.first
136       if a.nil?
137         b
138       elsif b.nil?
139         a
140       else
141         b.date > a.date ? b : a
142       end
143     end
144   end
145
146   def to_s
147     "<thread containing: #{@containers.join ', '}>"
148   end
149 end
150
151 ## recursive structure used internally to represent message trees as
152 ## described by reply-to: and references: headers.
153 ##
154 ## the 'id' field is the same as the message id. but the message might
155 ## be empty, in the case that we represent a message that was referenced
156 ## by another message (as an ancestor) but never received.
157 class Container
158   attr_accessor :message, :parent, :children, :id, :thread
159
160   def initialize id
161     raise "non-String #{id.inspect}" unless id.is_a? String
162     @id = id
163     @message, @parent, @thread = nil, nil, nil
164     @children = []
165   end      
166
167   def each_with_stuff parent=nil
168     yield self, 0, parent
169     @children.each do |c|
170       c.each_with_stuff(self) { |cc, d, par| yield cc, d + 1, par }
171     end
172   end
173
174   def descendant_of? o
175     if o == self
176       true
177     else
178       @parent && @parent.descendant_of?(o)
179     end
180   end
181
182   def == o; Container === o && id == o.id; end
183
184   def empty?; @message.nil?; end
185   def root?; @parent.nil?; end
186   def root; root? ? self : @parent.root; end
187
188   def first_useful_descendant
189     if empty? && @children.size == 1
190       @children.first.first_useful_descendant
191     else
192       self
193     end
194   end
195
196   def find_attr attr
197     if empty?
198       @children.argfind { |c| c.find_attr attr }
199     else
200       @message.send attr
201     end
202   end
203   def subj; find_attr :subj; end
204   def date; find_attr :date; end
205
206   def is_reply?; subj && Message.subject_is_reply?(subj); end
207
208   def to_s
209     [ "<#{id}",
210       (@parent.nil? ? nil : "parent=#{@parent.id}"),
211       (@children.empty? ? nil : "children=#{@children.map { |c| c.id }.inspect}"),
212     ].compact.join(" ") + ">"
213   end
214
215   def dump_recursive f=$stdout, indent=0, root=true, parent=nil
216     raise "inconsistency" unless parent.nil? || parent.children.include?(self)
217     unless root
218       f.print " " * indent
219       f.print "+->"
220     end
221     line = #"[#{useful? ? 'U' : ' '}] " +
222       if @message
223         "[#{thread}] #{@message.subj} " ##{@message.refs.inspect} / #{@message.replytos.inspect}"
224       else
225         "<no message>"
226       end
227
228     f.puts "#{id} #{line}"#[0 .. (105 - indent)]
229     indent += 3
230     @children.each { |c| c.dump_recursive f, indent, false, self }
231   end
232 end
233
234 ## A set of threads (so a forest). Builds thread structures by reading
235 ## messages from an index.
236 ##
237 ## If 'thread_by_subj' is true, puts messages with the same subject in
238 ## one thread, even if they don't reference each other. This is
239 ## helpful for crappy MUAs that don't set In-reply-to: or References:
240 ## headers, but means that messages may be threaded unnecessarily.
241 class ThreadSet
242   attr_reader :num_messages
243   bool_reader :thread_by_subj
244
245   def initialize index, thread_by_subj=true
246     @index = index
247     @num_messages = 0
248     ## map from message ids to container objects
249     @messages = SavingHash.new { |id| Container.new id }
250     ## map from subject strings or (or root message ids) to thread objects
251     @threads = SavingHash.new { Thread.new }
252     @thread_by_subj = thread_by_subj
253   end
254
255   def thread_for_id mid; (c = @messages[mid]) && c.root.thread end
256   def contains_id? id; @messages.member?(id) && !@messages[id].empty? end
257   def thread_for m; thread_for_id m.id end
258   def contains? m; contains_id? m.id end
259
260   def delete_cruft
261     @threads.each { |k, v| @threads.delete(k) if v.empty? }
262   end
263   private :delete_cruft
264
265   def threads; delete_cruft; @threads.values; end
266   def size; delete_cruft; @threads.size; end
267
268   ## unused
269   def dump f
270     @threads.each do |s, t|
271       f.puts "**********************"
272       f.puts "** for subject #{s} **"
273       f.puts "**********************"
274       t.dump f
275     end
276   end
277
278   def link p, c, overwrite=false
279     if p == c || p.descendant_of?(c) || c.descendant_of?(p) # would create a loop
280 #      puts "*** linking parent #{p} and child #{c} would create a loop"
281       return
282     end
283
284     if c.parent.nil? || overwrite
285       c.parent.children.delete c if overwrite && c.parent
286       if c.thread
287         c.thread.drop c 
288         c.thread = nil
289       end
290       p.children << c
291       c.parent = p
292     end
293   end
294   private :link
295
296   def remove_id mid
297     return unless(c = @messages[mid])
298
299     c.parent.children.delete c if c.parent
300     if c.thread
301       c.thread.drop c
302       c.thread = nil
303     end
304   end
305
306   ## load in (at most) num number of threads from the index
307   def load_n_threads num, opts={}
308     @index.each_id_by_date opts do |mid, builder|
309       break if size >= num
310       next if contains_id? mid
311
312       m = builder.call
313       load_thread_for_message m, :skip_killed => opts[:skip_killed], :load_deleted => opts[:load_deleted], :load_spam => opts[:load_spam]
314       yield size if block_given?
315     end
316   end
317
318   ## loads in all messages needed to thread m
319   ## may do nothing if m's thread is killed
320   def load_thread_for_message m, opts={}
321     good = @index.each_message_in_thread_for m, opts do |mid, builder|
322       next if contains_id? mid
323       add_message builder.call
324     end
325     add_message m if good
326   end
327
328   ## merges in a pre-loaded thread
329   def add_thread t
330     raise "duplicate" if @threads.values.member? t
331     t.each { |m, *o| add_message m }
332   end
333
334   def is_relevant? m
335     m.refs.any? { |ref_id| @messages.member? ref_id }
336   end
337
338   ## the heart of the threading code
339   def add_message message
340     el = @messages[message.id]
341     return if el.message # we've seen it before
342
343     el.message = message
344     oldroot = el.root
345
346     ## link via references:
347     prev = nil
348     message.refs.each do |ref_id|
349       ref = @messages[ref_id]
350       link prev, ref if prev
351       prev = ref
352     end
353     link prev, el, true if prev
354
355     ## link via in-reply-to:
356     message.replytos.each do |ref_id|
357       ref = @messages[ref_id]
358       link ref, el, true
359       break # only do the first one
360     end
361
362     root = el.root
363
364     ## new root. need to drop old one and put this one in its place
365     if root != oldroot && oldroot.thread
366       oldroot.thread.drop oldroot
367       oldroot.thread = nil
368     end
369
370     key =
371       if thread_by_subj?
372         Message.normalize_subj root.subj
373       else
374         root.id
375       end
376
377     ## check to see if the subject is still the same (in the case
378     ## that we first added a child message with a different
379     ## subject)
380     if root.thread
381       unless @threads[key] == root.thread
382         if @threads[key]
383           root.thread.empty!
384           @threads[key] << root
385           root.thread = @threads[key]
386         else
387           @threads[key] = root.thread
388         end
389       end
390     else
391       thread = @threads[key]
392       thread << root
393       root.thread = thread
394     end
395
396     ## last bit
397     @num_messages += 1
398   end
399 end
400
401 end