switch to a new rendering mechanism, to avoid blinking: now lien is going to shift simultaneously for all points

This commit is contained in:
sqshq 2019-02-05 22:09:27 -05:00
parent 324d76d149
commit ddec6de927
1 changed files with 111 additions and 103 deletions

View File

@ -5,15 +5,15 @@ import (
"github.com/sqshq/sampler/console" "github.com/sqshq/sampler/console"
"github.com/sqshq/sampler/data" "github.com/sqshq/sampler/data"
"image" "image"
"log"
"math" "math"
"strconv" "strconv"
"sync" "sync"
"time" "time"
. "github.com/sqshq/termui" ui "github.com/sqshq/termui"
) )
// TODO split into runchart, grid, legend files
const ( const (
xAxisLegendWidth = 20 xAxisLegendWidth = 20
xAxisLabelsHeight = 1 xAxisLabelsHeight = 1
@ -28,72 +28,82 @@ const (
) )
type RunChart struct { type RunChart struct {
Block ui.Block
lines []TimeLine lines []timeLine
grid ChartGrid grid chartGrid
precision int precision int
timescale time.Duration timescale time.Duration
mutex *sync.Mutex mutex *sync.Mutex
} }
type TimePoint struct { type chartGrid struct {
time time.Time valueExtrema valueExtrema
value float64 timeRange timeRange
line *TimeLine linesCount int
paddingWidth int
maxTimeWidth int
minTimeWidth int
} }
type TimeLine struct { type timePoint struct {
points []TimePoint value float64
color Color time time.Time
timeCoordinate int
}
type timeLine struct {
points []timePoint
color ui.Color
label string label string
} }
type ChartGrid struct { type timeRange struct {
linesCount int
paddingWidth int
maxTimeWidth int
minTimeWidth int
valueExtremum ValueExtremum
timeExtremum TimeExtremum
}
type TimeExtremum struct {
max time.Time max time.Time
min time.Time min time.Time
} }
type ValueExtremum struct { type valueExtrema struct {
max float64 max float64
min float64 min float64
} }
func NewRunChart(title string, precision int, refreshRateMs int) *RunChart { func NewRunChart(title string, precision int, refreshRateMs int) *RunChart {
block := *NewBlock() block := *ui.NewBlock()
block.Title = title block.Title = title
return &RunChart{ return &RunChart{
Block: block, Block: block,
lines: []TimeLine{}, lines: []timeLine{},
mutex: &sync.Mutex{}, mutex: &sync.Mutex{},
precision: precision, precision: precision,
timescale: calculateTimescale(refreshRateMs), timescale: calculateTimescale(refreshRateMs),
} }
} }
func (self *RunChart) newChartGrid() ChartGrid { func (self *RunChart) newChartGrid() chartGrid {
linesCount := (self.Inner.Max.X - self.Inner.Min.X - self.grid.minTimeWidth) / xAxisGridWidth linesCount := (self.Inner.Max.X - self.Inner.Min.X - self.grid.minTimeWidth) / xAxisGridWidth
timeRange := getTimeRange(linesCount, self.timescale)
return ChartGrid{ return chartGrid{
linesCount: linesCount, timeRange: timeRange,
paddingWidth: xAxisGridWidth, valueExtrema: getValueExtrema(self.lines, timeRange),
maxTimeWidth: self.Inner.Max.X, linesCount: linesCount,
minTimeWidth: self.getMaxValueLength(), paddingWidth: xAxisGridWidth,
timeExtremum: getTimeExtremum(linesCount, self.timescale), maxTimeWidth: self.Inner.Max.X,
valueExtremum: getChartValueExtremum(self.lines), minTimeWidth: self.getMaxValueLength(),
} }
} }
func (self *RunChart) Draw(buffer *Buffer) { func (self *RunChart) newTimePoint(value float64) timePoint {
now := time.Now()
return timePoint{
value: value,
time: now,
timeCoordinate: self.calculateTimeCoordinate(now),
}
}
func (self *RunChart) Draw(buffer *ui.Buffer) {
self.mutex.Lock() self.mutex.Lock()
self.Block.Draw(buffer) self.Block.Draw(buffer)
@ -115,7 +125,7 @@ func (self *RunChart) ConsumeSample(sample data.Sample) {
float, err := strconv.ParseFloat(sample.Value, 64) float, err := strconv.ParseFloat(sample.Value, 64)
if err != nil { if err != nil {
log.Printf("Expected float number, but got %v", sample.Value) // TODO visual notification + check sample.Error // TODO visual notification + check sample.Error
} }
self.mutex.Lock() self.mutex.Lock()
@ -129,8 +139,8 @@ func (self *RunChart) ConsumeSample(sample data.Sample) {
} }
if lineIndex == -1 { if lineIndex == -1 {
line := &TimeLine{ line := &timeLine{
points: []TimePoint{}, points: []timePoint{},
color: sample.Color, color: sample.Color,
label: sample.Label, label: sample.Label,
} }
@ -139,8 +149,7 @@ func (self *RunChart) ConsumeSample(sample data.Sample) {
} }
line := self.lines[lineIndex] line := self.lines[lineIndex]
timePoint := self.newTimePoint(float)
timePoint := TimePoint{value: float, time: time.Now(), line: &line}
line.points = append(line.points, timePoint) line.points = append(line.points, timePoint)
self.lines[lineIndex] = line self.lines[lineIndex] = line
@ -148,54 +157,39 @@ func (self *RunChart) ConsumeSample(sample data.Sample) {
self.mutex.Unlock() self.mutex.Unlock()
} }
func (self *RunChart) trimOutOfRangeValues() { func (self *RunChart) renderLines(buffer *ui.Buffer, drawArea image.Rectangle) {
historyReserve := self.timescale * time.Duration(self.grid.linesCount) * chartHistoryReserve canvas := ui.NewCanvas()
minRangeTime := self.grid.timeExtremum.min.Add(-historyReserve)
for i, item := range self.lines {
lastOutOfRangeValueIndex := -1
for j, point := range item.points {
if point.time.Before(minRangeTime) {
lastOutOfRangeValueIndex = j
}
}
if lastOutOfRangeValueIndex > 0 {
item.points = append(item.points[:0], item.points[lastOutOfRangeValueIndex+1:]...)
self.lines[i] = item
}
}
}
func (self *RunChart) renderLines(buffer *Buffer, drawArea image.Rectangle) {
canvas := NewCanvas()
canvas.Rectangle = drawArea canvas.Rectangle = drawArea
if len(self.lines) == 0 || len(self.lines[0].points) == 0 {
return
}
probe := self.lines[0].points[0]
delta := ui.AbsInt(self.calculateTimeCoordinate(probe.time) - probe.timeCoordinate)
for _, line := range self.lines { for _, line := range self.lines {
xToPoint := make(map[int]image.Point) xToPoint := make(map[int]image.Point)
pointsOrder := make([]int, 0) pointsOrder := make([]int, 0)
for _, timePoint := range line.points { for i, timePoint := range line.points {
timeDeltaWithGridMaxTime := self.grid.timeExtremum.max.Sub(timePoint.time).Nanoseconds() timePoint.timeCoordinate = timePoint.timeCoordinate - delta
timeDeltaToPaddingRelation := float64(timeDeltaWithGridMaxTime) / float64(self.timescale.Nanoseconds()) line.points[i] = timePoint
x := self.grid.maxTimeWidth - (int(float64(xAxisGridWidth) * timeDeltaToPaddingRelation))
var y int var y int
if self.grid.valueExtremum.max-self.grid.valueExtremum.min == 0 { if self.grid.valueExtrema.max == self.grid.valueExtrema.min {
y = (drawArea.Dy() - 2) / 2 y = (drawArea.Dy() - 2) / 2
} else { } else {
valuePerY := (self.grid.valueExtremum.max - self.grid.valueExtremum.min) / float64(drawArea.Dy()-2) valuePerY := (self.grid.valueExtrema.max - self.grid.valueExtrema.min) / float64(drawArea.Dy()-2)
y = int(float64(timePoint.value-self.grid.valueExtremum.min) / valuePerY) y = int(float64(timePoint.value-self.grid.valueExtrema.min) / valuePerY)
} }
point := image.Pt(x, drawArea.Max.Y-y-1) point := image.Pt(timePoint.timeCoordinate, drawArea.Max.Y-y-1)
if _, exists := xToPoint[x]; exists { if _, exists := xToPoint[point.X]; exists {
continue continue
} }
@ -203,8 +197,8 @@ func (self *RunChart) renderLines(buffer *Buffer, drawArea image.Rectangle) {
continue continue
} }
xToPoint[x] = point xToPoint[point.X] = point
pointsOrder = append(pointsOrder, x) pointsOrder = append(pointsOrder, point.X)
} }
for i, x := range pointsOrder { for i, x := range pointsOrder {
@ -229,17 +223,17 @@ func (self *RunChart) renderLines(buffer *Buffer, drawArea image.Rectangle) {
canvas.Draw(buffer) canvas.Draw(buffer)
} }
func (self *RunChart) renderAxes(buffer *Buffer) { func (self *RunChart) renderAxes(buffer *ui.Buffer) {
// draw origin cell // draw origin cell
buffer.SetCell( buffer.SetCell(
NewCell(BOTTOM_LEFT, NewStyle(ColorWhite)), ui.NewCell(ui.BOTTOM_LEFT, ui.NewStyle(ui.ColorWhite)),
image.Pt(self.Inner.Min.X+self.grid.minTimeWidth, self.Inner.Max.Y-xAxisLabelsHeight-1), image.Pt(self.Inner.Min.X+self.grid.minTimeWidth, self.Inner.Max.Y-xAxisLabelsHeight-1),
) )
// draw x axis line // draw x axis line
for i := self.grid.minTimeWidth + 1; i < self.Inner.Dx(); i++ { for i := self.grid.minTimeWidth + 1; i < self.Inner.Dx(); i++ {
buffer.SetCell( buffer.SetCell(
NewCell(HORIZONTAL_DASH, NewStyle(ColorWhite)), ui.NewCell(ui.HORIZONTAL_DASH, ui.NewStyle(ui.ColorWhite)),
image.Pt(i+self.Inner.Min.X, self.Inner.Max.Y-xAxisLabelsHeight-1), image.Pt(i+self.Inner.Min.X, self.Inner.Max.Y-xAxisLabelsHeight-1),
) )
} }
@ -248,7 +242,7 @@ func (self *RunChart) renderAxes(buffer *Buffer) {
for y := 0; y < self.Inner.Dy()-xAxisLabelsHeight-2; y = y + 2 { for y := 0; y < self.Inner.Dy()-xAxisLabelsHeight-2; y = y + 2 {
for x := 1; x <= self.grid.linesCount; x++ { for x := 1; x <= self.grid.linesCount; x++ {
buffer.SetCell( buffer.SetCell(
NewCell(VERTICAL_DASH, NewStyle(console.ColorDarkGrey)), ui.NewCell(ui.VERTICAL_DASH, ui.NewStyle(console.ColorDarkGrey)),
image.Pt(self.grid.maxTimeWidth-x*xAxisGridWidth, y+self.Inner.Min.Y+1), image.Pt(self.grid.maxTimeWidth-x*xAxisGridWidth, y+self.Inner.Min.Y+1),
) )
} }
@ -257,75 +251,85 @@ func (self *RunChart) renderAxes(buffer *Buffer) {
// draw y axis line // draw y axis line
for i := 0; i < self.Inner.Dy()-xAxisLabelsHeight-1; i++ { for i := 0; i < self.Inner.Dy()-xAxisLabelsHeight-1; i++ {
buffer.SetCell( buffer.SetCell(
NewCell(VERTICAL_DASH, NewStyle(ColorWhite)), ui.NewCell(ui.VERTICAL_DASH, ui.NewStyle(ui.ColorWhite)),
image.Pt(self.Inner.Min.X+self.grid.minTimeWidth, i+self.Inner.Min.Y), image.Pt(self.Inner.Min.X+self.grid.minTimeWidth, i+self.Inner.Min.Y),
) )
} }
// draw x axis time labels // draw x axis time labels
for i := 1; i <= self.grid.linesCount; i++ { for i := 1; i <= self.grid.linesCount; i++ {
labelTime := self.grid.timeExtremum.max.Add(time.Duration(-i) * self.timescale) labelTime := self.grid.timeRange.max.Add(time.Duration(-i) * self.timescale)
buffer.SetString( buffer.SetString(
labelTime.Format("15:04:05"), labelTime.Format("15:04:05"),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.grid.maxTimeWidth-xAxisLabelsWidth/2-i*(xAxisGridWidth), self.Inner.Max.Y-1), image.Pt(self.grid.maxTimeWidth-xAxisLabelsWidth/2-i*(xAxisGridWidth), self.Inner.Max.Y-1),
) )
} }
// draw y axis labels // draw y axis labels
if self.grid.valueExtremum.max != self.grid.valueExtremum.min { if self.grid.valueExtrema.max != self.grid.valueExtrema.min {
labelsCount := (self.Inner.Dy() - xAxisLabelsHeight - 1) / (yAxisLabelsGap + yAxisLabelsHeight) labelsCount := (self.Inner.Dy() - xAxisLabelsHeight - 1) / (yAxisLabelsGap + yAxisLabelsHeight)
valuePerY := (self.grid.valueExtremum.max - self.grid.valueExtremum.min) / float64(self.Inner.Dy()-xAxisLabelsHeight-3) valuePerY := (self.grid.valueExtrema.max - self.grid.valueExtrema.min) / float64(self.Inner.Dy()-xAxisLabelsHeight-3)
for i := 0; i < int(labelsCount); i++ { for i := 0; i < int(labelsCount); i++ {
value := self.grid.valueExtremum.max - (valuePerY * float64(i) * (yAxisLabelsGap + yAxisLabelsHeight)) value := self.grid.valueExtrema.max - (valuePerY * float64(i) * (yAxisLabelsGap + yAxisLabelsHeight))
buffer.SetString( buffer.SetString(
formatValue(value, self.precision), formatValue(value, self.precision),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.Inner.Min.X, 1+self.Inner.Min.Y+i*(yAxisLabelsGap+yAxisLabelsHeight)), image.Pt(self.Inner.Min.X, 1+self.Inner.Min.Y+i*(yAxisLabelsGap+yAxisLabelsHeight)),
) )
} }
} else { } else {
buffer.SetString( buffer.SetString(
formatValue(self.grid.valueExtremum.max, self.precision), formatValue(self.grid.valueExtrema.max, self.precision),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.Inner.Min.X, self.Inner.Dy()/2)) image.Pt(self.Inner.Min.X, self.Inner.Dy()/2))
} }
} }
func (self *RunChart) renderLegend(buffer *Buffer, rectangle image.Rectangle) { func (self *RunChart) renderLegend(buffer *ui.Buffer, rectangle image.Rectangle) {
for i, line := range self.lines { for i, line := range self.lines {
extremum := getLineValueExtremum(line.points) extremum := getLineValueExtremum(line.points)
buffer.SetString( buffer.SetString(
string(DOT), string(ui.DOT),
NewStyle(line.color), ui.NewStyle(line.color),
image.Pt(self.Inner.Max.X-xAxisLegendWidth-2, self.Inner.Min.Y+1+i*5), image.Pt(self.Inner.Max.X-xAxisLegendWidth-2, self.Inner.Min.Y+1+i*5),
) )
buffer.SetString( buffer.SetString(
fmt.Sprintf("%s", line.label), fmt.Sprintf("%s", line.label),
NewStyle(line.color), ui.NewStyle(line.color),
image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+1+i*5), image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+1+i*5),
) )
buffer.SetString( buffer.SetString(
fmt.Sprintf("cur %s", formatValue(line.points[len(line.points)-1].value, self.precision)), fmt.Sprintf("cur %s", formatValue(line.points[len(line.points)-1].value, self.precision)),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+2+i*5), image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+2+i*5),
) )
buffer.SetString( buffer.SetString(
fmt.Sprintf("max %s", formatValue(extremum.max, self.precision)), fmt.Sprintf("max %s", formatValue(extremum.max, self.precision)),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+3+i*5), image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+3+i*5),
) )
buffer.SetString( buffer.SetString(
fmt.Sprintf("min %s", formatValue(extremum.min, self.precision)), fmt.Sprintf("min %s", formatValue(extremum.min, self.precision)),
NewStyle(ColorWhite), ui.NewStyle(ui.ColorWhite),
image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+4+i*5), image.Pt(self.Inner.Max.X-xAxisLegendWidth, self.Inner.Min.Y+4+i*5),
) )
} }
} }
func (self *RunChart) trimOutOfRangeValues() {
// TODO use hard limit
}
func (self *RunChart) calculateTimeCoordinate(t time.Time) int {
timeDeltaWithGridMaxTime := self.grid.timeRange.max.Sub(t).Nanoseconds()
timeDeltaToPaddingRelation := float64(timeDeltaWithGridMaxTime) / float64(self.timescale.Nanoseconds())
return self.grid.maxTimeWidth - (int(float64(xAxisGridWidth) * timeDeltaToPaddingRelation))
}
func (self *RunChart) getMaxValueLength() int { func (self *RunChart) getMaxValueLength() int {
maxValueLength := 0 maxValueLength := 0
@ -347,32 +351,36 @@ func formatValue(value float64, precision int) string {
return fmt.Sprintf(format, value) return fmt.Sprintf(format, value)
} }
func getChartValueExtremum(items []TimeLine) ValueExtremum { func getValueExtrema(items []timeLine, timeRange timeRange) valueExtrema {
if len(items) == 0 { if len(items) == 0 {
return ValueExtremum{0, 0} return valueExtrema{0, 0}
} }
var max, min = -math.MaxFloat64, math.MaxFloat64 var max, min = -math.MaxFloat64, math.MaxFloat64
for _, item := range items { for _, item := range items {
for _, point := range item.points { for _, point := range item.points {
if point.value > max { if point.value > max && timeRange.isInRange(point.time) {
max = point.value max = point.value
} }
if point.value < min { if point.value < min && timeRange.isInRange(point.time) {
min = point.value min = point.value
} }
} }
} }
return ValueExtremum{max: max, min: min} return valueExtrema{max: max, min: min}
} }
func getLineValueExtremum(points []TimePoint) ValueExtremum { func (r *timeRange) isInRange(time time.Time) bool {
return time.After(r.min) && time.Before(r.max)
}
func getLineValueExtremum(points []timePoint) valueExtrema {
if len(points) == 0 { if len(points) == 0 {
return ValueExtremum{0, 0} return valueExtrema{0, 0}
} }
var max, min = -math.MaxFloat64, math.MaxFloat64 var max, min = -math.MaxFloat64, math.MaxFloat64
@ -386,12 +394,12 @@ func getLineValueExtremum(points []TimePoint) ValueExtremum {
} }
} }
return ValueExtremum{max: max, min: min} return valueExtrema{max: max, min: min}
} }
func getTimeExtremum(linesCount int, scale time.Duration) TimeExtremum { func getTimeRange(linesCount int, scale time.Duration) timeRange {
maxTime := time.Now() maxTime := time.Now()
return TimeExtremum{ return timeRange{
max: maxTime, max: maxTime,
min: maxTime.Add(-time.Duration(scale.Nanoseconds() * int64(linesCount))), min: maxTime.Add(-time.Duration(scale.Nanoseconds() * int64(linesCount))),
} }