init expanded view, add cpu histogram

This commit is contained in:
Bradley Cicenas
2017-01-06 19:46:30 +00:00
parent bebdfd844f
commit 99aac17030
6 changed files with 162 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import (
type ContainerWidgets interface {
Row() *ui.Row
Render()
Highlight()
UnHighlight()
SetCPU(int)
@@ -34,6 +35,9 @@ func NewCompact(id string, name string) *Compact {
}
}
func (w *Compact) Render() {
}
func (w *Compact) Row() *ui.Row {
return ui.NewRow(
ui.NewCol(2, 0, w.Name),

80
widgets/expanded.go Normal file
View File

@@ -0,0 +1,80 @@
package widgets
import (
"fmt"
ui "github.com/gizak/termui"
)
type Expanded struct {
Info *ui.Table
Net *ui.Par
Cpu *ExpandedCpu
Memory *ui.Gauge
}
func NewExpanded(id, name string) *Expanded {
return &Expanded{
Info: NewInfo(id, name),
Net: ui.NewPar("-"),
Cpu: NewExpandedCpu(),
Memory: mkGauge(),
}
}
func NewInfo(id, name string) *ui.Table {
p := ui.NewTable()
p.Rows = [][]string{
[]string{"name", name},
[]string{"id", id},
}
p.Height = 4
p.Width = 40
p.FgColor = ui.ColorWhite
p.Seperator = false
return p
}
func (w *Expanded) Render() {
ui.Render(w.Info, w.Cpu)
ui.Handle("/timer/1s", func(ui.Event) {
ui.Render(w.Info, w.Cpu)
})
ui.Handle("/sys/kbd/", func(ui.Event) {
ui.StopLoop()
})
ui.Loop()
}
func (w *Expanded) Row() *ui.Row {
return ui.NewRow(
ui.NewCol(2, 0, w.Cpu),
ui.NewCol(2, 0, w.Memory),
ui.NewCol(2, 0, w.Net),
)
}
func (w *Expanded) Highlight() {
}
func (w *Expanded) UnHighlight() {
}
func (w *Expanded) SetCPU(val int) {
w.Cpu.Update(val)
}
func (w *Expanded) SetNet(rx int64, tx int64) {
w.Net.Text = fmt.Sprintf("%s / %s", byteFormat(rx), byteFormat(tx))
}
func (w *Expanded) SetMem(val int64, limit int64, percent int) {
w.Memory.Label = fmt.Sprintf("%s / %s", byteFormat(val), byteFormat(limit))
if percent < 5 {
percent = 5
w.Memory.BarColor = ui.ColorBlack
} else {
w.Memory.BarColor = ui.ColorGreen
}
w.Memory.Percent = percent
}

30
widgets/expanded_cpu.go Normal file
View File

@@ -0,0 +1,30 @@
package widgets
import (
ui "github.com/gizak/termui"
)
type ExpandedCpu struct {
*ui.BarChart
hist HistData
}
func NewExpandedCpu() *ExpandedCpu {
cpu := &ExpandedCpu{ui.NewBarChart(), NewHistData(12)}
cpu.BorderLabel = "CPU Util"
cpu.Height = 10
cpu.Width = 50
cpu.BarColor = ui.ColorGreen
cpu.BarWidth = 3
cpu.BarGap = 1
cpu.X = 0
cpu.Y = 4
cpu.Data = cpu.hist.data
cpu.DataLabels = cpu.hist.labels
return cpu
}
func (w *ExpandedCpu) Update(val int) {
w.hist.Append(val)
w.Data = w.hist.data
}

22
widgets/hist.go Normal file
View File

@@ -0,0 +1,22 @@
package widgets
type HistData struct {
data []int
labels []string
maxSize int
}
func NewHistData(max int) HistData {
return HistData{
data: make([]int, max),
labels: make([]string, max),
maxSize: max,
}
}
func (h HistData) Append(val int) {
if len(h.data) >= h.maxSize {
h.data = append(h.data[:0], h.data[1:]...)
}
h.data = append(h.data, val)
}