mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
84 lines
1.6 KiB
Go
84 lines
1.6 KiB
Go
package single
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/bcicen/ctop/cwidgets"
|
|
ui "github.com/gizak/termui"
|
|
)
|
|
|
|
type Mem struct {
|
|
*ui.Block
|
|
Chart *ui.MBarChart
|
|
InnerLabel *ui.Par
|
|
valHist *IntHist
|
|
limitHist *IntHist
|
|
}
|
|
|
|
func NewMem() *Mem {
|
|
mem := &Mem{
|
|
Block: ui.NewBlock(),
|
|
Chart: newMemChart(),
|
|
InnerLabel: newMemLabel(),
|
|
valHist: NewIntHist(9),
|
|
limitHist: NewIntHist(9),
|
|
}
|
|
mem.Height = 13
|
|
mem.Width = colWidth[0]
|
|
mem.BorderLabel = "MEM"
|
|
|
|
mem.Chart.Data[0] = mem.valHist.Data
|
|
mem.Chart.Data[1] = mem.limitHist.Data
|
|
mem.Chart.DataLabels = mem.valHist.Labels
|
|
|
|
return mem
|
|
}
|
|
|
|
func (w *Mem) Align() {
|
|
y := w.Y + 1
|
|
w.InnerLabel.SetY(y)
|
|
w.Chart.SetY(y + w.InnerLabel.Height)
|
|
|
|
w.Chart.Height = w.Height - w.InnerLabel.Height - 2
|
|
w.Chart.SetWidth(w.Width - 2)
|
|
}
|
|
|
|
func (w *Mem) Buffer() ui.Buffer {
|
|
buf := ui.NewBuffer()
|
|
buf.Merge(w.Block.Buffer())
|
|
buf.Merge(w.InnerLabel.Buffer())
|
|
buf.Merge(w.Chart.Buffer())
|
|
return buf
|
|
}
|
|
|
|
func newMemLabel() *ui.Par {
|
|
p := ui.NewPar("-")
|
|
p.X = 1
|
|
p.Border = false
|
|
p.Height = 1
|
|
p.Width = 20
|
|
return p
|
|
}
|
|
|
|
func newMemChart() *ui.MBarChart {
|
|
mbar := ui.NewMBarChart()
|
|
mbar.X = 1
|
|
mbar.Border = false
|
|
mbar.BarGap = 1
|
|
mbar.BarWidth = 6
|
|
|
|
mbar.BarColor[1] = ui.ColorBlack
|
|
mbar.NumColor[1] = ui.ColorBlack
|
|
|
|
mbar.NumFmt = cwidgets.ByteFormatShort
|
|
//mbar.ShowScale = true
|
|
return mbar
|
|
}
|
|
|
|
func (w *Mem) Update(val int, limit int) {
|
|
w.valHist.Append(val)
|
|
w.limitHist.Append(limit - val)
|
|
w.InnerLabel.Text = fmt.Sprintf("%v / %v", cwidgets.ByteFormatShort(val), cwidgets.ByteFormatShort(limit))
|
|
//w.Data[0] = w.hist.data
|
|
}
|