2018-03-13 14:27:12 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
package debug
|
2018-03-13 14:27:12 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-03-19 00:18:36 +01:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"runtime/debug"
|
2018-03-13 14:27:12 +01:00
|
|
|
|
2018-03-14 21:19:26 +01:00
|
|
|
"maunium.net/go/tview"
|
2018-03-13 14:27:12 +01:00
|
|
|
)
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
type Printer interface {
|
2018-03-13 20:58:43 +01:00
|
|
|
Printf(text string, args ...interface{})
|
|
|
|
Print(text ...interface{})
|
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
type Pane struct {
|
|
|
|
*tview.TextView
|
|
|
|
Height int
|
2018-03-19 00:18:36 +01:00
|
|
|
num int
|
2018-03-13 20:58:43 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
var Default Printer
|
|
|
|
|
|
|
|
func NewPane() *Pane {
|
2018-03-13 20:58:43 +01:00
|
|
|
pane := tview.NewTextView()
|
|
|
|
pane.
|
|
|
|
SetScrollable(true).
|
2018-03-18 20:24:03 +01:00
|
|
|
SetWrap(true).
|
|
|
|
SetBorder(true).
|
|
|
|
SetTitle("Debug output")
|
2018-03-13 20:58:43 +01:00
|
|
|
fmt.Fprintln(pane, "[0] Debug pane initialized")
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
return &Pane{
|
|
|
|
TextView: pane,
|
2018-03-19 00:18:36 +01:00
|
|
|
Height: 35,
|
|
|
|
num: 0,
|
2018-03-13 20:58:43 +01:00
|
|
|
}
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
func (db *Pane) Printf(text string, args ...interface{}) {
|
|
|
|
db.WriteString(fmt.Sprintf(text, args...) + "\n")
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
func (db *Pane) Print(text ...interface{}) {
|
|
|
|
db.WriteString(fmt.Sprintln(text...))
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
func (db *Pane) WriteString(text string) {
|
|
|
|
db.num++
|
|
|
|
fmt.Fprintf(db, "[%d] %s", db.num, text)
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:24:03 +01:00
|
|
|
func (db *Pane) Wrap(main tview.Primitive) tview.Primitive {
|
|
|
|
return tview.NewGrid().SetRows(0, db.Height).SetColumns(0).
|
2018-03-13 14:27:12 +01:00
|
|
|
AddItem(main, 0, 0, 1, 1, 1, 1, true).
|
2018-03-18 20:24:03 +01:00
|
|
|
AddItem(db, 1, 0, 1, 1, 1, 1, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Printf(text string, args ...interface{}) {
|
|
|
|
if Default != nil {
|
|
|
|
Default.Printf(text, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Print(text ...interface{}) {
|
|
|
|
if Default != nil {
|
|
|
|
Default.Print(text...)
|
|
|
|
}
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
2018-03-19 00:18:36 +01:00
|
|
|
|
|
|
|
const Oops = ` __________
|
|
|
|
< Oh noes! >
|
|
|
|
‾‾‾\‾‾‾‾‾‾
|
|
|
|
\ ^__^
|
|
|
|
\ (XX)\_______
|
|
|
|
(__)\ )\/\
|
|
|
|
U ||----W |
|
|
|
|
|| ||`
|
|
|
|
|
|
|
|
func PrettyPanic() {
|
|
|
|
fmt.Println(Oops)
|
|
|
|
fmt.Println("")
|
|
|
|
fmt.Println("A fatal error has occurred.")
|
|
|
|
fmt.Println("")
|
|
|
|
traceFile := fmt.Sprintf("/tmp/gomuks-panic-%s.txt", time.Now().Format("2006-01-02--15-04-05"))
|
|
|
|
data := debug.Stack()
|
|
|
|
err := ioutil.WriteFile(traceFile, data, 0644)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Saving the stack trace to", traceFile, "failed:")
|
|
|
|
fmt.Println("--------------------------------------------------------------------------------")
|
|
|
|
fmt.Println(err)
|
|
|
|
fmt.Println("--------------------------------------------------------------------------------")
|
|
|
|
fmt.Println("")
|
|
|
|
fmt.Println("You can file an issue at https://github.com/tulir/gomuks/issues.")
|
|
|
|
fmt.Println("Please provide the file save error (above) and the stack trace of the original error (below) when filing an issue.")
|
|
|
|
fmt.Println("")
|
|
|
|
fmt.Println("--------------------------------------------------------------------------------")
|
|
|
|
debug.PrintStack()
|
|
|
|
fmt.Println("--------------------------------------------------------------------------------")
|
|
|
|
} else {
|
|
|
|
fmt.Println("The stack trace has been saved to", traceFile)
|
|
|
|
fmt.Println("")
|
|
|
|
fmt.Println("You can file an issue at https://github.com/tulir/gomuks/issues.")
|
|
|
|
fmt.Println("Please provide the contents of that file when filing an issue.")
|
|
|
|
}
|
|
|
|
os.Exit(1)
|
|
|
|
}
|