]> git.cworth.org Git - sup/blob - lib/sup/thread.rb
4d92ad3dfb1efe4fab37cc41a616aeeef5052755
[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   ## skip over any containers which are empty and have only one child. we use
189   ## this make the threaded display a little nicer, and only stick in the
190   ## "missing message" line when it's graphically necessary, i.e. when the
191   ## missing message has more than one descendent.
192   def first_useful_descendant
193     if empty? && @children.size == 1
194       @children.first.first_useful_descendant
195     else
196       self
197     end
198   end
199
200   def find_attr attr
201     if empty?
202       @children.argfind { |c| c.find_attr attr }
203     else
204       @message.send attr
205     end
206   end
207   def subj; find_attr :subj; end
208   def date; find_attr :date; end
209
210   def is_reply?; subj && Message.subject_is_reply?(subj); end
211
212   def to_s
213     [ "<#{id}",
214       (@parent.nil? ? nil : "parent=#{@parent.id}"),
215       (@children.empty? ? nil : "children=#{@children.map { |c| c.id }.inspect}"),
216     ].compact.join(" ") + ">"
217   end
218
219   def dump_recursive f=$stdout, indent=0, root=true, parent=nil
220     raise "inconsistency" unless parent.nil? || parent.children.include?(self)
221     unless root
222       f.print " " * indent
223       f.print "+->"
224     end
225     line = #"[#{useful? ? 'U' : ' '}] " +
226       if @message
227         "[#{thread}] #{@message.subj} " ##{@message.refs.inspect} / #{@message.replytos.inspect}"
228       else
229         "<no message>"
230       end
231
232     f.puts "#{id} #{line}"#[0 .. (105 - indent)]
233     indent += 3
234     @children.each { |c| c.dump_recursive f, indent, false, self }
235   end
236 end
237
238 ## A set of threads (so a forest). Builds thread structures by reading
239 ## messages from an index.
240 ##
241 ## If 'thread_by_subj' is true, puts messages with the same subject in
242 ## one thread, even if they don't reference each other. This is
243 ## helpful for crappy MUAs that don't set In-reply-to: or References:
244 ## headers, but means that messages may be threaded unnecessarily.
245 class ThreadSet
246   attr_reader :num_messages
247   bool_reader :thread_by_subj
248
249   def initialize index, thread_by_subj=true
250     @index = index
251     @num_messages = 0
252     ## map from message ids to container objects
253     @messages = SavingHash.new { |id| Container.new id }
254     ## map from subject strings or (or root message ids) to thread objects
255     @threads = SavingHash.new { Thread.new }
256     @thread_by_subj = thread_by_subj
257   end
258
259   def thread_for_id mid; (c = @messages[mid]) && c.root.thread end
260   def contains_id? id; @messages.member?(id) && !@messages[id].empty? end
261   def thread_for m; thread_for_id m.id end
262   def contains? m; contains_id? m.id end
263
264   def delete_cruft
265     @threads.each { |k, v| @threads.delete(k) if v.empty? }
266   end
267   private :delete_cruft
268
269   def threads; delete_cruft; @threads.values; end
270   def size; delete_cruft; @threads.size; end
271
272   ## unused
273   def dump f
274     @threads.each do |s, t|
275       f.puts "**********************"
276       f.puts "** for subject #{s} **"
277       f.puts "**********************"
278       t.dump f
279     end
280   end
281
282   def link p, c, overwrite=false
283     if p == c || p.descendant_of?(c) || c.descendant_of?(p) # would create a loop
284 #      puts "*** linking parent #{p} and child #{c} would create a loop"
285       return
286     end
287
288     if c.parent.nil? || overwrite
289       c.parent.children.delete c if overwrite && c.parent
290       if c.thread
291         c.thread.drop c 
292         c.thread = nil
293       end
294       p.children << c
295       c.parent = p
296     end
297   end
298   private :link
299
300   def remove_id mid
301     return unless(c = @messages[mid])
302
303     c.parent.children.delete c if c.parent
304     if c.thread
305       c.thread.drop c
306       c.thread = nil
307     end
308   end
309
310   ## load in (at most) num number of threads from the index
311   def load_n_threads num, opts={}
312     @index.each_id_by_date opts do |mid, builder|
313       break if size >= num
314       next if contains_id? mid
315
316       m = builder.call
317       load_thread_for_message m, :skip_killed => opts[:skip_killed], :load_deleted => opts[:load_deleted], :load_spam => opts[:load_spam]
318       yield size if block_given?
319     end
320   end
321
322   ## loads in all messages needed to thread m
323   ## may do nothing if m's thread is killed
324   def load_thread_for_message m, opts={}
325     good = @index.each_message_in_thread_for m, opts do |mid, builder|
326       next if contains_id? mid
327       add_message builder.call
328     end
329     add_message m if good
330   end
331
332   ## merges in a pre-loaded thread
333   def add_thread t
334     raise "duplicate" if @threads.values.member? t
335     t.each { |m, *o| add_message m }
336   end
337
338   def is_relevant? m
339     m.refs.any? { |ref_id| @messages.member? ref_id }
340   end
341
342   ## the heart of the threading code
343   def add_message message
344     el = @messages[message.id]
345     return if el.message # we've seen it before
346
347     el.message = message
348     oldroot = el.root
349
350     ## link via references:
351     prev = nil
352     message.refs.each do |ref_id|
353       ref = @messages[ref_id]
354       link prev, ref if prev
355       prev = ref
356     end
357     link prev, el, true if prev
358
359     ## link via in-reply-to:
360     message.replytos.each do |ref_id|
361       ref = @messages[ref_id]
362       link ref, el, true
363       break # only do the first one
364     end
365
366     root = el.root
367
368     ## new root. need to drop old one and put this one in its place
369     if root != oldroot && oldroot.thread
370       oldroot.thread.drop oldroot
371       oldroot.thread = nil
372     end
373
374     key =
375       if thread_by_subj?
376         Message.normalize_subj root.subj
377       else
378         root.id
379       end
380
381     ## check to see if the subject is still the same (in the case
382     ## that we first added a child message with a different
383     ## subject)
384     if root.thread
385       unless @threads[key] == root.thread
386         if @threads[key]
387           root.thread.empty!
388           @threads[key] << root
389           root.thread = @threads[key]
390         else
391           @threads[key] = root.thread
392         end
393       end
394     else
395       thread = @threads[key]
396       thread << root
397       root.thread = thread
398     end
399
400     ## last bit
401     @num_messages += 1
402   end
403 end
404
405 end