]> git.cworth.org Git - sup/blob - lib/sup/index.rb
remove logging messages
[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 sources
129     ## favour the inbox by listing non-archived sources first
130     @sources.values.sort_by { |s| s.id }.partition { |s| !s.archived? }.flatten
131   end
132
133   def source_for uri; sources.find { |s| s.is_source_for? uri }; end
134   def usual_sources; sources.find_all { |s| s.usual? }; end
135
136   def load_index dir=File.join(@dir, "ferret")
137     if File.exists? dir
138       Redwood::log "loading index..."
139       @index = Ferret::Index::Index.new(:path => dir, :analyzer => @analyzer)
140       Redwood::log "loaded index of #{@index.size} messages"
141     else
142       Redwood::log "creating index..."
143       field_infos = Ferret::Index::FieldInfos.new :store => :yes
144       field_infos.add_field :message_id
145       field_infos.add_field :source_id
146       field_infos.add_field :source_info
147       field_infos.add_field :date, :index => :untokenized
148       field_infos.add_field :body
149       field_infos.add_field :label
150       field_infos.add_field :subject
151       field_infos.add_field :from
152       field_infos.add_field :to
153       field_infos.add_field :refs
154       field_infos.add_field :snippet, :index => :no, :term_vector => :no
155       field_infos.create_index dir
156       @index = Ferret::Index::Index.new(:path => dir, :analyzer => @analyzer)
157     end
158   end
159
160   ## Syncs the message to the index: deleting if it's already there,
161   ## and adding either way. Index state will be determined by m.labels.
162   ##
163   ## docid and entry can be specified if they're already known.
164   def sync_message m, docid=nil, entry=nil
165     docid, entry = load_entry_for_id m.id unless docid && entry
166
167     raise "no source info for message #{m.id}" unless m.source && m.source_info
168     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
169
170     source_id = 
171       if m.source.is_a? Integer
172         m.source
173       else
174         m.source.id or raise "unregistered source #{m.source} (id #{m.source.id.inspect})"
175       end
176
177     snippet = 
178       if m.snippet_contains_encrypted_content? && $config[:discard_snippets_from_encrypted_messages]
179         ""
180       else
181         m.snippet
182       end
183
184     ## write the new document to the index. if the entry already exists in the
185     ## index, reuse it (which avoids having to reload the entry from the source,
186     ## which can be quite expensive for e.g. large threads of IMAP actions.)
187     ##
188     ## exception: if the index entry belongs to an earlier version of the
189     ## message, use everything from the new message instead, but union the
190     ## flags. this allows messages sent to mailing lists to have their header
191     ## updated and to have flags set properly.
192     ##
193     ## minor hack: messages in sources with lower ids have priority over
194     ## messages in sources with higher ids. so messages in the inbox will
195     ## override everyone, and messages in the sent box will be overridden
196     ## by everyone else.
197     ##
198     ## written in this manner to support previous versions of the index which
199     ## did not keep around the entry body. upgrading is thus seamless.
200     entry ||= {}
201     labels = m.labels.uniq # override because this is the new state, unless...
202
203     ## if we are a later version of a message, ignore what's in the index,
204     ## but merge in the labels.
205     if entry[:source_id] && entry[:source_info] && entry[:label] &&
206       ((entry[:source_id].to_i > source_id) || (entry[:source_info].to_i < m.source_info))
207       labels = (entry[:label].split(/\s+/).map { |l| l.intern } + m.labels).uniq
208       #Redwood::log "found updated version of message #{m.id}: #{m.subj}"
209       #Redwood::log "previous version was at #{entry[:source_id].inspect}:#{entry[:source_info].inspect}, this version at #{source_id.inspect}:#{m.source_info.inspect}"
210       #Redwood::log "merged labels are #{labels.inspect} (index #{entry[:label].inspect}, message #{m.labels.inspect})"
211       entry = {}
212     end
213
214     d = {
215       :message_id => (entry[:message_id] || m.id),
216       :source_id => (entry[:source_id] || source_id),
217       :source_info => (entry[:source_info] || m.source_info),
218       :date => (entry[:date] || m.date.to_indexable_s),
219       :body => (entry[:body] || m.indexable_content),
220       :snippet => snippet, # always override
221       :label => labels.uniq.join(" "),
222       :from => (entry[:from] || (m.from ? m.from.indexable_content : "")),
223       :to => (entry[:to] || (m.to + m.cc + m.bcc).map { |x| x.indexable_content }.join(" ")),
224       :subject => (entry[:subject] || wrap_subj(m.subj)),
225       :refs => (entry[:refs] || (m.refs + m.replytos).uniq.join(" ")),
226     }
227
228     @index.delete docid if docid
229     @index.add_document d
230     
231     docid, entry = load_entry_for_id m.id
232     ## this hasn't been triggered in a long time. TODO: decide whether it's still a problem.
233     raise "just added message #{m.id.inspect} but couldn't find it in a search" unless docid
234     true
235   end
236
237   def save_index fn=File.join(@dir, "ferret")
238     # don't have to do anything, apparently
239   end
240
241   def contains_id? id
242     @index.search(Ferret::Search::TermQuery.new(:message_id, id)).total_hits > 0
243   end
244   def contains? m; contains_id? m.id; end
245   def size; @index.size; end
246
247   ## you should probably not call this on a block that doesn't break
248   ## rather quickly because the results can be very large.
249   EACH_BY_DATE_NUM = 100
250   def each_id_by_date opts={}
251     return if @index.size == 0 # otherwise ferret barfs ###TODO: remove this once my ferret patch is accepted
252     query = build_query opts
253     offset = 0
254     while true
255       results = @index.search(query, :sort => "date DESC", :limit => EACH_BY_DATE_NUM, :offset => offset)
256       Redwood::log "got #{results.total_hits} results for query (offset #{offset}) #{query.inspect}"
257       results.hits.each { |hit| yield @index[hit.doc][:message_id], lambda { build_message hit.doc } }
258       break if offset >= results.total_hits - EACH_BY_DATE_NUM
259       offset += EACH_BY_DATE_NUM
260     end
261   end
262
263   def num_results_for opts={}
264     return 0 if @index.size == 0 # otherwise ferret barfs ###TODO: remove this once my ferret patch is accepted
265
266     q = build_query opts
267     index.search(q, :limit => 1).total_hits
268   end
269
270   ## yield all messages in the thread containing 'm' by repeatedly
271   ## querying the index. yields pairs of message ids and
272   ## message-building lambdas, so that building an unwanted message
273   ## can be skipped in the block if desired.
274   ##
275   ## only two options, :limit and :skip_killed. if :skip_killed is
276   ## true, stops loading any thread if a message with a :killed flag
277   ## is found.
278   SAME_SUBJECT_DATE_LIMIT = 7
279   MAX_CLAUSES = 1000
280   def each_message_in_thread_for m, opts={}
281     #Redwood::log "Building thread for #{m.id}: #{m.subj}"
282     messages = {}
283     searched = {}
284     num_queries = 0
285
286     if $config[:thread_by_subject] # do subject queries
287       date_min = m.date - (SAME_SUBJECT_DATE_LIMIT * 12 * 3600)
288       date_max = m.date + (SAME_SUBJECT_DATE_LIMIT * 12 * 3600)
289
290       q = Ferret::Search::BooleanQuery.new true
291       sq = Ferret::Search::PhraseQuery.new(:subject)
292       wrap_subj(Message.normalize_subj(m.subj)).split(/\s+/).each do |t|
293         sq.add_term t
294       end
295       q.add_query sq, :must
296       q.add_query Ferret::Search::RangeQuery.new(:date, :>= => date_min.to_indexable_s, :<= => date_max.to_indexable_s), :must
297
298       q = build_query :qobj => q
299
300       pending = @index.search(q).hits.map { |hit| @index[hit.doc][:message_id] }
301       Redwood::log "found #{pending.size} results for subject query #{q}"
302     else
303       pending = [m.id]
304     end
305
306     until pending.empty? || (opts[:limit] && messages.size >= opts[:limit])
307       q = Ferret::Search::BooleanQuery.new true
308       # this disappeared in newer ferrets... wtf.
309       # q.max_clause_count = 2048
310
311       lim = [MAX_CLAUSES / 2, pending.length].min
312       pending[0 ... lim].each do |id|
313         searched[id] = true
314         q.add_query Ferret::Search::TermQuery.new(:message_id, id), :should
315         q.add_query Ferret::Search::TermQuery.new(:refs, id), :should
316       end
317       pending = pending[lim .. -1]
318
319       q = build_query :qobj => q
320
321       num_queries += 1
322       killed = false
323       @index.search_each(q, :limit => :all) do |docid, score|
324         break if opts[:limit] && messages.size >= opts[:limit]
325         if @index[docid][:label].split(/\s+/).include?("killed") && opts[:skip_killed]
326           killed = true
327           break
328         end
329         mid = @index[docid][:message_id]
330         unless messages.member?(mid)
331           #Redwood::log "got #{mid} as a child of #{id}"
332           messages[mid] ||= lambda { build_message docid }
333           refs = @index[docid][:refs].split(" ")
334           pending += refs.select { |id| !searched[id] }
335         end
336       end
337     end
338
339     if killed
340       Redwood::log "thread for #{m.id} is killed, ignoring"
341       false
342     else
343       Redwood::log "ran #{num_queries} queries to build thread of #{messages.size + 1} messages for #{m.id}: #{m.subj}" if num_queries > 0
344       messages.each { |mid, builder| yield mid, builder }
345       true
346     end
347   end
348
349   ## builds a message object from a ferret result
350   def build_message docid
351     doc = @index[docid]
352     source = @sources[doc[:source_id].to_i]
353     #puts "building message #{doc[:message_id]} (#{source}##{doc[:source_info]})"
354     raise "invalid source #{doc[:source_id]}" unless source
355
356     fake_header = {
357       "date" => Time.at(doc[:date].to_i),
358       "subject" => unwrap_subj(doc[:subject]),
359       "from" => doc[:from],
360       "to" => doc[:to].split(/\s+/).join(", "), # reformat
361       "message-id" => doc[:message_id],
362       "references" => doc[:refs].split(/\s+/).map { |x| "<#{x}>" }.join(" "),
363     }
364
365     Message.new :source => source, :source_info => doc[:source_info].to_i, 
366                 :labels => doc[:label].split(" ").map { |s| s.intern },
367                 :snippet => doc[:snippet], :header => fake_header
368   end
369
370   def fresh_thread_id; @next_thread_id += 1; end
371   def wrap_subj subj; "__START_SUBJECT__ #{subj} __END_SUBJECT__"; end
372   def unwrap_subj subj; subj =~ /__START_SUBJECT__ (.*?) __END_SUBJECT__/ && $1; end
373
374   def drop_entry docno; @index.delete docno; end
375
376   def load_entry_for_id mid
377     results = @index.search(Ferret::Search::TermQuery.new(:message_id, mid))
378     return if results.total_hits == 0
379     docid = results.hits[0].doc
380     [docid, @index[docid]]
381   end
382
383   def load_contacts emails, h={}
384     q = Ferret::Search::BooleanQuery.new true
385     emails.each do |e|
386       qq = Ferret::Search::BooleanQuery.new true
387       qq.add_query Ferret::Search::TermQuery.new(:from, e), :should
388       qq.add_query Ferret::Search::TermQuery.new(:to, e), :should
389       q.add_query qq
390     end
391     q.add_query Ferret::Search::TermQuery.new(:label, "spam"), :must_not
392     
393     Redwood::log "contact search: #{q}"
394     contacts = {}
395     num = h[:num] || 20
396     @index.search_each(q, :sort => "date DESC", :limit => :all) do |docid, score|
397       break if contacts.size >= num
398       #Redwood::log "got message #{docid} to: #{@index[docid][:to].inspect} and from: #{@index[docid][:from].inspect}"
399       f = @index[docid][:from]
400       t = @index[docid][:to]
401
402       if AccountManager.is_account_email? f
403         t.split(" ").each { |e| contacts[PersonManager.person_for(e)] = true }
404       else
405         contacts[PersonManager.person_for(f)] = true
406       end
407     end
408
409     contacts.keys.compact
410   end
411
412   def load_sources fn=Redwood::SOURCE_FN
413     source_array = (Redwood::load_yaml_obj(fn) || []).map { |o| Recoverable.new o }
414     @sources = Hash[*(source_array).map { |s| [s.id, s] }.flatten]
415     @sources_dirty = false
416   end
417
418   def has_any_from_source_with_label? source, label
419     q = Ferret::Search::BooleanQuery.new
420     q.add_query Ferret::Search::TermQuery.new("source_id", source.id.to_s), :must
421     q.add_query Ferret::Search::TermQuery.new("label", label.to_s), :must
422     index.search(q, :limit => 1).total_hits > 0
423   end
424
425 protected
426
427   ## do any specialized parsing
428   ## returns nil and flashes error message if parsing failed
429   def parse_user_query_string s
430     extraopts = {}
431
432     ## this is a little hacky, but it works, at least until ferret changes
433     ## its api. we parse the user query string with ferret twice: the first
434     ## time we just turn the resulting object back into a string, which has
435     ## the next effect of transforming the original string into a nice
436     ## normalized form with + and - instead of AND, OR, etc. then we do some
437     ## string substitutions which depend on this normalized form, re-parse
438     ## the string with Ferret, and return the resulting query object.
439
440     norms = @qparser.parse(s).to_s
441     Redwood::log "normalized #{s.inspect} to #{norms.inspect}" unless s == norms
442
443     subs = norms.gsub(/\b(to|from):(\S+)\b/) do
444       field, name = $1, $2
445       if(p = ContactManager.contact_for(name))
446         [field, p.email]
447       elsif name == "me"
448         [field, "(" + AccountManager.user_emails.join("||") + ")"]
449       else
450         [field, name]
451       end.join(":")
452     end
453
454     ## if we see a label:deleted or a label:spam term anywhere in the query
455     ## string, we set the extra load_spam or load_deleted options to true.
456     ## bizarre? well, because the query allows arbitrary parenthesized boolean
457     ## expressions, without fully parsing the query, we can't tell whether
458     ## the user is explicitly directing us to search spam messages or not.
459     ## e.g. if the string is -(-(-(-(-label:spam)))), does the user want to
460     ## search spam messages or not?
461     ##
462     ## so, we rely on the fact that turning these extra options ON turns OFF
463     ## the adding of "-label:deleted" or "-label:spam" terms at the very
464     ## final stage of query processing. if the user wants to search spam
465     ## messages, not adding that is the right thing; if he doesn't want to
466     ## search spam messages, then not adding it won't have any effect.
467     extraopts[:load_spam] = true if subs =~ /\blabel:spam\b/
468     extraopts[:load_deleted] = true if subs =~ /\blabel:deleted\b/
469
470     ## gmail style "is" operator
471     subs = subs.gsub(/\b(is):(\S+)\b/) do
472       field, label = $1, $2
473       case label
474       when "read"
475         "-label:unread"
476       when "spam"
477         extraopts[:load_spam] = true
478         "label:spam"
479       when "deleted"
480         extraopts[:load_deleted] = true
481         "label:deleted"
482       else
483         "label:#{$2}"
484       end
485     end
486
487     if $have_chronic
488       chronic_failure = false
489       subs = subs.gsub(/\b(before|on|in|during|after):(\((.+?)\)\B|(\S+)\b)/) do
490         break if chronic_failure
491         field, datestr = $1, ($3 || $4)
492         realdate = Chronic.parse(datestr, :guess => false, :context => :none)
493         if realdate
494           case field
495           when "after"
496             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate.end}"
497             "date:(>= #{sprintf "%012d", realdate.end.to_i})"
498           when "before"
499             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate.begin}"
500             "date:(<= #{sprintf "%012d", realdate.begin.to_i})"
501           else
502             Redwood::log "chronic: translated #{field}:#{datestr} to #{realdate}"
503             "date:(<= #{sprintf "%012d", realdate.end.to_i}) date:(>= #{sprintf "%012d", realdate.begin.to_i})"
504           end
505         else
506           BufferManager.flash "Can't understand date #{datestr.inspect}!"
507           chronic_failure = true
508         end
509       end
510       subs = nil if chronic_failure
511     end
512     
513     Redwood::log "translated #{norms.inspect} to #{subs.inspect}" unless subs == norms
514     if subs
515       [@qparser.parse(subs), extraopts]
516     else
517       nil
518     end
519   end
520
521   def build_query opts
522     query = Ferret::Search::BooleanQuery.new
523     query.add_query opts[:qobj], :must if opts[:qobj]
524     labels = ([opts[:label]] + (opts[:labels] || [])).compact
525     labels.each { |t| query.add_query Ferret::Search::TermQuery.new("label", t.to_s), :must }
526     if opts[:participants]
527       q2 = Ferret::Search::BooleanQuery.new
528       opts[:participants].each do |p|
529         q2.add_query Ferret::Search::TermQuery.new("from", p.email), :should
530         q2.add_query Ferret::Search::TermQuery.new("to", p.email), :should
531       end
532       query.add_query q2, :must
533     end
534         
535     query.add_query Ferret::Search::TermQuery.new("label", "spam"), :must_not unless opts[:load_spam] || labels.include?(:spam)
536     query.add_query Ferret::Search::TermQuery.new("label", "deleted"), :must_not unless opts[:load_deleted] || labels.include?(:deleted)
537     query.add_query Ferret::Search::TermQuery.new("label", "killed"), :must_not if opts[:skip_killed]
538     query
539   end
540
541   def save_sources fn=Redwood::SOURCE_FN
542     if @sources_dirty || @sources.any? { |id, s| s.dirty? }
543       bakfn = fn + ".bak"
544       if File.exists? fn
545         File.chmod 0600, fn
546         FileUtils.mv fn, bakfn, :force => true unless File.exists?(bakfn) && File.size(fn) == 0
547       end
548       Redwood::save_yaml_obj sources.sort_by { |s| s.id.to_i }, fn, true
549       File.chmod 0600, fn
550     end
551     @sources_dirty = false
552   end
553 end
554
555 end