aerc/aerc.go

239 lines
5.1 KiB
Go
Raw Normal View History

2018-01-10 00:30:46 +01:00
package main
import (
"fmt"
2018-02-01 03:18:21 +01:00
"io"
"io/ioutil"
"log"
"os"
"runtime/debug"
"sort"
"strings"
2018-01-10 14:35:26 +01:00
"time"
2018-01-10 01:18:19 +01:00
"git.sr.ht/~sircmpwn/getopt"
2018-02-01 03:18:21 +01:00
"github.com/mattn/go-isatty"
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/commands/account"
"git.sr.ht/~rjarry/aerc/commands/compose"
"git.sr.ht/~rjarry/aerc/commands/msg"
"git.sr.ht/~rjarry/aerc/commands/msgview"
"git.sr.ht/~rjarry/aerc/commands/terminal"
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/lib/templates"
libui "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~rjarry/aerc/widgets"
2018-01-10 00:30:46 +01:00
)
2019-03-21 21:30:23 +01:00
func getCommands(selected libui.Drawable) []*commands.Commands {
switch selected.(type) {
case *widgets.AccountView:
return []*commands.Commands{
account.AccountCommands,
msg.MessageCommands,
2019-03-21 21:32:22 +01:00
commands.GlobalCommands,
}
2019-05-12 06:06:09 +02:00
case *widgets.Composer:
return []*commands.Commands{
compose.ComposeCommands,
2019-05-12 06:06:09 +02:00
commands.GlobalCommands,
}
2019-03-31 03:45:41 +02:00
case *widgets.MessageViewer:
return []*commands.Commands{
msgview.MessageViewCommands,
msg.MessageCommands,
2019-03-31 03:45:41 +02:00
commands.GlobalCommands,
}
2019-03-30 19:12:04 +01:00
case *widgets.Terminal:
2019-03-21 21:32:22 +01:00
return []*commands.Commands{
terminal.TerminalCommands,
commands.GlobalCommands,
2019-03-21 21:30:23 +01:00
}
default:
return []*commands.Commands{commands.GlobalCommands}
}
}
func execCommand(aerc *widgets.Aerc, ui *libui.UI, cmd []string) error {
cmds := getCommands((*aerc).SelectedTab())
for i, set := range cmds {
err := set.ExecuteCommand(aerc, cmd)
if _, ok := err.(commands.NoSuchCommand); ok {
if i == len(cmds)-1 {
return err
}
continue
} else if _, ok := err.(commands.ErrorExit); ok {
ui.Exit()
return nil
} else if err != nil {
return err
} else {
break
}
}
return nil
}
func getCompletions(aerc *widgets.Aerc, cmd string) []string {
2019-09-05 04:30:49 +02:00
var completions []string
for _, set := range getCommands((*aerc).SelectedTab()) {
completions = append(completions, set.GetCompletions(aerc, cmd)...)
}
sort.Strings(completions)
return completions
}
var (
ShareDir string
Version string
)
2019-07-16 12:09:25 +02:00
func usage() {
log.Fatal("Usage: aerc [-v] [mailto:...]")
2019-07-16 12:09:25 +02:00
}
var termsWithStatusLine = []string{"xterm", "tmux", "screen"}
func setWindowTitle() {
term := strings.ToLower(os.Getenv("TERM"))
for _, t := range termsWithStatusLine {
if strings.Contains(term, t) {
// TODO: avoid hard coding the list of terminals that
// have status line support.
os.Stderr.Write([]byte("\x1b]0;aerc\a"))
return
}
}
}
2018-01-10 00:30:46 +01:00
func main() {
opts, optind, err := getopt.Getopts(os.Args, "v")
if err != nil {
2019-07-16 12:09:25 +02:00
log.Print(err)
usage()
return
}
for _, opt := range opts {
switch opt.Option {
case 'v':
fmt.Println("aerc " + Version)
return
}
}
initDone := make(chan struct{})
args := os.Args[optind:]
if len(args) > 1 {
2019-07-16 12:09:25 +02:00
usage()
return
} else if len(args) == 1 {
arg := args[0]
err := lib.ConnectAndExec(arg)
if err == nil {
return // other aerc instance takes over
}
fmt.Fprintf(os.Stderr, "Failed to communicate to aerc: %v", err)
// continue with setting up a new aerc instance and retry after init
go func(msg string) {
<-initDone
err := lib.ConnectAndExec(msg)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to communicate to aerc: %v", err)
}
}(arg)
}
var (
logOut io.Writer
logger *log.Logger
)
2018-02-01 03:18:21 +01:00
if !isatty.IsTerminal(os.Stdout.Fd()) {
logOut = os.Stdout
} else {
logOut = ioutil.Discard
os.Stdout, _ = os.Open(os.DevNull)
2018-02-01 03:18:21 +01:00
}
2018-02-02 00:59:13 +01:00
logger = log.New(logOut, "", log.LstdFlags)
2018-02-01 03:18:21 +01:00
logger.Println("Starting up aerc")
conf, err := config.LoadConfigFromFile(nil, ShareDir, logger)
2018-01-10 17:19:45 +01:00
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to load config: %v\n", err)
os.Exit(1)
2018-01-10 01:18:19 +01:00
}
2019-03-16 01:32:09 +01:00
var (
aerc *widgets.Aerc
ui *libui.UI
)
defer PanicTermFix(ui) // recover upon panic and try restoring the pty
aerc = widgets.NewAerc(conf, logger, func(cmd []string) error {
return execCommand(aerc, ui, cmd)
}, func(cmd string) []string {
return getCompletions(aerc, cmd)
}, &commands.CmdHistory)
2019-03-11 02:15:24 +01:00
ui, err = libui.Initialize(aerc)
2018-01-11 04:41:15 +01:00
if err != nil {
panic(err)
}
2018-02-27 04:54:39 +01:00
defer ui.Close()
if conf.Ui.MouseEnabled {
ui.EnableMouse()
}
logger.Println("Initializing PGP keyring")
lib.InitKeyring()
defer lib.UnlockKeyring()
logger.Println("Starting Unix server")
as, err := lib.StartServer(logger)
if err != nil {
logger.Printf("Failed to start Unix server: %v (non-fatal)", err)
} else {
defer as.Close()
as.OnMailto = aerc.Mailto
}
2020-05-02 14:06:02 +02:00
// set the aerc version so that we can use it in the template funcs
templates.SetVersion(Version)
close(initDone)
if isatty.IsTerminal(os.Stderr.Fd()) {
setWindowTitle()
}
for !ui.ShouldExit() {
for aerc.Tick() {
// Continue updating our internal state
}
2018-02-27 04:54:39 +01:00
if !ui.Tick() {
// ~60 FPS
time.Sleep(16 * time.Millisecond)
2018-01-10 14:35:26 +01:00
}
}
aerc.CloseBackends()
2018-01-10 00:30:46 +01:00
}
//FatalTermFix prints the stacktrace upon panic and tries to recover the term
// not doing that leaves the terminal in a broken state
func PanicTermFix(ui *libui.UI) {
var err interface{}
if err = recover(); err == nil {
return
}
debug.PrintStack()
if ui != nil {
ui.Close()
}
fmt.Fprintf(os.Stderr, "aerc crashed: %v\n", err)
os.Exit(1)
}