#!/usr/bin/env ruby require 'rubygems' require 'ncurses' require 'curses' require 'fileutils' require 'trollop' require "sup" $opts = Trollop::options do version "sup v#{Redwood::VERSION}" banner < e require 'highline' h = HighLine.new h.wrap_at = :auto 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 h.say "Ok, suggesting sepuku..." FileUtils.touch Redwood::SUICIDE_FN sleep SuicideManager::DELAY * 2 FileUtils.rm_f Redwood::SUICIDE_FN h.say "Let's try that again." retry else h.say < e Redwood::log "fatal error loading from #{s}: #{e.message}" end end if s.respond_to? :connect end imode.load_threads :num => ibuf.content_height, :when_done => lambda { reporting_thread { sleep 1; PollManager.poll } unless $opts[:no_threads] } unless $opts[:no_threads] PollManager.start SuicideManager.start Index.start_lock_update_thread end until $exception || SuicideManager.die? c = Ncurses.nonblocking_getch next unless c bm.erase_flash unless bm.handle_input(c) x = global_keymap.action_for c case x when :quit break if bm.kill_all_buffers_safely when :help curmode = bm.focus_buf.mode bm.spawn_unless_exists("") { HelpMode.new curmode, global_keymap } when :roll_buffers bm.roll_buffers when :roll_buffers_backwards bm.roll_buffers_backwards when :kill_buffer bm.kill_buffer_safely bm.focus_buf when :list_buffers bm.spawn_unless_exists("Buffer List") { BufferListMode.new } when :list_contacts b = bm.spawn_unless_exists("Contact List") { ContactListMode.new } b.mode.load_in_background when :search text = bm.ask :search, "query: " next unless text && text !~ /^\s*$/ begin qobj = Index.parse_user_query_string text short_text = text.length < 20 ? text : text[0 ... 20] + "..." log "built query from #{text.inspect}: #{qobj}" mode = SearchResultsMode.new qobj bm.spawn "search: \"#{short_text}\"", mode mode.load_threads :num => mode.buffer.content_height rescue Ferret::QueryParser::QueryParseException => e bm.flash "Couldn't parse query." end when :list_labels labels = LabelManager.listable_labels.map { |l| LabelManager.string_for l } user_label = bm.ask_with_completions :label, "Show threads with label (enter for listing): ", labels user_label = case user_label when nil, /^\s*$/ bm.spawn_modal("Label list", LabelListMode.new) if user_label && user_label.empty? else LabelManager.label_for user_label end case user_label when nil when :inbox BufferManager.raise_to_front InboxMode.instance.buffer else b = BufferManager.spawn_unless_exists("All threads with label '#{user_label}'") do mode = LabelSearchResultsMode.new([user_label]) end b.mode.load_threads :num => b.content_height end when :compose spawn_compose_mode when :poll reporting_thread { PollManager.poll } when :recall_draft case Index.num_results_for :label => :draft when 0 bm.flash "No draft messages." when 1 m = nil Index.each_id_by_date(:label => :draft) { |mid, builder| m = builder.call } r = ResumeMode.new(m) BufferManager.spawn "Edit message", r r.edit_message else b = BufferManager.spawn_unless_exists("All drafts") do mode = LabelSearchResultsMode.new [:draft] end b.mode.load_threads :num => b.content_height end when :nothing when :redraw bm.completely_redraw_screen else bm.flash "Unknown key press '#{c.to_character}' for #{bm.focus_buf.mode.name}." end end bm.draw_screen end rescue Exception => e $exception ||= e ensure unless $opts[:no_threads] PollManager.stop if PollManager.instantiated? SuicideManager.stop if PollManager.instantiated? Index.stop_lock_update_thread end Redwood::finish stop_cursing Redwood::log "stopped cursing" if SuicideManager.instantiated? && SuicideManager.die? Redwood::log "I've been ordered to commit sepuku. I obey!" end case $exception when nil Redwood::log "no fatal errors. good job, william." Index.save else Redwood::log "oh crap, an exception" end Index.unlock end if $exception $stderr.puts <