-
Notifications
You must be signed in to change notification settings - Fork 312
/
tui.go
168 lines (146 loc) · 4.92 KB
/
tui.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package tui
import (
"bufio"
"fmt"
"os"
"strings"
"syscall"
"github.com/AstroProfundis/tabby"
"github.com/fatih/color"
"github.com/pingcap/tiup/pkg/utils/mock"
"golang.org/x/term"
)
// PrintTable accepts a matrix of strings and print them as ASCII table to terminal
func PrintTable(rows [][]string, header bool) {
if f := mock.On("PrintTable"); f != nil {
f.(func([][]string, bool))(rows, header)
return
}
// Print the table
t := tabby.New()
if header {
addRow(t, rows[0], header)
rows = rows[1:]
}
for _, row := range rows {
addRow(t, row, false)
}
t.Print()
}
func addRow(t *tabby.Tabby, rawLine []string, header bool) {
// Convert []string to []interface{}
row := make([]interface{}, len(rawLine))
for i, v := range rawLine {
row[i] = v
}
// Add line to the table
if header {
t.AddHeader(row...)
} else {
t.AddLine(row...)
}
}
// pre-defined ascii art strings
const (
ASCIIArtWarning = `
██ ██ █████ ██████ ███ ██ ██ ███ ██ ██████
██ ██ ██ ██ ██ ██ ████ ██ ██ ████ ██ ██
██ █ ██ ███████ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ███
██ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
███ ███ ██ ██ ██ ██ ██ ████ ██ ██ ████ ██████
`
)
// Prompt accepts input from console by user
func Prompt(prompt string) string {
if prompt != "" {
prompt += " " // append a whitespace
}
fmt.Print(prompt)
reader := bufio.NewReader(os.Stdin)
input, err := reader.ReadString('\n')
if err != nil {
return ""
}
return strings.TrimSuffix(input, "\n")
}
// PromptForConfirmYes accepts yes / no from console by user, default to No and only return true
// if the user input is Yes
func PromptForConfirmYes(format string, a ...interface{}) (bool, string) {
ans := Prompt(fmt.Sprintf(format, a...) + "(default=N)")
switch strings.TrimSpace(strings.ToLower(ans)) {
case "y", "yes":
return true, ans
default:
return false, ans
}
}
// PromptForConfirmNo accepts yes / no from console by user, default to Yes and only return true
// if the user input is No
func PromptForConfirmNo(format string, a ...interface{}) (bool, string) {
ans := Prompt(fmt.Sprintf(format, a...) + "(default=Y)")
switch strings.TrimSpace(strings.ToLower(ans)) {
case "n", "no":
return true, ans
default:
return false, ans
}
}
// PromptForConfirmOrAbortError accepts yes / no from console by user, generates AbortError if user does not input yes.
func PromptForConfirmOrAbortError(format string, a ...interface{}) error {
if pass, ans := PromptForConfirmYes(format, a...); !pass {
return errOperationAbort.New("Operation aborted by user (with answer '%s')", ans)
}
return nil
}
// PromptForConfirmAnswer accepts string from console by user, default to empty and only return
// true if the user input is exactly the same as pre-defined answer.
func PromptForConfirmAnswer(answer string, format string, a ...interface{}) (bool, string) {
ans := Prompt(fmt.Sprintf(format, a...) + fmt.Sprintf("\n(Type \"%s\" to continue)\n:", color.CyanString(answer)))
if ans == answer {
return true, ans
}
return false, ans
}
// PromptForAnswerOrAbortError accepts string from console by user, generates AbortError if user does
// not input the pre-defined answer.
func PromptForAnswerOrAbortError(answer string, format string, a ...interface{}) error {
if pass, ans := PromptForConfirmAnswer(answer, format, a...); !pass {
return errOperationAbort.New("Operation aborted by user (with incorrect answer '%s')", ans)
}
return nil
}
// PromptForPassword reads a password input from console
func PromptForPassword(format string, a ...interface{}) string {
defer fmt.Println("")
fmt.Printf(format, a...)
input, err := term.ReadPassword(syscall.Stdin)
if err != nil {
return ""
}
return strings.TrimSpace(strings.Trim(string(input), "\n"))
}
// OsArch builds an "os/arch" string from input, it converts some similar strings
// to different words to avoid misreading when displaying in terminal
func OsArch(os, arch string) string {
osFmt := os
archFmt := arch
switch arch {
case "amd64":
archFmt = "x86_64"
case "arm64":
archFmt = "aarch64"
}
return fmt.Sprintf("%s/%s", osFmt, archFmt)
}