-
Notifications
You must be signed in to change notification settings - Fork 31
/
ui.go
239 lines (201 loc) · 4.84 KB
/
ui.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package main
import (
"fmt"
"io/ioutil"
"os"
"regexp"
"strings"
"unicode"
"github.com/jhunt/go-ansi"
"github.com/starkandwayne/safe/prompt"
)
func warn(warning string, args ...interface{}) {
ansi.Fprintf(os.Stderr, "warning: @Y{%s}\n", fmt.Sprintf(warning, args...))
}
func fail(err error) {
if err != nil {
ansi.Fprintf(os.Stderr, "failed: @R{%s}\n", err)
os.Exit(2)
}
}
func parseKeyVal(key string, quiet bool) (string, string, bool, error) {
if strings.Index(key, "=") >= 0 {
l := strings.SplitN(key, "=", 2)
if l[1] == "" {
return l[0], "", false, nil
}
if !quiet {
ansi.Fprintf(os.Stderr, "%s: @G{%s}\n", l[0], l[1])
}
return l[0], l[1], false, nil
} else if strings.Index(key, "@") >= 0 {
l := strings.SplitN(key, "@", 2)
if l[1] == "" {
return l[0], "", true, fmt.Errorf("No file specified: expecting %s@<filename>", l[0])
}
if l[1] == "-" {
b, err := ioutil.ReadAll(os.Stdin)
if err != nil {
return l[0], "", true, fmt.Errorf("Failed to read from standard input: %s", err)
}
if !quiet {
ansi.Fprintf(os.Stderr, "%s: <@M{$stdin}\n", l[0])
}
return l[0], string(b), false, nil
}
b, err := ioutil.ReadFile(l[1])
if err != nil {
return l[0], "", true, fmt.Errorf("Failed to read contents of %s: %s", l[1], err)
}
if !quiet {
ansi.Fprintf(os.Stderr, "%s: <@C{%s}\n", l[0], l[1])
}
return l[0], string(b), false, nil
}
return key, "", true, nil
}
func pr(label string, confirm bool, secure bool) string {
if !confirm {
if secure {
return prompt.Secure("%s: ", label)
}
return prompt.Normal("%s: ", label)
}
for {
a := prompt.Secure("%s @Y{[hidden]:} ", label)
b := prompt.Secure("%s @C{[confirm]:} ", label)
if a == b && a != "" {
ansi.Fprintf(os.Stderr, "\n")
return a
}
ansi.Fprintf(os.Stderr, "\n@Y{oops, try again }(Ctrl-C to cancel)\n\n")
}
}
type table struct {
headers []string
rows [][]string
numCols int
}
func (t *table) setHeader(headers ...string) {
t._assertValidRowWidth(len(headers))
t.headers = headers
t._formatHeaders()
}
func (t *table) addRow(cols ...string) {
t._assertValidRowWidth(len(cols))
if !ansi.ShouldColorize(os.Stdout) {
for i := range cols {
cols[i] = t._stripColor(cols[i])
}
}
t.rows = append(t.rows, cols)
}
func (t *table) print() {
if t._getNumCols() == 0 {
return
}
colWidths := t._calcColWidths()
if len(t.headers) > 0 {
t._printRow(t.headers, colWidths)
}
for rowNum := range t.rows {
t._printRow(t.rows[rowNum], colWidths)
}
}
func (t *table) _assertValidRowWidth(numCols int) {
if numCols == 0 {
panic("Cannot append row with zero columns")
}
existingCols := t._getNumCols()
if existingCols != 0 && numCols != existingCols {
panic("Number of columns in each row must be consistent")
}
}
func (t *table) _getNumCols() int {
if len(t.headers) != 0 {
return len(t.headers)
}
if len(t.rows) != 0 {
return len(t.rows[0])
}
return 0
}
func (t *table) _calcColWidths() []int {
ret := make([]int, t._getNumCols())
for i := 0; i < len(ret); i++ {
ret[i] = t._calcColWidth(i)
}
return ret
}
func (t *table) _calcColWidth(colNum int) int {
maxWidth := 0
if len(t.headers) != 0 {
maxWidth = t._calcDisplayWidth(t.headers[colNum])
}
for rowNum := range t.rows {
cellWidth := t._calcDisplayWidth(t.rows[rowNum][colNum])
if cellWidth > maxWidth {
maxWidth = cellWidth
}
}
return maxWidth
}
func (t *table) _calcDisplayWidth(cell string) int {
const asciiEscapeStart = '\033'
const asciiEscapeEnd = 'm'
count := 0
state := 0
for _, c := range cell {
switch state {
case 0: //not ascii escape
if c == asciiEscapeStart {
state = 1
} else if unicode.IsGraphic(c) {
count++
}
case 1: //in ascii escape
if c == asciiEscapeEnd {
state = 0
}
}
}
return count
}
func (t *table) _formatHeaders() {
for colNum := range t.headers {
t.headers[colNum] = t._sprintf("@M{%s}", t.headers[colNum])
}
}
func (t *table) _printRow(row []string, widths []int) {
const colBuffer = 2 //two spaces min between cols
//print every col except last, inserting buffer spaces
for colNum := 0; colNum < len(row)-1; colNum++ {
t._printCell(
row[colNum],
widths[colNum]+colBuffer-t._calcDisplayWidth(row[colNum]))
}
//no spaces at the end of the last col
t._printCell(row[len(row)-1], 0)
os.Stdout.Write([]byte{'\n'})
}
func (t *table) _printCell(cell string, spaces int) {
os.Stdout.Write([]byte(cell))
if spaces == 0 {
return
}
spaceBuf := make([]byte, spaces)
for idx := 0; idx < spaces; idx++ {
spaceBuf[idx] = ' '
}
os.Stdout.Write(spaceBuf)
}
func (t *table) _sprintf(f string, args ...interface{}) string {
ret := ansi.Sprintf(f, args...)
if !ansi.ShouldColorize(os.Stdout) {
ret = t._stripColor(ret)
}
return ret
}
func (t *table) _stripColor(s string) string {
return regexp.MustCompile("\033\\[\\d+(;\\d+)?m").ReplaceAllString(s, "")
}