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-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-13 14:27:12 +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,
|
|
|
|
Height: 35,
|
2018-03-13 20:58:43 +01:00
|
|
|
num: 0,
|
|
|
|
}
|
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
|
|
|
}
|