zrepl/client/status.go

313 lines
6.2 KiB
Go
Raw Normal View History

2018-08-29 19:18:54 +02:00
package client
import (
"fmt"
"github.com/mitchellh/mapstructure"
"github.com/nsf/termbox-go"
"github.com/pkg/errors"
2018-08-29 22:06:24 +02:00
"github.com/zrepl/zrepl/config"
"github.com/zrepl/zrepl/daemon"
"github.com/zrepl/zrepl/replication"
"github.com/zrepl/zrepl/replication/fsrep"
2018-08-29 19:18:54 +02:00
"sort"
"sync"
2018-08-29 22:06:24 +02:00
"time"
2018-08-29 19:18:54 +02:00
)
type tui struct {
2018-08-29 22:06:24 +02:00
x, y int
2018-08-29 19:18:54 +02:00
indent int
2018-08-29 22:06:24 +02:00
lock sync.Mutex //For report and error
2018-08-29 19:18:54 +02:00
report map[string]interface{}
2018-08-29 22:06:24 +02:00
err error
2018-08-29 19:18:54 +02:00
}
func newTui() tui {
return tui{}
}
func (t *tui) moveCursor(x, y int) {
t.x += x
t.y += y
}
func (t *tui) moveLine(dl int, col int) {
t.y += dl
2018-08-29 22:06:24 +02:00
t.x = t.indent*4 + col
2018-08-29 19:18:54 +02:00
}
func (t *tui) write(text string) {
for _, c := range text {
termbox.SetCell(t.x, t.y, c, termbox.ColorDefault, termbox.ColorDefault)
t.x += 1
}
}
func (t *tui) printf(text string, a ...interface{}) {
t.write(fmt.Sprintf(text, a...))
}
func (t *tui) newline() {
t.moveLine(1, 0)
}
func (t *tui) setIndent(indent int) {
t.indent = indent
t.moveLine(0, 0)
}
func (t *tui) addIndent(indent int) {
t.indent += indent
t.moveLine(0, 0)
}
func RunStatus(config *config.Config, args []string) error {
2018-08-29 19:18:54 +02:00
httpc, err := controlHttpClient(config.Global.Control.SockPath)
if err != nil {
return err
}
t := newTui()
t.lock.Lock()
t.err = errors.New("Got no report yet")
t.lock.Unlock()
err = termbox.Init()
if err != nil {
return err
}
defer termbox.Close()
2018-08-29 22:06:24 +02:00
update := func() {
m := make(map[string]interface{})
err2 := jsonRequestResponse(httpc, daemon.ControlJobEndpointStatus,
struct{}{},
&m,
)
t.lock.Lock()
t.err = err2
t.report = m
t.lock.Unlock()
t.draw()
}
update()
2018-08-29 19:18:54 +02:00
ticker := time.NewTicker(500 * time.Millisecond)
defer ticker.Stop()
go func() {
for _ = range ticker.C {
2018-08-29 22:06:24 +02:00
update()
2018-08-29 19:18:54 +02:00
}
}()
termbox.HideCursor()
termbox.Clear(termbox.ColorDefault, termbox.ColorDefault)
2018-08-29 22:06:24 +02:00
loop:
2018-08-29 19:18:54 +02:00
for {
switch ev := termbox.PollEvent(); ev.Type {
case termbox.EventKey:
switch ev.Key {
case termbox.KeyEsc:
break loop
case termbox.KeyCtrlC:
break loop
}
case termbox.EventResize:
t.draw()
}
}
return nil
}
func (t *tui) draw() {
t.lock.Lock()
defer t.lock.Unlock()
termbox.Clear(termbox.ColorDefault, termbox.ColorDefault)
t.x = 0
t.y = 0
t.indent = 0
if t.err != nil {
t.write(t.err.Error())
} else {
//Iterate over map in alphabetical order
keys := make([]string, len(t.report))
i := 0
for k, _ := range t.report {
keys[i] = k
i++
}
sort.Strings(keys)
for _, k := range keys {
v := t.report[k]
if len(k) == 0 || k[0] == '_' { //Internal job
continue
}
t.setIndent(0)
t.printf("Job: %s", k)
t.setIndent(1)
t.newline()
if v == nil {
t.printf("No report generated yet")
t.newline()
continue
}
rep := replication.Report{}
err := mapstructure.Decode(v, &rep)
if err != nil {
t.printf("Failed to decode report: %s", err.Error())
t.newline()
continue
}
t.printf("Status: %s", rep.Status)
t.newline()
2018-08-29 22:06:24 +02:00
if rep.Problem != "" {
t.printf("Problem: %s", rep.Problem)
t.newline()
}
2018-08-29 19:18:54 +02:00
2018-08-30 15:20:44 +02:00
maxNameLength := calculateMaxFilesystemAndVersionNameLength(&rep)
2018-08-29 19:18:54 +02:00
for _, fs := range rep.Completed {
2018-08-30 15:20:44 +02:00
printFilesystem(fs, t, false, maxNameLength)
2018-08-29 19:18:54 +02:00
}
if rep.Active != nil {
2018-08-30 15:20:44 +02:00
printFilesystem(rep.Active, t, true, maxNameLength)
2018-08-29 19:18:54 +02:00
}
for _, fs := range rep.Pending {
2018-08-30 15:20:44 +02:00
printFilesystem(fs, t, false, maxNameLength)
2018-08-29 19:18:54 +02:00
}
}
}
termbox.Flush()
}
2018-08-30 15:20:44 +02:00
const snapshotIndent = 1
func calculateMaxFilesystemAndVersionNameLength(report *replication.Report) int {
all := append(report.Completed, report.Active)
all = append(all, report.Pending...)
maxLen := 0
for _, e := range all {
if e == nil { //active can be nil
continue
}
if len(e.Filesystem) > maxLen {
maxLen = len(e.Filesystem)
}
all2 := append(e.Pending, e.Completed...)
for _, e2 := range all2 {
if len(e2.To) + snapshotIndent > maxLen {
maxLen = len(e2.To) + snapshotIndent
}
}
}
return maxLen
}
2018-08-29 19:18:54 +02:00
func times(str string, n int) (out string) {
for i := 0; i < n; i++ {
out += str
}
return
}
func rightPad(str string, length int, pad string) string {
2018-08-30 14:07:28 +02:00
if len(str) > length {
return str[:length]
}
2018-08-29 19:18:54 +02:00
return str + times(pad, length-len(str))
}
2018-08-30 15:20:44 +02:00
func (t *tui) drawBar(name string, maxNameLength int, status string, bytes int64, totalBytes int64) {
t.write(rightPad(name, maxNameLength + 1, " "))
2018-08-29 19:18:54 +02:00
t.write(" ")
2018-08-30 12:47:57 +02:00
t.write(rightPad(status, 14, " "))
t.write(" ")
2018-08-29 19:18:54 +02:00
length := 50
var completedLength int
if totalBytes > 0 {
completedLength = int(int64(length) * bytes / totalBytes)
2018-08-30 14:07:28 +02:00
if completedLength > length {
completedLength = length
}
}
2018-08-29 19:18:54 +02:00
t.write("[")
t.write(times("=", completedLength))
t.write(">")
t.write(times("-", length-completedLength))
t.write("]")
2018-08-29 19:18:54 +02:00
t.write(" ")
totalBytesStr := ByteCountBinary(totalBytes)
if totalBytes == 0 {
totalBytesStr = "??? B"
2018-08-29 19:18:54 +02:00
}
t.write(rightPad(ByteCountBinary(bytes)+"/"+totalBytesStr, 20, " "))
2018-08-29 19:18:54 +02:00
t.newline()
}
2018-08-30 14:07:28 +02:00
func StringStepState(s fsrep.StepState) string {
switch s {
case fsrep.StepReplicationReady: return "Ready"
case fsrep.StepReplicationRetry: return "Retry"
case fsrep.StepMarkReplicatedReady: return "MarkReady"
case fsrep.StepMarkReplicatedRetry: return "MarkRetry"
case fsrep.StepPermanentError: return "PermanentError"
case fsrep.StepCompleted: return "Completed"
default:
return fmt.Sprintf("UNKNOWN %d", s)
}
}
2018-08-30 15:20:44 +02:00
func printFilesystem(rep *fsrep.Report, t *tui, versions bool, maxNameLength int) {
2018-08-29 22:06:24 +02:00
bytes := int64(0)
totalBytes := int64(0)
2018-08-29 22:06:24 +02:00
for _, s := range rep.Pending {
bytes += s.Bytes
totalBytes += s.ExpectedBytes
2018-08-29 22:06:24 +02:00
}
for _, s := range rep.Completed {
bytes += s.Bytes
totalBytes += s.ExpectedBytes
2018-08-29 22:06:24 +02:00
}
2018-08-30 15:20:44 +02:00
t.drawBar(rep.Filesystem, maxNameLength, rep.Status, bytes, totalBytes)
2018-08-29 22:06:24 +02:00
if rep.Problem != "" {
2018-08-29 19:18:54 +02:00
t.addIndent(1)
t.printf("Problem: %s", rep.Problem)
t.newline()
t.addIndent(-1)
}
if versions && len(rep.Pending) > 0 {
v := rep.Pending[0]
2018-08-30 15:20:44 +02:00
t.drawBar(times(" ", snapshotIndent) + v.To, maxNameLength, StringStepState(v.Status), v.Bytes, v.ExpectedBytes)
}
2018-08-29 22:06:24 +02:00
}
func ByteCountBinary(b int64) string {
const unit = 1024
if b < unit {
return fmt.Sprintf("%d B", b)
}
div, exp := int64(unit), 0
for n := b / unit; n >= unit; n /= unit {
div *= unit
exp++
}
return fmt.Sprintf("%.1f %ciB", float64(b)/float64(div), "KMGTPE"[exp])
}