X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bin%2Fsup;h=b87c11223342aefe977b34e99f053ba548a4fc6d;hb=ea9290bcb97c413f8387021bb42a823029c8c447;hp=b2b2f626d79ff3675d8edbc6bb18bf1a40483ae9;hpb=2eb3d748b559c53a373ef072bd40f6810ecdddbe;p=sup diff --git a/bin/sup b/bin/sup old mode 100644 new mode 100755 index b2b2f62..b87c112 --- a/bin/sup +++ b/bin/sup @@ -5,7 +5,6 @@ require 'ncurses' require 'curses' require 'fileutils' require 'trollop' -require 'fastthread' require "sup" BIN_VERSION = "git" @@ -67,9 +66,9 @@ global_keymap = Keymap.new do |k| k.add :quit_now, "Quit Sup immediately", 'Q' k.add :help, "Show help", '?' k.add :roll_buffers, "Switch to next buffer", 'b' -# k.add :roll_buffers_backwards, "Switch to previous buffer", 'B' + k.add :roll_buffers_backwards, "Switch to previous buffer", 'B' k.add :kill_buffer, "Kill the current buffer", 'x' - k.add :list_buffers, "List all buffers", 'B' + k.add :list_buffers, "List all buffers", ';' k.add :list_contacts, "List contacts", 'C' k.add :redraw, "Redraw screen", :ctrl_l k.add :search, "Search all messages", '\\', 'F' @@ -81,11 +80,42 @@ global_keymap = Keymap.new do |k| k.add :recall_draft, "Edit most recent draft message", 'R' end +## the following magic enables wide characters when used with a ruby +## ncurses.so that's been compiled against libncursesw. (note the w.) why +## this works, i have no idea. much like pretty much every aspect of +## dealing with curses. cargo cult programming at its best. +## +## BSD users: if libc.so.6 is not found, try installing compat6x. +require 'dl/import' +module LibC + extend DL.const_defined?(:Importer) ? DL::Importer : DL::Importable + setlocale_lib = case Config::CONFIG['arch'] + when /darwin/; "libc.dylib" + when /cygwin/; "cygwin1.dll" + else; "libc.so.6" + end + + Redwood::log "dynamically loading setlocale() from #{setlocale_lib}" + begin + dlload setlocale_lib + extern "void setlocale(int, const char *)" + Redwood::log "setting locale..." + LibC.setlocale(6, "") # LC_ALL == 6 + rescue RuntimeError => 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 Ncurses.initscr Ncurses.noecho Ncurses.cbreak Ncurses.stdscr.keypad 1 + Ncurses.use_default_colors Ncurses.curs_set 0 Ncurses.start_color $cursing = true @@ -130,18 +160,20 @@ begin Redwood::start Index.load - if(s = Index.source_for DraftManager.source_name) + trap("TERM") { |x| SuicideManager.please_die! } + trap("WINCH") { |x| BufferManager.sigwinch_happened! } + + 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" @@ -161,7 +193,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 @@ -172,7 +204,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] @@ -182,11 +214,6 @@ begin PollManager.start SuicideManager.start Index.start_lock_update_thread - Redwood::reporting_thread("be friendly") do - id = BufferManager.say "Welcome to Sup! Press '?' at any point for help." - sleep 10 - BufferManager.clear id - end end if $opts[:search] @@ -194,29 +221,39 @@ begin end 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 + c = begin + Ncurses.nonblocking_getch + rescue Interrupt => e + raise if BufferManager.ask_yes_or_no "Die ungracefully now?" + BufferManager.draw_screen + nil + end + + if c.nil? + if BufferManager.sigwinch_happened? + Redwood::log "redrawing screen on sigwinch" + BufferManager.completely_redraw_screen + end + next + end + + if c == 410 + ## this is ncurses's way of telling us it's detected a refresh. + ## since we have our own sigwinch handler, we don't do anything. + next + end + bm.erase_flash - action = - begin - if bm.handle_input c - :nothing - else - bm.resolve_input_with_keymap c, global_keymap - end - rescue InputSequenceAborted + action = begin + if bm.handle_input c :nothing + else + bm.resolve_input_with_keymap c, global_keymap end + rescue InputSequenceAborted + :nothing + end case action when :quit_now break if bm.kill_all_buffers_safely @@ -234,7 +271,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 @@ -245,7 +282,7 @@ begin 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?