X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bin%2Fsup;h=a8eaccae0e125460c9cb4213dafbcaae8e8253c2;hb=e501453dd439a94bc2f09a644fa8be39e4634d0a;hp=99df4b1602c135c5c95e740d1332355f18630a04;hpb=e08f3799bc2b0e1c3b1f2d6d2b6250e000877259;p=sup diff --git a/bin/sup b/bin/sup old mode 100644 new mode 100755 index 99df4b1..a8eacca --- a/bin/sup +++ b/bin/sup @@ -21,7 +21,6 @@ EOS exit(-1) end -$exceptions = [] $opts = Trollop::options do version "sup v#{Redwood::VERSION}" banner < e + Redwood::log "cannot dlload setlocale(); ncurses wide character support probably broken." + Redwood::log "dlload error was #{e.class}: #{e.message}" + if Config::CONFIG['arch'] =~ /bsd/ + Redwood::log "BSD variant detected. You may have to install a compat6x package to acquire libc." + end + end end def start_cursing @@ -77,6 +116,7 @@ def start_cursing Ncurses.noecho Ncurses.cbreak Ncurses.stdscr.keypad 1 + Ncurses.use_default_colors Ncurses.curs_set 0 Ncurses.start_color $cursing = true @@ -101,7 +141,7 @@ rescue Index::LockError => e h.say Index.fancy_lock_error_message_for(e) case h.ask("Should I ask that process to kill itself? ") - when /^\s*y\s*$/i + when /^\s*y(es)?\s*$/i h.say "Ok, suggesting seppuku..." FileUtils.touch Redwood::SUICIDE_FN sleep SuicideManager::DELAY * 2 @@ -121,18 +161,17 @@ begin Redwood::start Index.load - if(s = Index.source_for DraftManager.source_name) + if(s = Redwood::SourceManager.source_for DraftManager.source_name) DraftManager.source = s else Redwood::log "no draft source, auto-adding..." - Index.add_source DraftManager.new_source + Redwood::SourceManager.add_source DraftManager.new_source end - if(s = Index.source_for SentManager.source_name) + if(s = Redwood::SourceManager.source_for SentManager.source_uri) SentManager.source = s else - Redwood::log "no sent mail source, auto-adding..." - Index.add_source SentManager.new_source + Redwood::SourceManager.add_source SentManager.default_source end HookManager.run "startup" @@ -152,7 +191,7 @@ begin bm.draw_screen - Index.usual_sources.each do |s| + Redwood::SourceManager.usual_sources.each do |s| next unless s.respond_to? :connect reporting_thread("call #connect on #{s}") do begin @@ -163,7 +202,7 @@ begin end end unless $opts[:no_initial_poll] - 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] } + imode.load_threads :num => ibuf.content_height, :when_done => lambda { |num| reporting_thread("poll after loading inbox") { sleep 1; PollManager.poll } unless $opts[:no_threads] || $opts[:no_initial_poll] } if $opts[:compose] ComposeMode.spawn_nicely :to_default => $opts[:compose] @@ -179,8 +218,17 @@ begin SearchResultsMode.spawn_from_query $opts[:search] end - until $exceptions.nonempty? || SuicideManager.die? - c = Ncurses.nonblocking_getch + until Redwood::exceptions.nonempty? || SuicideManager.die? + c = + begin + Ncurses.nonblocking_getch + rescue Exception => e + if e.is_a?(Interrupt) + raise if BufferManager.ask_yes_or_no("Die ungracefully now?") + bm.draw_screen + nil + end + end next unless c bm.erase_flash @@ -194,7 +242,6 @@ begin rescue InputSequenceAborted :nothing end - case action when :quit_now break if bm.kill_all_buffers_safely @@ -212,7 +259,7 @@ begin when :kill_buffer bm.kill_buffer_safely bm.focus_buf when :list_buffers - bm.spawn_unless_exists("Buffer List") { BufferListMode.new } + bm.spawn_unless_exists("buffer list", :system => true) { BufferListMode.new } when :list_contacts b, new = bm.spawn_unless_exists("Contact List") { ContactListMode.new } b.mode.load_in_background if new @@ -220,8 +267,10 @@ begin query = BufferManager.ask :search, "search all messages: " next unless query && query !~ /^\s*$/ SearchResultsMode.spawn_from_query query + when :search_unread + SearchResultsMode.spawn_from_query "is:unread" when :list_labels - labels = LabelManager.listable_labels.map { |l| LabelManager.string_for l } + labels = LabelManager.all_labels.map { |l| LabelManager.string_for l } user_label = bm.ask_with_completions :label, "Show threads with label (enter for listing): ", labels unless user_label.nil? if user_label.empty? @@ -248,6 +297,8 @@ begin b, new = BufferManager.spawn_unless_exists("All drafts") { LabelSearchResultsMode.new [:draft] } b.mode.load_threads :num => b.content_height if new end + when :show_inbox + BufferManager.raise_to_front ibuf when :nothing, InputSequenceAborted when :redraw bm.completely_redraw_screen @@ -260,7 +311,7 @@ begin bm.kill_all_buffers if SuicideManager.die? rescue Exception => e - $exceptions << [e, "main"] + Redwood::record_exception e, "main" ensure unless $opts[:no_threads] PollManager.stop if PollManager.instantiated? @@ -268,6 +319,8 @@ ensure Index.stop_lock_update_thread end + HookManager.run "shutdown" + Redwood::finish stop_cursing Redwood::log "stopped cursing" @@ -276,7 +329,7 @@ ensure Redwood::log "I've been ordered to commit seppuku. I obey!" end - if $exceptions.empty? + if Redwood::exceptions.empty? Redwood::log "no fatal errors. good job, william." Index.save else @@ -286,9 +339,9 @@ ensure Index.unlock end -unless $exceptions.empty? +unless Redwood::exceptions.empty? File.open(File.join(BASE_DIR, "exception-log.txt"), "w") do |f| - $exceptions.each do |e, name| + Redwood::exceptions.each do |e, name| f.puts "--- #{e.class.name} from thread: #{name}" f.puts e.message, e.backtrace end @@ -305,7 +358,7 @@ Sincerely, William ---------------------------------------------------------------- EOS - $exceptions.each do |e, name| + Redwood::exceptions.each do |e, name| puts "--- #{e.class.name} from thread: #{name}" puts e.message, e.backtrace end