]> git.cworth.org Git - sup/blob - lib/sup/index.rb
additional gmail-style query language additions
[sup] / lib / sup / index.rb
1 ## the index structure for redwood. interacts with ferret.
2
3 require 'fileutils'
4 require 'ferret'
5 begin
6   require 'chronic'
7   $have_chronic = true
8 rescue LoadError => e
9   Redwood::log "optional 'chronic' library not found (run 'gem install chronic' to install)"
10   $have_chronic = false
11 end
12
13 module Redwood
14
15 class Index
16   class LockError < StandardError
17     def initialize h
18       @h = h
19     end
20
21     def method_missing m; @h[m.to_s] end
22   end
23
24   include Singleton
25
26   attr_reader :index
27   alias ferret index
28   def initialize dir=BASE_DIR
29     @dir = dir
30     @sources = {}
31     @sources_dirty = false
32
33     wsa = Ferret::Analysis::WhiteSpaceAnalyzer.new false
34     sa = Ferret::Analysis::StandardAnalyzer.new [], true
35     @analyzer = Ferret::Analysis::PerFieldAnalyzer.new wsa
36     @analyzer[:body] = sa
37     @analyzer[:subject] = sa
38     @qparser ||= Ferret::QueryParser.new :default_field => :body, :analyzer => @analyzer, :or_default => false
39     @lock = Lockfile.new lockfile, :retries => 0, :max_age => nil
40
41     self.class.i_am_the_instance self
42   end
43
44   def lockfile; File.join @dir, "lock" end
45
46   def lock
47     Redwood::log "locking #{lockfile}..."
48     begin
49       @lock.lock
50     rescue Lockfile::MaxTriesLockError
51       raise LockError, @lock.lockinfo_on_disk
52     end
53   end
54
55   def start_lock_update_thread
56     @lock_update_thread = Redwood::reporting_thread("lock update") do
57       while true
58         sleep 30
59         @lock.touch_yourself
60       end
61     end
62   end
63
64   def stop_lock_update_thread
65     @lock_update_thread.kill if @lock_update_thread
66     @lock_update_thread = nil
67   end
68
69   def fancy_lock_error_message_for e
70     secs = Time.now - e.mtime
71     mins = secs.to_i / 60
72     time =
73       if mins == 0
74         "#{secs.to_i} seconds"
75       else
76         "#{mins} minutes"
77       end
78
79     <<EOS
80 Error: the sup index is locked by another process! User '#{e.user}' on
81 host '#{e.host}' is running #{e.pname} with pid #{e.pid}. The process was alive
82 as of #{time} ago.
83 EOS
84   end
85
86   def lock_or_die
87     begin
88       lock
89     rescue LockError => e
90       $stderr.puts fancy_lock_error_message_for(e)
91       $stderr.puts <<EOS
92
93 You can wait for the process to finish, or, if it crashed and left a
94 stale lock file behind, you can manually delete #{@lock.path}.
95 EOS
96       exit
97     end
98   end
99
100   def unlock
101     if @lock && @lock.locked?
102       Redwood::log "unlocking #{lockfile}..."
103       @lock.unlock
104     end
105   end
106
107   def load
108     load_sources
109     load_index
110   end
111
112   def save
113     Redwood::log "saving index and sources..."
114     FileUtils.mkdir_p @dir unless File.exists? @dir
115     save_sources
116     save_index
117   end
118
119   def add_source source
120     raise "duplicate source!" if @sources.include? source
121     @sources_dirty = true
122     max = @sources.max_of { |id, s| s.is_a?(DraftLoader) || s.is_a?(SentLoader) ? 0 : id }
123     source.id ||= (max || 0) + 1
124     ##source.id += 1 while @sources.member? source.id
125     @sources[source.id] = source
126   end
127
128   def source_for uri; @sources.values.find { |s| s.is_source_for? uri }; end
129   def usual_sources; @sources.values.find_all { |s| s.usual? }; end
130   def sources; @sources.values; end
131
132   def load_index dir=File.join(@dir, "ferret")
133     if File.exists? dir
134       Redwood::log "loading index..."
135       @index = Ferret::Index::Index.new(:path => dir, :analyzer => @analyzer)
136       Redwood::log "loaded index of #{@index.size} messages"
137     else
138       Redwood::log "creating index..."
139       field_infos = Ferret::Index::FieldInfos.new :store => :yes
140       field_infos.add_field :message_id
141       field_infos.add_field :source_id
142       field_infos.add_field :source_info
143       field_infos.add_field :date, :index => :untokenized
144       field_infos.add_field :body, :store => :no
145       field_infos.add_field :label
146       field_infos.add_field :subject
147       field_infos.add_field :from
148       field_infos.add_field :to
149       field_infos.add_field :refs
150       field_infos.add_field :snippet, :index => :no, :term_vector => :no
151       field_infos.create_index dir
152       @index = Ferret::Index::Index.new(:path => dir, :analyzer => @analyzer)
153     end
154   end
155
156   ## Syncs the message to the index: deleting if it's already there,
157   ## and adding either way. Index state will be determined by m.labels.
158   ##
159   ## docid and entry can be specified if they're already known.
160   def sync_message m, docid=nil, entry=nil
161     docid, entry = load_entry_for_id m.id unless docid && entry
162
163     raise "no source info for message #{m.id}" unless m.source && m.source_info
164     raise "trying to delete non-corresponding entry #{docid} with index message-id #{@index[docid][:message_id].inspect} and parameter message id #{m.id.inspect}" if docid && @index[docid][:message_id] != m.id
165
166     source_id = 
167       if m.source.is_a? Integer
168         m.source
169       else
170         m.source.id or raise "unregistered source #{m.source} (id #{m.source.id.inspect})"
171       end
172
173     to = (m.to + m.cc + m.bcc).map { |x| x.email }.join(" ")
174     snippet = 
175       if m.snippet_contains_encrypted_content? && $config[:discard_snippets_from_encrypted_messages]
176         ""
177       else
178         m.snippet
179       end
180
181     d = {
182       :message_id => m.id,
183       :source_id => source_id,
184       :source_info => m.source_info,
185       :date => m.date.to_indexable_s,
186       :body => m.content,
187       :snippet => snippet,
188       :label => m.labels.uniq.join(" "),
189       :from => m.from ? m.from.email : "",
190       :to => (m.to + m.cc + m.bcc).map { |x| x.email }.join(" "),
191       :subject => wrap_subj(Message.normalize_subj(m.subj)),
192       :refs => (m.refs + m.replytos).uniq.join(" "),
193     }
194
195     @index.delete docid if docid
196     @index.add_document d
197     
198     docid, entry = load_entry_for_id m.id
199     ## this hasn't been triggered in a long time. TODO: decide whether it's still a problem.
200     raise "just added message #{m.id.inspect} but couldn't find it in a search" unless docid
201     true
202   end
203
204   def save_index fn=File.join(@dir, "ferret")
205     # don't have to do anything, apparently
206   end
207
208   def contains_id? id
209     @index.search(Ferret::Search::TermQuery.new(:message_id, id)).total_hits > 0
210   end
211   def contains? m; contains_id? m.id; end
212   def size; @index.size; end
213
214   ## you should probably not call this on a block that doesn't break
215   ## rather quickly because the results can be very large.
216   EACH_BY_DATE_NUM = 100
217   def each_id_by_date opts={}
218     return if @index.size == 0 # otherwise ferret barfs ###TODO: remove this once my ferret patch is accepted
219     query = build_query opts
220     offset = 0
221     while true
222       results = @index.search(query, :sort => "date DESC", :limit => EACH_BY_DATE_NUM, :offset => offset)
223       Redwood::log "got #{results.total_hits} results for query (offset #{offset}) #{query.inspect}"
224       results.hits.each { |hit| yield @index[hit.doc][:message_id], lambda { build_message hit.doc } }
225       break if offset >= results.total_hits - EACH_BY_DATE_NUM
226       offset += EACH_BY_DATE_NUM
227     end
228   end
229
230   def num_results_for opts={}
231     return 0 if @index.size == 0 # otherwise ferret barfs ###TODO: remove this once my ferret patch is accepted
232
233     q = build_query opts
234     index.search(q, :limit => 1).total_hits
235   end
236
237   ## yield all messages in the thread containing 'm' by repeatedly
238   ## querying the index. yields pairs of message ids and
239   ## message-building lambdas, so that building an unwanted message
240   ## can be skipped in the block if desired.
241   ##
242   ## only two options, :limit and :skip_killed. if :skip_killed is
243   ## true, stops loading any thread if a message with a :killed flag
244   ## is found.
245   SAME_SUBJECT_DATE_LIMIT = 7
246   MAX_CLAUSES = 1000
247   def each_message_in_thread_for m, opts={}
248     #Redwood::log "Building thread for #{m.id}: #{m.subj}"
249     messages = {}
250     searched = {}
251     num_queries = 0
252
253     if $config[:thread_by_subject] # do subject queries
254       date_min = m.date - (SAME_SUBJECT_DATE_LIMIT * 12 * 3600)
255       date_max = m.date + (SAME_SUBJECT_DATE_LIMIT * 12 * 3600)
256
257       q = Ferret::Search::BooleanQuery.new true
258       sq = Ferret::Search::PhraseQuery.new(:subject)
259       wrap_subj(Message.normalize_subj(m.subj)).split(/\s+/).each do |t|
260         sq.add_term t
261       end
262       q.add_query sq, :must
263       q.add_query Ferret::Search::RangeQuery.new(:date, :>= => date_min.to_indexable_s, :<= => date_max.to_indexable_s), :must
264
265       q = build_query :qobj => q
266
267       pending = @index.search(q).hits.map { |hit| @index[hit.doc][:message_id] }
268       Redwood::log "found #{pending.size} results for subject query #{q}"
269     else
270       pending = [m.id]
271     end
272
273     until pending.empty? || (opts[:limit] && messages.size >= opts[:limit])
274       q = Ferret::Search::BooleanQuery.new true
275       # this disappeared in newer ferrets... wtf.
276       # q.max_clause_count = 2048
277
278       lim = [MAX_CLAUSES / 2, pending.length].min
279       pending[0 ... lim].each do |id|
280         searched[id] = true
281         q.add_query Ferret::Search::TermQuery.new(:message_id, id), :should
282         q.add_query Ferret::Search::TermQuery.new(:refs, id), :should
283       end
284       pending = pending[lim .. -1]
285
286       q = build_query :qobj => q
287
288       num_queries += 1
289       killed = false
290       @index.search_each(q, :limit => :all) do |docid, score|
291         break if opts[:limit] && messages.size >= opts[:limit]
292         if @index[docid][:label].split(/\s+/).include?("killed") && opts[:skip_killed]
293           killed = true
294           break
295         end
296         mid = @index[docid][:message_id]
297         unless messages.member?(mid)
298           #Redwood::log "got #{mid} as a child of #{id}"
299           messages[mid] ||= lambda { build_message docid }
300           refs = @index[docid][:refs].split(" ")
301           pending += refs.select { |id| !searched[id] }
302         end
303       end
304     end
305
306     if killed
307       Redwood::log "thread for #{m.id} is killed, ignoring"
308       false
309     else
310       Redwood::log "ran #{num_queries} queries to build thread of #{messages.size + 1} messages for #{m.id}: #{m.subj}" if num_queries > 0
311       messages.each { |mid, builder| yield mid, builder }
312       true
313     end
314   end
315
316   ## builds a message object from a ferret result
317   def build_message docid
318     doc = @index[docid]
319     source = @sources[doc[:source_id].to_i]
320     #puts "building message #{doc[:message_id]} (#{source}##{doc[:source_info]})"
321     raise "invalid source #{doc[:source_id]}" unless source
322
323     fake_header = {
324       "date" => Time.at(doc[:date].to_i),
325       "subject" => unwrap_subj(doc[:subject]),
326       "from" => doc[:from],
327       "to" => doc[:to].split(/\s+/).join(", "), # reformat
328       "message-id" => doc[:message_id],
329       "references" => doc[:refs].split(/\s+/).map { |x| "<#{x}>" }.join(" "),
330     }
331
332     Message.new :source => source, :source_info => doc[:source_info].to_i, 
333                 :labels => doc[:label].split(" ").map { |s| s.intern },
334                 :snippet => doc[:snippet], :header => fake_header
335   end
336
337   def fresh_thread_id; @next_thread_id += 1; end
338   def wrap_subj subj; "__START_SUBJECT__ #{subj} __END_SUBJECT__"; end
339   def unwrap_subj subj; subj =~ /__START_SUBJECT__ (.*?) __END_SUBJECT__/ && $1; end
340
341   def drop_entry docno; @index.delete docno; end
342
343   def load_entry_for_id mid
344     results = @index.search(Ferret::Search::TermQuery.new(:message_id, mid))
345     return if results.total_hits == 0
346     docid = results.hits[0].doc
347     [docid, @index[docid]]
348   end
349
350   def load_contacts emails, h={}
351     q = Ferret::Search::BooleanQuery.new true
352     emails.each do |e|
353       qq = Ferret::Search::BooleanQuery.new true
354       qq.add_query Ferret::Search::TermQuery.new(:from, e), :should
355       qq.add_query Ferret::Search::TermQuery.new(:to, e), :should
356       q.add_query qq
357     end
358     q.add_query Ferret::Search::TermQuery.new(:label, "spam"), :must_not
359     
360     Redwood::log "contact search: #{q}"
361     contacts = {}
362     num = h[:num] || 20
363     @index.search_each(q, :sort => "date DESC", :limit => :all) do |docid, score|
364       break if contacts.size >= num
365       #Redwood::log "got message #{docid} to: #{@index[docid][:to].inspect} and from: #{@index[docid][:from].inspect}"
366       f = @index[docid][:from]
367       t = @index[docid][:to]
368
369       if AccountManager.is_account_email? f
370         t.split(" ").each { |e| contacts[PersonManager.person_for(e)] = true }
371       else
372         contacts[PersonManager.person_for(f)] = true
373       end
374     end
375
376     contacts.keys.compact
377   end
378
379   def load_sources fn=Redwood::SOURCE_FN
380     source_array = (Redwood::load_yaml_obj(fn) || []).map { |o| Recoverable.new o }
381     @sources = Hash[*(source_array).map { |s| [s.id, s] }.flatten]
382     @sources_dirty = false
383   end
384
385   def has_any_from_source_with_label? source, label
386     q = Ferret::Search::BooleanQuery.new
387     q.add_query Ferret::Search::TermQuery.new("source_id", source.id.to_s), :must
388     q.add_query Ferret::Search::TermQuery.new("label", label.to_s), :must
389     index.search(q, :limit => 1).total_hits > 0
390   end
391
392 protected
393
394   ## do any specialized parsing
395   ## returns nil and flashes error message if parsing failed
396   def parse_user_query_string str
397     extraopts = {}
398     result = str.gsub(/\b(to|from):(\S+)\b/) do
399       field, name = $1, $2
400       if(p = ContactManager.contact_for(name))
401         [field, p.email]
402       elsif name == "me"
403         [field, "(" + AccountManager.user_emails.join("||") + ")"]
404       else
405         [field, name]
406       end.join(":")
407     end
408     
409     # gmail style "is" operator
410     result = result.gsub(/\b(is):(\S+)\b/) do
411       field, label = $1, $2
412       case label
413       when "read"
414         "-label:unread"
415       when "spam"
416         extraopts[:load_spam] = true
417         "label:spam"
418       when "deleted"
419         extraopts[:load_deleted] = true
420         "label:deleted"
421       else
422         "label:#{$2}"
423       end
424     end
425
426     if $have_chronic
427       chronic_failure = false
428       result = result.gsub(/\b(before|on|in|during|after):(\((.+?)\)\B|(\S+)\b)/) do
429         break if chronic_failure
430         field, datestr = $1, ($3 || $4)
431         realdate = Chronic.parse(datestr, :guess => false, :context => :none)
432         if realdate
433           case field
434           when "after"
435             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate.end}"
436             "date:(>= #{sprintf "%012d", realdate.end.to_i})"
437           when "before"
438             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate.begin}"
439             "date:(<= #{sprintf "%012d", realdate.begin.to_i})"
440           else
441             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate}"
442             "date:(<= #{sprintf "%012d", realdate.end.to_i}) date:(>= #{sprintf "%012d", realdate.begin.to_i})"
443           end
444         else
445           BufferManager.flash "Don't understand date #{datestr.inspect}!"
446           chronic_failure = true
447         end
448       end
449       result = nil if chronic_failure
450     end
451     
452     Redwood::log "translated #{str.inspect} to #{result}" unless result == str
453     if result
454       [@qparser.parse(result), extraopts]
455     else
456       [nil,nil]
457     end
458   end
459
460   def build_query opts
461     query = Ferret::Search::BooleanQuery.new
462     query.add_query opts[:qobj], :must if opts[:qobj]
463     labels = ([opts[:label]] + (opts[:labels] || [])).compact
464     labels.each { |t| query.add_query Ferret::Search::TermQuery.new("label", t.to_s), :must }
465     if opts[:participants]
466       q2 = Ferret::Search::BooleanQuery.new
467       opts[:participants].each do |p|
468         q2.add_query Ferret::Search::TermQuery.new("from", p.email), :should
469         q2.add_query Ferret::Search::TermQuery.new("to", p.email), :should
470       end
471       query.add_query q2, :must
472     end
473         
474     query.add_query Ferret::Search::TermQuery.new("label", "spam"), :must_not unless opts[:load_spam] || labels.include?(:spam)
475     query.add_query Ferret::Search::TermQuery.new("label", "deleted"), :must_not unless opts[:load_deleted] || labels.include?(:deleted)
476     query.add_query Ferret::Search::TermQuery.new("label", "killed"), :must_not if opts[:skip_killed]
477     query
478   end
479
480   def save_sources fn=Redwood::SOURCE_FN
481     if @sources_dirty || @sources.any? { |id, s| s.dirty? }
482       bakfn = fn + ".bak"
483       if File.exists? fn
484         File.chmod 0600, fn
485         FileUtils.mv fn, bakfn, :force => true unless File.exists?(bakfn) && File.size(fn) == 0
486       end
487       Redwood::save_yaml_obj @sources.values.sort_by { |s| s.id.to_i }, fn, true
488       File.chmod 0600, fn
489     end
490     @sources_dirty = false
491   end
492 end
493
494 end