2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 06:30:53 +00:00

Merge pull request #3026 from greatroar/refactor-ui

internal/ui refactoring
This commit is contained in:
MichaelEischer 2020-10-25 17:51:39 +01:00 committed by GitHub
commit ad3a52e6f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 56 deletions

View File

@ -55,32 +55,18 @@ func (w *lineWriter) Write(data []byte) (n int, err error) {
// look for line breaks // look for line breaks
buf := w.buf.Bytes() buf := w.buf.Bytes()
skip := 0 i := bytes.LastIndexByte(buf, '\n')
for i := 0; i < len(buf); { if i != -1 {
if buf[i] == '\n' { w.print(string(buf[:i+1]))
// found line w.buf.Next(i + 1)
w.print(string(buf[:i+1]))
buf = buf[i+1:]
skip += i + 1
i = 0
continue
}
i++
} }
_ = w.buf.Next(skip)
return n, err return n, err
} }
func (w *lineWriter) Flush() error { func (w *lineWriter) Close() error {
if w.buf.Len() > 0 { if w.buf.Len() > 0 {
w.print(string(append(w.buf.Bytes(), '\n'))) w.print(string(append(w.buf.Bytes(), '\n')))
} }
return nil return nil
} }
func (w *lineWriter) Close() error {
return w.Flush()
}

View File

@ -1,6 +1,7 @@
package ui package ui
import ( import (
"strings"
"testing" "testing"
"github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp"
@ -8,16 +9,14 @@ import (
func TestStdioWrapper(t *testing.T) { func TestStdioWrapper(t *testing.T) {
var tests = []struct { var tests = []struct {
inputs [][]byte inputs [][]byte
outputs []string output string
}{ }{
{ {
inputs: [][]byte{ inputs: [][]byte{
[]byte("foo"), []byte("foo"),
}, },
outputs: []string{ output: "foo\n",
"foo\n",
},
}, },
{ {
inputs: [][]byte{ inputs: [][]byte{
@ -26,10 +25,8 @@ func TestStdioWrapper(t *testing.T) {
[]byte("\n"), []byte("\n"),
[]byte("baz"), []byte("baz"),
}, },
outputs: []string{ output: "foobar\n" +
"foobar\n",
"baz\n", "baz\n",
},
}, },
{ {
inputs: [][]byte{ inputs: [][]byte{
@ -37,11 +34,9 @@ func TestStdioWrapper(t *testing.T) {
[]byte("bar\nbaz\n"), []byte("bar\nbaz\n"),
[]byte("bump\n"), []byte("bump\n"),
}, },
outputs: []string{ output: "foobar\n" +
"foobar\n", "baz\n" +
"baz\n",
"bump\n", "bump\n",
},
}, },
{ {
inputs: [][]byte{ inputs: [][]byte{
@ -53,23 +48,17 @@ func TestStdioWrapper(t *testing.T) {
[]byte("x"), []byte("x"),
[]byte("z"), []byte("z"),
}, },
outputs: []string{ output: "foobar\n" +
"foobar\n", "baz\n" +
"baz\n", "bump\n" +
"bump\n",
"xxxz\n", "xxxz\n",
},
}, },
} }
for _, test := range tests { for _, test := range tests {
t.Run("", func(t *testing.T) { t.Run("", func(t *testing.T) {
var lines []string var output strings.Builder
print := func(s string) { w := newLineWriter(func(s string) { output.WriteString(s) })
lines = append(lines, s)
}
w := newLineWriter(print)
for _, data := range test.inputs { for _, data := range test.inputs {
n, err := w.Write(data) n, err := w.Write(data)
@ -87,8 +76,8 @@ func TestStdioWrapper(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
if !cmp.Equal(test.outputs, lines) { if outstr := output.String(); outstr != test.output {
t.Error(cmp.Diff(test.outputs, lines)) t.Error(cmp.Diff(test.output, outstr))
} }
}) })
} }

View File

@ -234,19 +234,23 @@ func (t *Terminal) undoStatus(lines int) {
} }
} }
// Print writes a line to the terminal. func (t *Terminal) print(line string, isErr bool) {
func (t *Terminal) Print(line string) {
// make sure the line ends with a line break // make sure the line ends with a line break
if line[len(line)-1] != '\n' { if line[len(line)-1] != '\n' {
line += "\n" line += "\n"
} }
select { select {
case t.msg <- message{line: line}: case t.msg <- message{line: line, err: isErr}:
case <-t.closed: case <-t.closed:
} }
} }
// Print writes a line to the terminal.
func (t *Terminal) Print(line string) {
t.print(line, false)
}
// Printf uses fmt.Sprintf to write a line to the terminal. // Printf uses fmt.Sprintf to write a line to the terminal.
func (t *Terminal) Printf(msg string, args ...interface{}) { func (t *Terminal) Printf(msg string, args ...interface{}) {
s := fmt.Sprintf(msg, args...) s := fmt.Sprintf(msg, args...)
@ -255,15 +259,7 @@ func (t *Terminal) Printf(msg string, args ...interface{}) {
// Error writes an error to the terminal. // Error writes an error to the terminal.
func (t *Terminal) Error(line string) { func (t *Terminal) Error(line string) {
// make sure the line ends with a line break t.print(line, true)
if line[len(line)-1] != '\n' {
line += "\n"
}
select {
case t.msg <- message{line: line, err: true}:
case <-t.closed:
}
} }
// Errorf uses fmt.Sprintf to write an error line to the terminal. // Errorf uses fmt.Sprintf to write an error line to the terminal.