X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lib%2Fsup%2Fpoll.rb;h=87cf9963796286f73a92f87478c207e23300cfa0;hb=70a488fdcda9d20c65e7c81edca7c4d34aa88672;hp=fb7b54608791215660f588091532f92d5c427177;hpb=2be126416f39364326c10d6289367d4da61ff3d5;p=sup diff --git a/lib/sup/poll.rb b/lib/sup/poll.rb index fb7b546..87cf996 100644 --- a/lib/sup/poll.rb +++ b/lib/sup/poll.rb @@ -19,12 +19,13 @@ EOS HookManager.register "after-poll", <", :hidden => true) { PollMode.new } + b, new = BufferManager.spawn_unless_exists("", :hidden => true) { PollMode.new } + b end def poll @@ -50,19 +52,19 @@ EOS BufferManager.flash "Polling for new messages..." num, numi, from_and_subj, from_and_subj_inbox = buffer.mode.poll if num > 0 - BufferManager.flash "Loaded #{num} new messages, #{numi} to inbox." + BufferManager.flash "Loaded #{num.pluralize 'new message'}, #{numi} to inbox." else BufferManager.flash "No new messages." end - HookManager.run "after-poll", :num => num, :num_inbox => numi, :from_and_subj => from_and_subj, :from_and_subj_inbox => from_and_subj_inbox + HookManager.run "after-poll", :num => num, :num_inbox => numi, :from_and_subj => from_and_subj, :from_and_subj_inbox => from_and_subj_inbox, :num_inbox_total_unread => lambda { Index.num_results_for :labels => [:inbox, :unread] } @polling = false [num, numi] end def start - @thread = Redwood::reporting_thread do + @thread = Redwood::reporting_thread("periodic poll") do while true sleep DELAY / 2 poll if @last_poll.nil? || (Time.now - @last_poll) >= DELAY @@ -87,7 +89,7 @@ EOS yield "Loading from #{source}... " unless source.done? || source.has_errors? rescue SourceError => e Redwood::log "problem getting messages from #{source}: #{e.message}" - Redwood::report_broken_sources + Redwood::report_broken_sources :force_to_top => true next end @@ -100,7 +102,7 @@ EOS unless entry num += 1 from_and_subj << [m.from.longname, m.subj] - if m.labels.include? :inbox + if m.has_label?(:inbox) && ([:spam, :deleted, :killed] & m.labels).empty? from_and_subj_inbox << [m.from.longname, m.subj] numi += 1 end @@ -132,7 +134,7 @@ EOS ## labels. it is likely that callers will want to replace these with ## the index labels, if they exist, so that state is not lost when ## e.g. a new version of a message from a mailing list comes in. - def add_messages_from source + def add_messages_from source, opts={} begin return if source.done? || source.has_errors? @@ -154,16 +156,16 @@ EOS docid, entry = Index.load_entry_for_id m.id HookManager.run "before-add-message", :message => m - m = yield(m, offset, entry) or next - Index.sync_message m, docid, entry - UpdateManager.relay self, :add, m unless entry + m = yield(m, offset, entry) or next if block_given? + Index.sync_message m, docid, entry, opts + UpdateManager.relay self, :added, m unless entry rescue MessageFormatError => e Redwood::log "ignoring erroneous message at #{source}##{offset}: #{e.message}" end end rescue SourceError => e Redwood::log "problem getting messages from #{source}: #{e.message}" - Redwood::report_broken_sources + Redwood::report_broken_sources :force_to_top => true end end end