2019-02-18 04:49:40 +00:00
|
|
|
package barchart
|
|
|
|
|
2019-02-19 04:07:32 +00:00
|
|
|
import (
|
2019-02-20 04:03:19 +00:00
|
|
|
"fmt"
|
2019-02-19 04:07:32 +00:00
|
|
|
rw "github.com/mattn/go-runewidth"
|
2019-02-20 04:03:19 +00:00
|
|
|
"github.com/sqshq/sampler/console"
|
2019-02-19 04:07:32 +00:00
|
|
|
"github.com/sqshq/sampler/data"
|
|
|
|
ui "github.com/sqshq/termui"
|
|
|
|
"image"
|
2019-02-20 04:03:19 +00:00
|
|
|
"math"
|
2019-02-19 04:07:32 +00:00
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
barSymbol rune = '⠿'
|
|
|
|
barIndent int = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
type BarChart struct {
|
|
|
|
ui.Block
|
|
|
|
bars []Bar
|
|
|
|
scale int
|
|
|
|
maxValue float64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Bar struct {
|
|
|
|
label string
|
|
|
|
color ui.Color
|
|
|
|
value float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBarChart(title string, scale int) *BarChart {
|
|
|
|
block := *ui.NewBlock()
|
|
|
|
block.Title = title
|
|
|
|
return &BarChart{
|
|
|
|
Block: block,
|
|
|
|
bars: []Bar{},
|
|
|
|
scale: scale,
|
2019-02-20 04:03:19 +00:00
|
|
|
maxValue: -math.MaxFloat64,
|
2019-02-19 04:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BarChart) AddBar(label string, color ui.Color) {
|
|
|
|
b.bars = append(b.bars, Bar{label: label, color: color, value: 0})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BarChart) ConsumeSample(sample data.Sample) {
|
|
|
|
|
|
|
|
float, err := strconv.ParseFloat(sample.Value, 64)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
// TODO visual notification + check sample.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
index := -1
|
|
|
|
for i, bar := range b.bars {
|
|
|
|
if bar.label == sample.Label {
|
|
|
|
index = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-20 04:03:19 +00:00
|
|
|
if float > b.maxValue {
|
|
|
|
b.maxValue = float
|
|
|
|
}
|
|
|
|
|
2019-02-19 04:07:32 +00:00
|
|
|
bar := b.bars[index]
|
|
|
|
bar.value = float
|
|
|
|
b.bars[index] = bar
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *BarChart) Draw(buf *ui.Buffer) {
|
|
|
|
b.Block.Draw(buf)
|
|
|
|
|
2019-02-20 04:03:19 +00:00
|
|
|
barWidth := b.Inner.Dx() / len(b.bars)
|
2019-02-19 04:07:32 +00:00
|
|
|
barXCoordinate := b.Inner.Min.X
|
|
|
|
|
2019-02-20 04:03:19 +00:00
|
|
|
labelStyle := ui.NewStyle(console.ColorWhite)
|
|
|
|
|
|
|
|
for _, bar := range b.bars {
|
2019-02-19 04:07:32 +00:00
|
|
|
// draw bar
|
2019-02-20 04:03:19 +00:00
|
|
|
height := int((bar.value / b.maxValue) * float64(b.Inner.Dy()-1))
|
|
|
|
for x := barXCoordinate; x < ui.MinInt(barXCoordinate+barWidth, b.Inner.Max.X); x++ {
|
2019-02-19 04:07:32 +00:00
|
|
|
for y := b.Inner.Max.Y - 2; y > (b.Inner.Max.Y-2)-height; y-- {
|
2019-02-20 04:03:19 +00:00
|
|
|
c := ui.NewCell(barSymbol, ui.NewStyle(bar.color))
|
2019-02-19 04:07:32 +00:00
|
|
|
buf.SetCell(c, image.Pt(x, y))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// draw label
|
2019-02-20 04:03:19 +00:00
|
|
|
labelXCoordinate := barXCoordinate +
|
|
|
|
int(float64(barWidth)/2) -
|
|
|
|
int(float64(rw.StringWidth(bar.label))/2)
|
|
|
|
buf.SetString(
|
|
|
|
bar.label,
|
|
|
|
labelStyle,
|
|
|
|
image.Pt(labelXCoordinate, b.Inner.Max.Y-1),
|
|
|
|
)
|
2019-02-19 04:07:32 +00:00
|
|
|
|
|
|
|
// draw value
|
2019-02-20 04:03:19 +00:00
|
|
|
numberXCoordinate := barXCoordinate + int(float64(barWidth)/2)
|
2019-02-19 04:07:32 +00:00
|
|
|
if numberXCoordinate <= b.Inner.Max.X {
|
|
|
|
buf.SetString(
|
2019-02-20 04:03:19 +00:00
|
|
|
formatValue(bar.value, b.scale),
|
|
|
|
labelStyle,
|
2019-02-19 04:07:32 +00:00
|
|
|
image.Pt(numberXCoordinate, b.Inner.Max.Y-2),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-02-20 04:03:19 +00:00
|
|
|
barXCoordinate += barWidth + barIndent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO extract to utils
|
|
|
|
func formatValue(value float64, scale int) string {
|
|
|
|
if math.Abs(value) == math.MaxFloat64 {
|
|
|
|
return "Inf"
|
|
|
|
} else {
|
|
|
|
format := "%." + strconv.Itoa(scale) + "f"
|
|
|
|
return fmt.Sprintf(format, value)
|
2019-02-19 04:07:32 +00:00
|
|
|
}
|
|
|
|
}
|