gomuks/gomuks.go

163 lines
3.4 KiB
Go
Raw Normal View History

// gomuks - A terminal Matrix client written in Go.
// Copyright (C) 2018 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"fmt"
"os"
"path/filepath"
"time"
2018-03-15 17:25:16 +01:00
"maunium.net/go/gomatrix"
2018-03-18 20:24:03 +01:00
"maunium.net/go/gomuks/config"
"maunium.net/go/gomuks/interface"
"maunium.net/go/gomuks/matrix"
"maunium.net/go/gomuks/ui"
"maunium.net/go/gomuks/ui/debug"
2018-03-14 21:19:26 +01:00
"maunium.net/go/tview"
)
type Gomuks struct {
app *tview.Application
ui *ui.GomuksUI
matrix *matrix.Container
debug *debug.Pane
debugMode bool
config *config.Config
2018-03-22 18:51:20 +01:00
stop chan bool
2018-03-13 20:58:43 +01:00
}
func NewGomuks(enableDebug bool) *Gomuks {
2018-03-13 20:58:43 +01:00
configDir := filepath.Join(os.Getenv("HOME"), ".config/gomuks")
gmx := &Gomuks{
2018-03-22 18:51:20 +01:00
app: tview.NewApplication(),
stop: make(chan bool, 1),
2018-03-13 20:58:43 +01:00
}
2018-03-18 20:24:03 +01:00
gmx.debug = debug.NewPane()
gmx.debug.SetChangedFunc(func() {
gmx.ui.Render()
})
debug.Default = gmx.debug
gmx.config = config.NewConfig(configDir)
gmx.ui = ui.NewGomuksUI(gmx)
2018-03-21 22:29:58 +01:00
gmx.matrix = matrix.NewContainer(gmx)
2018-03-13 20:58:43 +01:00
gmx.config.Load()
2018-03-21 22:29:58 +01:00
if len(gmx.config.UserID) > 0 {
gmx.config.LoadSession(gmx.config.UserID)
}
2018-03-13 20:58:43 +01:00
gmx.matrix.InitClient()
main := gmx.ui.InitViews()
2018-03-18 20:24:03 +01:00
if enableDebug {
debug.EnableExternal()
2018-03-13 20:58:43 +01:00
main = gmx.debug.Wrap(main)
gmx.debugMode = true
}
2018-03-13 20:58:43 +01:00
gmx.app.SetRoot(main, true)
2018-03-13 20:58:43 +01:00
return gmx
}
func (gmx *Gomuks) Stop() {
2018-03-15 20:28:21 +01:00
gmx.debug.Print("Disconnecting from Matrix...")
2018-03-14 23:14:39 +01:00
gmx.matrix.Stop()
2018-03-15 20:28:21 +01:00
gmx.debug.Print("Cleaning up UI...")
2018-03-14 23:14:39 +01:00
gmx.app.Stop()
2018-03-22 18:51:20 +01:00
gmx.stop <- true
gmx.Save()
os.Exit(0)
}
func (gmx *Gomuks) Save() {
2018-03-14 23:14:39 +01:00
if gmx.config.Session != nil {
2018-03-15 20:28:21 +01:00
gmx.debug.Print("Saving session...")
2018-03-14 23:14:39 +01:00
gmx.config.Session.Save()
}
2018-03-22 18:51:20 +01:00
gmx.debug.Print("Saving history...")
gmx.ui.MainView().SaveAllHistory()
}
func (gmx *Gomuks) StartAutosave() {
defer gmx.Recover()
ticker := time.NewTicker(time.Minute)
for {
select {
case <-ticker.C:
gmx.Save()
case val := <-gmx.stop:
if val {
return
}
}
}
2018-03-14 23:14:39 +01:00
}
func (gmx *Gomuks) Recover() {
2018-03-15 17:21:14 +01:00
if p := recover(); p != nil {
if gmx.App().GetScreen() != nil {
gmx.App().GetScreen().Fini()
}
if gmx.debugMode {
panic(p)
} else {
debug.PrettyPanic()
}
2018-03-15 17:21:14 +01:00
}
}
func (gmx *Gomuks) Start() {
defer gmx.Recover()
2018-03-22 18:51:20 +01:00
go gmx.StartAutosave()
2018-03-13 20:58:43 +01:00
if err := gmx.app.Run(); err != nil {
panic(err)
}
}
func (gmx *Gomuks) Matrix() *gomatrix.Client {
2018-03-18 20:24:03 +01:00
return gmx.matrix.Client()
}
func (gmx *Gomuks) MatrixContainer() ifc.MatrixContainer {
2018-03-13 20:58:43 +01:00
return gmx.matrix
}
func (gmx *Gomuks) App() *tview.Application {
2018-03-13 20:58:43 +01:00
return gmx.app
}
func (gmx *Gomuks) Config() *config.Config {
2018-03-13 20:58:43 +01:00
return gmx.config
}
func (gmx *Gomuks) UI() ifc.GomuksUI {
2018-03-13 20:58:43 +01:00
return gmx.ui
}
2018-03-13 20:58:43 +01:00
func main() {
enableDebug := len(os.Getenv("DEBUG")) > 0
NewGomuks(enableDebug).Start()
// We use os.Exit() everywhere, so exiting by returning from Start() shouldn't happen.
time.Sleep(5 * time.Second)
fmt.Println("Unexpected exit by return from Gomuks#Start().")
os.Exit(2)
}