]> git.cworth.org Git - sup/blob - bin/sup
e27b3f7d14b7e213e42d8381b5b165cdd0ce31cc
[sup] / bin / sup
1 #!/usr/bin/env ruby
2
3 require 'rubygems'
4 require 'ncurses'
5 require 'curses'
6 require 'fileutils'
7 require 'trollop'
8 require 'fastthread'
9 require "sup"
10
11 BIN_VERSION = "git"
12
13 unless Redwood::VERSION == BIN_VERSION
14   $stderr.puts <<EOS
15
16 Error: version mismatch!
17 The sup executable is at version #{BIN_VERSION.inspect}.
18 The sup libraries are at version #{Redwood::VERSION.inspect}.
19
20 Is your development environment conflicting with rubygems?
21 EOS
22   exit(-1)
23 end
24
25 $opts = Trollop::options do
26   version "sup v#{Redwood::VERSION}"
27   banner <<EOS
28 Sup is a curses-based email client.
29
30 Usage:
31   sup [options]
32
33 Options are:
34 EOS
35   opt :list_hooks, "List all hooks and descriptions, and quit."
36   opt :no_threads, "Turn off threading. Helps with debugging. (Necessarily disables background polling for new messages.)"
37   opt :no_initial_poll, "Don't poll for new messages when starting."
38   opt :search, "Search for this query upon startup", :type => String
39   opt :compose, "Compose message to this recipient upon startup", :type => String
40 end
41
42 Redwood::HookManager.register "startup", <<EOS
43 Executes at startup
44 No variables.
45 No return value.
46 EOS
47
48 if $opts[:list_hooks]
49   Redwood::HookManager.print_hooks
50   exit
51 end
52
53 Thread.abort_on_exception = true # make debugging possible
54
55 module Redwood
56
57 global_keymap = Keymap.new do |k|
58   k.add :quit_ask, "Quit Sup, but ask first", 'q'
59   k.add :quit_now, "Quit Sup immediately", 'Q'
60   k.add :help, "Show help", 'H', '?'
61   k.add :roll_buffers, "Switch to next buffer", 'b'
62 #  k.add :roll_buffers_backwards, "Switch to previous buffer", 'B'
63   k.add :kill_buffer, "Kill the current buffer", 'x'
64   k.add :list_buffers, "List all buffers", 'B'
65   k.add :list_contacts, "List contacts", 'C'
66   k.add :redraw, "Redraw screen", :ctrl_l
67   k.add :search, "Search all messages", '\\', 'F'
68   k.add :list_labels, "List labels", 'L'
69   k.add :poll, "Poll for new messages", 'P'
70   k.add :compose, "Compose new message", 'm', 'c'
71   k.add :nothing, "Do nothing", :ctrl_g
72   k.add :recall_draft, "Edit most recent draft message", 'R'
73 end
74
75 def start_cursing
76   Ncurses.initscr
77   Ncurses.noecho
78   Ncurses.cbreak
79   Ncurses.stdscr.keypad 1
80   Ncurses.curs_set 0
81   Ncurses.start_color
82   $cursing = true
83 end
84
85 def stop_cursing
86   return unless $cursing
87   Ncurses.curs_set 1
88   Ncurses.echo
89   Ncurses.endwin
90 end
91 module_function :start_cursing, :stop_cursing
92
93 Index.new
94 begin
95   Index.lock
96 rescue Index::LockError => e
97   require 'highline'
98
99   h = HighLine.new
100   h.wrap_at = :auto
101   h.say Index.fancy_lock_error_message_for(e)
102
103   case h.ask("Should I ask that process to kill itself? ")
104   when /^\s*y\s*$/i
105     h.say "Ok, suggesting seppuku..."
106     FileUtils.touch Redwood::SUICIDE_FN
107     sleep SuicideManager::DELAY * 2
108     FileUtils.rm_f Redwood::SUICIDE_FN
109     h.say "Let's try that again."
110     retry
111   else
112     h.say <<EOS
113 Ok, giving up. If the process crashed and left a stale lockfile, you
114 can fix this by manually deleting #{Index.lockfile}.
115 EOS
116     exit
117   end
118 end
119
120 begin
121   Redwood::start
122   Index.load
123
124   if(s = Index.source_for DraftManager.source_name)
125     DraftManager.source = s
126   else
127     Redwood::log "no draft source, auto-adding..."
128     Index.add_source DraftManager.new_source
129   end
130
131   if(s = Index.source_for SentManager.source_name)
132     SentManager.source = s
133   else
134     Redwood::log "no sent mail source, auto-adding..."
135     Index.add_source SentManager.new_source
136   end
137
138   HookManager.run "startup"
139
140   log "starting curses"
141   start_cursing
142
143   bm = BufferManager.new
144   Colormap.new.populate_colormap
145
146   log "initializing mail index buffer"
147   imode = InboxMode.new
148   ibuf = bm.spawn "Inbox", imode
149
150   log "ready for interaction!"
151   Logger.make_buf
152
153   bm.draw_screen
154
155   Index.usual_sources.each do |s|
156     next unless s.respond_to? :connect
157     reporting_thread("call #connect on #{s}") do
158       begin
159         s.connect
160       rescue SourceError => e
161         Redwood::log "fatal error loading from #{s}: #{e.message}"
162       end
163     end
164   end unless $opts[:no_initial_poll]
165   
166   imode.load_threads :num => ibuf.content_height, :when_done => lambda { reporting_thread("poll after loading inbox") { sleep 1; PollManager.poll } unless $opts[:no_threads] || $opts[:no_initial_poll] }
167
168   if $opts[:compose]
169     ComposeMode.spawn_nicely :to_default => $opts[:compose]
170   end
171
172   unless $opts[:no_threads]
173     PollManager.start
174     SuicideManager.start
175     Index.start_lock_update_thread
176   end
177
178   if $opts[:search]
179     SearchResultsMode.spawn_from_query $opts[:search]
180   end
181
182   until Redwood::exceptions.nonempty? || SuicideManager.die?
183     c = Ncurses.nonblocking_getch
184     next unless c
185     bm.erase_flash
186
187     action =
188       begin
189         if bm.handle_input c
190           :nothing
191         else
192           bm.resolve_input_with_keymap c, global_keymap
193         end
194       rescue InputSequenceAborted
195         :nothing
196       end
197
198     case action
199     when :quit_now
200       break if bm.kill_all_buffers_safely
201     when :quit_ask
202       if bm.ask_yes_or_no "Really quit?"
203         break if bm.kill_all_buffers_safely
204       end
205     when :help
206       curmode = bm.focus_buf.mode
207       bm.spawn_unless_exists("<help for #{curmode.name}>") { HelpMode.new curmode, global_keymap }
208     when :roll_buffers
209       bm.roll_buffers
210     when :roll_buffers_backwards
211       bm.roll_buffers_backwards
212     when :kill_buffer
213       bm.kill_buffer_safely bm.focus_buf
214     when :list_buffers
215       bm.spawn_unless_exists("Buffer List") { BufferListMode.new }
216     when :list_contacts
217       b, new = bm.spawn_unless_exists("Contact List") { ContactListMode.new }
218       b.mode.load_in_background if new
219     when :search
220       query = BufferManager.ask :search, "search all messages: "
221       next unless query && query !~ /^\s*$/
222       SearchResultsMode.spawn_from_query query
223     when :list_labels
224       labels = LabelManager.listable_labels.map { |l| LabelManager.string_for l }
225       user_label = bm.ask_with_completions :label, "Show threads with label (enter for listing): ", labels
226       unless user_label.nil?
227         if user_label.empty?
228           bm.spawn_unless_exists("Label list") { LabelListMode.new } if user_label && user_label.empty?
229         else
230           LabelSearchResultsMode.spawn_nicely user_label
231         end
232       end
233     when :compose
234       ComposeMode.spawn_nicely
235     when :poll
236       reporting_thread("user-invoked poll") { PollManager.poll }
237     when :recall_draft
238       case Index.num_results_for :label => :draft
239       when 0
240         bm.flash "No draft messages."
241       when 1
242         m = nil
243         Index.each_id_by_date(:label => :draft) { |mid, builder| m = builder.call }
244         r = ResumeMode.new(m)
245         BufferManager.spawn "Edit message", r
246         r.edit_message
247       else
248         b, new = BufferManager.spawn_unless_exists("All drafts") { LabelSearchResultsMode.new [:draft] }
249         b.mode.load_threads :num => b.content_height if new
250       end
251     when :nothing, InputSequenceAborted
252     when :redraw
253       bm.completely_redraw_screen
254     else
255       bm.flash "Unknown keypress '#{c.to_character}' for #{bm.focus_buf.mode.name}."
256     end
257
258     bm.draw_screen
259   end
260
261   bm.kill_all_buffers if SuicideManager.die?
262 rescue Exception => e
263   Redwood::record_exception e, "main"
264 ensure
265   unless $opts[:no_threads]
266     PollManager.stop if PollManager.instantiated?
267     SuicideManager.stop if PollManager.instantiated?
268     Index.stop_lock_update_thread
269   end
270
271   Redwood::finish
272   stop_cursing
273   Redwood::log "stopped cursing"
274
275   if SuicideManager.instantiated? && SuicideManager.die?
276     Redwood::log "I've been ordered to commit seppuku. I obey!"
277   end
278
279   if Redwood::exceptions.empty?
280     Redwood::log "no fatal errors. good job, william."
281     Index.save
282   else
283     Redwood::log "oh crap, an exception"
284   end
285
286   Index.unlock
287 end
288
289 unless Redwood::exceptions.empty?
290   File.open(File.join(BASE_DIR, "exception-log.txt"), "w") do |f|
291     Redwood::exceptions.each do |e, name|
292       f.puts "--- #{e.class.name} from thread: #{name}"
293       f.puts e.message, e.backtrace
294     end
295   end
296   $stderr.puts <<EOS
297 ----------------------------------------------------------------
298 I'm very sorry. It seems that an error occurred in Sup. Please
299 accept my sincere apologies. If you don't mind, please send the
300 contents of ~/.sup/exception-log.txt and a brief report of the
301 circumstances to sup-talk at rubyforge dot orgs so that I might
302 address this problem. Thank you!
303
304 Sincerely,
305 William
306 ----------------------------------------------------------------
307 EOS
308   Redwood::exceptions.each do |e, name|
309     puts "--- #{e.class.name} from thread: #{name}"
310     puts e.message, e.backtrace
311   end
312 end
313
314 end