1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
#!/usr/bin/env ruby
# encoding: utf-8
$:.unshift File.join(File.dirname(__FILE__), *%w[.. lib])
require 'ncursesw'
require 'sup/util/ncurses'
require 'sup/util/locale_fiddler'
require 'sup/util/axe'
no_gpgme = false
begin
require 'gpgme'
rescue LoadError
no_gpgme = true
end
require 'fileutils'
require 'optimist'
require "sup"
if ENV['SUP_PROFILE']
require 'ruby-prof'
RubyProf.start
end
if no_gpgme
info "No 'gpgme' gem detected. Install it for email encryption, decryption and signatures."
end
$opts = Optimist::options do
version "sup v#{Redwood::VERSION}"
banner <<EOS
Sup is a curses-based email client.
Usage:
sup [options]
Options are:
EOS
opt :list_hooks, "List all hooks and descriptions, and quit. Use --hooks-matching to filter."
opt :hooks_matching, "If given, list all hooks and descriptions matching the given pattern. Needs the --list-hooks option", short: "m", default: ""
opt :no_threads, "Turn off threading. Helps with debugging. (Necessarily disables background polling for new messages.)"
opt :no_initial_poll, "Don't poll for new messages when starting."
opt :search, "Search for this query upon startup", :type => String
opt :compose, "Compose message to this recipient upon startup", :type => String
opt :subject, "When composing, use this subject", :type => String, :short => "j"
end
Optimist::die :subject, "requires --compose" if $opts[:subject] && !$opts[:compose]
Redwood::HookManager.register "startup", <<EOS
Executes at startup
No variables.
No return value.
EOS
Redwood::HookManager.register "shutdown", <<EOS
Executes when sup is shutting down. May be run when sup is crashing,
so don\'t do anything too important. Run before the label, contacts,
and people are saved.
No variables.
No return value.
EOS
if $opts[:list_hooks]
Redwood.start
Redwood::HookManager.print_hooks $opts[:hooks_matching]
exit
end
Thread.abort_on_exception = true # make debugging possible
Thread.current.priority = 1 # keep ui responsive
module Redwood
global_keymap = Keymap.new do |k|
k.add :quit_ask, "Quit Sup, but ask first", 'q'
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 :kill_buffer, "Kill the current buffer", 'x'
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'
k.add :search_unread, "Show all unread messages", 'U'
k.add :list_labels, "List labels", 'L'
k.add :poll, "Poll for new messages", 'P'
k.add :poll_unusual, "Poll for new messages from unusual sources", '{'
k.add :compose, "Compose new message", 'm', 'c'
k.add :nothing, "Do nothing", :ctrl_g
k.add :recall_draft, "Edit most recent draft message", 'R'
k.add :show_inbox, "Show the Inbox buffer", 'I'
k.add :clear_hooks, "Clear all hooks", 'H'
k.add :show_console, "Show the Console buffer", '~'
## Submap for less often used keybindings
k.add_multi "reload (c)olors, rerun (k)eybindings hook", 'O' do |kk|
kk.add :reload_colors, "Reload colors", 'c'
kk.add :run_keybindings_hook, "Rerun keybindings hook", 'k'
end
end
require 'rbconfig'
unless RbConfig::CONFIG['arch'] =~ /openbsd/
debug "dynamically loading setlocale()"
begin
class LibC; extend LocaleFiddler; end
debug "setting locale..."
LibC.setlocale(6, "")
rescue RuntimeError => e
warn "cannot dlload setlocale(); ncurses wide character support probably broken."
warn "dlload error was #{e.class}: #{e.message}"
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
Ncurses.prepare_form_driver
$cursing = true
end
def stop_cursing
return unless $cursing
Ncurses.curs_set 1
Ncurses.echo
Ncurses.endwin
end
module_function :start_cursing, :stop_cursing
Index.init
Index.lock_interactively or exit
begin
Redwood::start
Index.load
Redwood::check_syncback_settings
Index.start_sync_worker unless $opts[:no_threads]
$die = false
trap("TERM") { |x| $die = true }
trap("WINCH") do |x|
::Thread.new do
BufferManager.sigwinch_happened!
end
end
if(s = Redwood::SourceManager.source_for DraftManager.source_name)
DraftManager.source = s
else
debug "no draft source, auto-adding..."
Redwood::SourceManager.add_source DraftManager.new_source
end
if(s = Redwood::SourceManager.source_for SentManager.source_uri)
SentManager.source = s
else
Redwood::SourceManager.add_source SentManager.default_source
end
HookManager.run "startup"
Redwood::Keymap.run_hook global_keymap
debug "starting curses"
Redwood::Logger.remove_sink $stderr
start_cursing
bm = BufferManager.init
Colormap.new.populate_colormap
debug "initializing log buffer"
lmode = Redwood::LogMode.new "system log"
lmode.on_kill { Logger.clear! }
Logger.add_sink lmode
Logger.force_message "Welcome to Sup! Log level is set to #{Logger.level}."
if Logger::LEVELS.index(Logger.level) > 0
Logger.force_message "For more verbose logging, restart with SUP_LOG_LEVEL=#{Logger::LEVELS[Logger::LEVELS.index(Logger.level)-1]}."
end
debug "initializing inbox buffer"
imode = InboxMode.new
ibuf = bm.spawn "Inbox", imode
debug "ready for interaction!"
bm.draw_screen
Redwood::SourceManager.usual_sources.each do |s|
next unless s.respond_to? :connect
reporting_thread("call #connect on #{s}") do
begin
s.connect
rescue SourceError => e
error "fatal error loading from #{s}: #{e.message}"
end
end
end unless $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]
to = Person.from_address_list $opts[:compose]
mode = ComposeMode.new :to => to, :subj => $opts[:subject]
BufferManager.spawn "New Message", mode
mode.default_edit_message
end
unless $opts[:no_threads]
PollManager.start
IdleManager.start
Index.start_lock_update_thread
end
if $opts[:search]
SearchResultsMode.spawn_from_query $opts[:search]
end
until Redwood::exceptions.nonempty? || $die
c = begin
Ncurses::CharCode.get false
rescue Interrupt
raise if BufferManager.ask_yes_or_no "Die ungracefully now?"
BufferManager.draw_screen
Ncurses::CharCode.empty
end
if c.empty?
if BufferManager.sigwinch_happened?
debug "redrawing screen on sigwinch"
BufferManager.completely_redraw_screen
end
next
end
IdleManager.ping
if c.is_keycode? 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
:nothing
end
case action
when :quit_now
break if bm.kill_all_buffers_safely
when :quit_ask
if bm.ask_yes_or_no "Really quit?"
break if bm.kill_all_buffers_safely
end
when :help
curmode = bm.focus_buf.mode
bm.spawn_unless_exists("<help for #{curmode.name}>") { 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", :system => true) { BufferListMode.new }
when :list_contacts
b, new = bm.spawn_unless_exists("Contact List") { ContactListMode.new }
b.mode.load_in_background if new
when :search
completions = LabelManager.all_labels.map { |l| "label:#{LabelManager.string_for l}" }
completions = completions.each { |l| l.fix_encoding! }
completions += Index::COMPL_PREFIXES
query = BufferManager.ask_many_with_completions :search, "Search all messages (enter for saved searches): ", completions
unless query.nil?
if query.empty?
bm.spawn_unless_exists("Saved searches") { SearchListMode.new }
else
SearchResultsMode.spawn_from_query query
end
end
when :search_unread
SearchResultsMode.spawn_from_query "is:unread"
when :list_labels
labels = LabelManager.all_labels.map { |l| LabelManager.string_for l }
labels = labels.each { |l| l.fix_encoding! }
user_label = bm.ask_with_completions :label, "Show threads with label (enter for listing): ", labels
unless user_label.nil?
if user_label.empty?
bm.spawn_unless_exists("Label list") { LabelListMode.new } if user_label && user_label.empty?
else
LabelSearchResultsMode.spawn_nicely user_label
end
end
when :compose
ComposeMode.spawn_nicely
when :poll
reporting_thread("user-invoked poll") { PollManager.poll }
when :poll_unusual
if BufferManager.ask_yes_or_no "Really poll unusual sources?"
reporting_thread("user-invoked unusual poll") { PollManager.poll_unusual }
end
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.default_edit_message
else
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 :clear_hooks
HookManager.clear
when :show_console
b, new = bm.spawn_unless_exists("Console", :system => true) { ConsoleMode.new }
b.mode.run
when :reload_colors
Colormap.reset
Colormap.populate_colormap
bm.completely_redraw_screen
bm.flash "reloaded colors"
when :run_keybindings_hook
HookManager.clear_one 'keybindings'
Keymap.run_hook global_keymap
bm.flash "keybindings hook run"
when :nothing, InputSequenceAborted
when :redraw
bm.completely_redraw_screen
else
bm.flash "Unknown keypress '#{c.to_character}' for #{bm.focus_buf.mode.name}."
end
bm.draw_screen
end
bm.kill_all_buffers if $die
rescue Exception => e
Redwood::record_exception e, "main"
ensure
unless $opts[:no_threads]
PollManager.stop if PollManager.instantiated?
IdleManager.stop if IdleManager.instantiated?
Index.stop_lock_update_thread
end
HookManager.run "shutdown" if HookManager.instantiated?
Index.stop_sync_worker
Redwood::finish
stop_cursing
Redwood::Logger.remove_all_sinks!
Redwood::Logger.add_sink $stderr, false
debug "stopped cursing"
if $die
info "I've been ordered to commit seppuku. I obey!"
end
if Redwood::exceptions.empty?
debug "no fatal errors. good job, william."
Index.save
else
error "oh crap, an exception"
end
Index.unlock
if (fn = ENV['SUP_PROFILE'])
result = RubyProf.stop
File.open(fn, 'w') { |io| RubyProf::CallTreePrinter.new(result).print(io) }
end
end
unless Redwood::exceptions.empty?
File.open(File.join(BASE_DIR, "exception-log.txt"), "w") do |f|
Redwood::exceptions.each do |e, name|
f.puts "--- #{e.class.name} from thread: #{name}"
f.puts e.message, e.backtrace
end
end
$stderr.puts <<EOS
----------------------------------------------------------------
We are very sorry. It seems that an error occurred in Sup. Please
accept our sincere apologies. Please submit the contents of
#{BASE_DIR}/exception-log.txt and a brief report of the
circumstances to https://github.com/sup-heliotrope/sup/issues so that
we might address this problem. Thank you!
Sincerely,
The Sup Developers
----------------------------------------------------------------
EOS
Redwood::exceptions.each do |e, name|
puts "--- #{e.class.name} from thread: #{name}"
puts e.message, e.backtrace
end
end
end
|