]> git.cworth.org Git - sup/blob - lib/sup/source.rb
skip system buffers when rolling
[sup] / lib / sup / source.rb
1 require "sup/rfc2047"
2
3 module Redwood
4
5 class SourceError < StandardError
6   def initialize *a
7     raise "don't instantiate me!" if SourceError.is_a?(self.class)
8     super
9   end
10 end
11 class OutOfSyncSourceError < SourceError; end
12 class FatalSourceError < SourceError; end
13
14 class Source
15   ## Implementing a new source should be easy, because Sup only needs
16   ## to be able to:
17   ##  1. See how many messages it contains
18   ##  2. Get an arbitrary message
19   ##  3. (optional) see whether the source has marked it read or not
20   ##
21   ## In particular, Sup doesn't need to move messages, mark them as
22   ## read, delete them, or anything else. (Well, it's nice to be able
23   ## to delete them, but that is optional.)
24   ##
25   ## On the other hand, Sup assumes that you can assign each message a
26   ## unique integer id, such that newer messages have higher ids than
27   ## earlier ones, and that those ids stay constant across sessions
28   ## (in the absence of some other client going in and fucking
29   ## everything up). For example, for mboxes I use the file offset of
30   ## the start of the message. If a source does NOT have that
31   ## capability, e.g. IMAP, then you have to do a little more work to
32   ## simulate it.
33   ##
34   ## To write a new source, subclass this class, and implement:
35   ##
36   ## - start_offset
37   ## - end_offset (exclusive!)
38   ## - load_header offset
39   ## - load_message offset
40   ## - raw_header offset
41   ## - raw_message offset
42   ## - check
43   ## - next (or each, if you prefer): should return a message and an
44   ##   array of labels.
45   ##
46   ## ... where "offset" really means unique id. (You can tell I
47   ## started with mbox.)
48   ##
49   ## All exceptions relating to accessing the source must be caught
50   ## and rethrown as FatalSourceErrors or OutOfSyncSourceErrors.
51   ## OutOfSyncSourceErrors should be used for problems that a call to
52   ## sup-sync will fix (namely someone's been playing with the source
53   ## from another client); FatalSourceErrors can be used for anything
54   ## else (e.g. the imap server is down or the maildir is missing.)
55   ##
56   ## Finally, be sure the source is thread-safe, since it WILL be
57   ## pummelled from multiple threads at once.
58   ##
59   ## Examples for you to look at: mbox/loader.rb, imap.rb, and
60   ## maildir.rb.
61
62   ## let's begin!
63   ##
64   ## dirty? means cur_offset has changed, so the source info needs to
65   ## be re-saved to sources.yaml.
66   bool_reader :usual, :archived, :dirty
67   attr_reader :uri, :cur_offset
68   attr_accessor :id
69
70   def initialize uri, initial_offset=nil, usual=true, archived=false, id=nil
71     raise ArgumentError, "id must be an integer: #{id.inspect}" unless id.is_a? Fixnum if id
72
73     @uri = uri
74     @cur_offset = initial_offset
75     @usual = usual
76     @archived = archived
77     @id = id
78     @dirty = false
79   end
80
81   def file_path; nil end
82
83   def to_s; @uri.to_s; end
84   def seek_to! o; self.cur_offset = o; end
85   def reset!; seek_to! start_offset; end
86   def == o; o.uri == uri; end
87   def done?; start_offset.nil? || (self.cur_offset ||= start_offset) >= end_offset; end
88   def is_source_for? uri; uri == @uri; end
89
90   ## check should throw a FatalSourceError or an OutOfSyncSourcError
91   ## if it can detect a problem. it is called when the sup starts up
92   ## to proactively notify the user of any source problems.
93   def check; end
94
95   def each
96     self.cur_offset ||= start_offset
97     until done?
98       n, labels = self.next
99       raise "no message" unless n
100       yield n, labels
101     end
102   end
103
104   ## read a raw email header from a filehandle (or anything that responds to
105   ## #gets), and turn it into a hash of key-value pairs.
106   ##
107   ## WARNING! THIS IS A SPEED-CRITICAL SECTION. Everything you do here will have
108   ## a significant effect on Sup's processing speed of email from ALL sources.
109   ## Little things like string interpolation, regexp interpolation, += vs <<,
110   ## all have DRAMATIC effects. BE CAREFUL WHAT YOU DO!
111   def self.parse_raw_email_header f
112     header = {}
113     last = nil
114
115     while(line = f.gets)
116       case line
117       ## these three can occur multiple times, and we want the first one
118       when /^(Delivered-To|X-Original-To|Envelope-To):\s*(.*?)\s*$/i; header[last = $1.downcase] ||= $2
119       ## mark this guy specially. not sure why i care.
120       when /^([^:\s]+):\s*(.*?)\s*$/i; header[last = $1.downcase] = $2
121       when /^\r*$/; break
122       else
123         if last
124           header[last] << " " unless header[last].empty?
125           header[last] << line.strip
126         end
127       end
128     end
129
130     %w(subject from to cc bcc).each do |k|
131       v = header[k] or next
132       next unless Rfc2047.is_encoded? v
133       header[k] = begin
134         Rfc2047.decode_to $encoding, v
135       rescue Errno::EINVAL, Iconv::InvalidEncoding, Iconv::IllegalSequence => e
136         #Redwood::log "warning: error decoding RFC 2047 header (#{e.class.name}): #{e.message}"
137         v
138       end
139     end
140     header
141   end
142
143 protected
144
145   ## convenience function
146   def parse_raw_email_header f; self.class.parse_raw_email_header f end
147   
148   def Source.expand_filesystem_uri uri
149     uri.gsub "~", File.expand_path("~")
150   end
151
152   def cur_offset= o
153     @cur_offset = o
154     @dirty = true
155   end
156 end
157
158 class SourceManager
159   include Singleton
160
161   def initialize
162     @sources = {}
163     @sources_dirty = false
164     @source_mutex = Monitor.new
165     self.class.i_am_the_instance self
166   end
167
168   def [](id)
169     @source_mutex.synchronize { @sources[id] }
170   end
171
172   def add_source source
173     @source_mutex.synchronize do
174       raise "duplicate source!" if @sources.include? source
175       @sources_dirty = true
176       max = @sources.max_of { |id, s| s.is_a?(DraftLoader) || s.is_a?(SentLoader) ? 0 : id }
177       source.id ||= (max || 0) + 1
178       ##source.id += 1 while @sources.member? source.id
179       @sources[source.id] = source
180     end
181   end
182
183   def sources
184     ## favour the inbox by listing non-archived sources first
185     @source_mutex.synchronize { @sources.values }.sort_by { |s| s.id }.partition { |s| !s.archived? }.flatten
186   end
187
188   def source_for uri; sources.find { |s| s.is_source_for? uri }; end
189   def usual_sources; sources.find_all { |s| s.usual? }; end
190
191   def load_sources fn=Redwood::SOURCE_FN
192     source_array = (Redwood::load_yaml_obj(fn) || []).map { |o| Recoverable.new o }
193     @source_mutex.synchronize do
194       @sources = Hash[*(source_array).map { |s| [s.id, s] }.flatten]
195       @sources_dirty = false
196     end
197   end
198
199   def save_sources fn=Redwood::SOURCE_FN
200     @source_mutex.synchronize do
201       if @sources_dirty || @sources.any? { |id, s| s.dirty? }
202         bakfn = fn + ".bak"
203         if File.exists? fn
204           File.chmod 0600, fn
205           FileUtils.mv fn, bakfn, :force => true unless File.exists?(bakfn) && File.size(fn) == 0
206         end
207         Redwood::save_yaml_obj sources.sort_by { |s| s.id.to_i }, fn, true
208         File.chmod 0600, fn
209       end
210       @sources_dirty = false
211     end
212   end
213 end
214
215 end