-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
426 lines (402 loc) · 11.7 KB
/
utils.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
package retable
import (
"context"
"database/sql/driver"
"errors"
"fmt"
"go/token"
"io"
"os"
"reflect"
"strings"
"unicode"
"unicode/utf8"
)
// StructFieldTypes returns the exported fields of a struct type
// including the inlined fields of any anonymously embedded structs.
func StructFieldTypes(structType reflect.Type) (fields []reflect.StructField) {
if structType.Kind() == reflect.Pointer {
structType = structType.Elem()
}
for i := 0; i < structType.NumField(); i++ {
field := structType.Field(i)
switch {
case field.Anonymous:
fields = append(fields, StructFieldTypes(field.Type)...)
case token.IsExported(field.Name):
fields = append(fields, field)
}
}
return fields
}
// StructFieldReflectValues returns the reflect.Value of exported struct fields
// including the inlined fields of any anonymously embedded structs.
func StructFieldReflectValues(structValue reflect.Value) []reflect.Value {
if structValue.Kind() == reflect.Pointer {
structValue = structValue.Elem()
}
structType := structValue.Type()
values := make([]reflect.Value, 0, structType.NumField())
for i := 0; i < structType.NumField(); i++ {
field := structType.Field(i)
switch {
case field.Anonymous:
values = append(values, StructFieldReflectValues(structValue.Field(i))...)
case token.IsExported(field.Name):
values = append(values, structValue.Field(i))
}
}
return values
}
// IndexedStructFieldReflectValues returns the reflect.Value of exported struct fields
// including the inlined fields of any anonymously embedded structs.
func IndexedStructFieldReflectValues(structValue reflect.Value, numVals int, indices []int) []reflect.Value {
// TODO optimized algorithm that does not allocate a slice for all values but only numVals
allVals := StructFieldReflectValues(structValue)
if len(allVals) != len(indices) {
panic(fmt.Errorf("got %d indices for struct with %d fields", len(indices), len(allVals)))
}
vals := make([]reflect.Value, numVals)
for i, index := range indices {
if index < 0 {
continue
}
vals[index] = allVals[i]
}
return vals
}
// StructFieldAnyValues returns the values of exported struct fields
// including the inlined fields of any anonymously embedded structs.
func StructFieldAnyValues(structValue reflect.Value) []any {
if structValue.Kind() == reflect.Pointer {
structValue = structValue.Elem()
}
structType := structValue.Type()
values := make([]any, 0, structType.NumField())
for i := 0; i < structType.NumField(); i++ {
field := structType.Field(i)
switch {
case field.Anonymous:
values = append(values, StructFieldAnyValues(structValue.Field(i))...)
case token.IsExported(field.Name):
values = append(values, structValue.Field(i).Interface())
}
}
return values
}
// IndexedStructFieldAnyValues returns the values of exported struct fields
// including the inlined fields of any anonymously embedded structs.
func IndexedStructFieldAnyValues(structValue reflect.Value, numVals int, indices []int) []any {
// TODO optimized algorithm that does not allocate a slice for all values but only numVals
allVals := StructFieldAnyValues(structValue)
if len(allVals) != len(indices) {
panic(fmt.Errorf("got %d indices for struct with %d fields", len(indices), len(allVals)))
}
vals := make([]any, numVals)
for i, index := range indices {
if index < 0 {
continue
}
vals[index] = allVals[i]
}
return vals
}
// StructFieldIndex returns the index of of the struct field
// pointed to by fieldPtr within the struct pointed to by structPtr.
// The returned index counts exported struct fields
// including the inlined fields of any anonymously embedded structs.
func StructFieldIndex(structPtr, fieldPtr any) (int, error) {
if structPtr == nil {
return 0, errors.New("expected struct pointer, got <nil>")
}
structVal := reflect.ValueOf(structPtr)
if structVal.Kind() != reflect.Pointer {
return 0, fmt.Errorf("expected struct pointer, got %T", structPtr)
}
if structVal.IsNil() {
return 0, errors.New("expected struct pointer, got <nil>")
}
structVal = structVal.Elem()
if fieldPtr == nil {
return 0, errors.New("expected struct field pointer, got <nil>")
}
fieldVal := reflect.ValueOf(fieldPtr)
if fieldVal.Kind() != reflect.Pointer {
return 0, fmt.Errorf("expected struct field pointer, got %T", fieldPtr)
}
if fieldVal.IsNil() {
return 0, errors.New("expected struct field pointer, got <nil>")
}
fieldVal = fieldVal.Elem()
for i, v := range StructFieldReflectValues(structVal) {
if v == fieldVal {
return i, nil
}
}
return 0, fmt.Errorf("struct field not found in %s", structVal.Type())
}
// MustStructFieldIndex returns the index of of the struct field
// pointed to by fieldPtr within the struct pointed to by structPtr.
// The returned index counts exported struct fields
// including the inlined fields of any anonymously embedded structs.
func MustStructFieldIndex(structPtr, fieldPtr any) int {
index, err := StructFieldIndex(structPtr, fieldPtr)
if err != nil {
panic(err)
}
return index
}
// SpacePascalCase inserts spaces before upper case
// characters within PascalCase like names.
// It also replaces underscore '_' characters with spaces.
// Usable for ReflectColumnTitles.UntaggedTitle
func SpacePascalCase(name string) string {
var b strings.Builder
b.Grow(len(name) + 4)
lastWasUpper := true
lastWasSpace := true
for _, r := range name {
if r == '_' {
if !lastWasSpace {
b.WriteByte(' ')
}
lastWasUpper = false
lastWasSpace = true
continue
}
isUpper := unicode.IsUpper(r)
if isUpper && !lastWasUpper && !lastWasSpace {
b.WriteByte(' ')
}
b.WriteRune(r)
lastWasUpper = isUpper
lastWasSpace = unicode.IsSpace(r)
}
return strings.TrimSpace(b.String())
}
// SpaceGoCase inserts spaces before upper case
// characters within Go case like names.
// The last upper case character in a sequence of upper case
// characters is interpreted as the start of a new word
// and a space is inserted before it.
// It also replaces underscore '_' characters with spaces.
// Usable for ReflectColumnTitles.UntaggedTitle
func SpaceGoCase(name string) string {
var b strings.Builder
b.Grow(len(name) + 4)
beforeLastWasUpper := false
lastWasUpper := true
lastWasSpace := true
for _, r := range name {
if r == '_' {
if !lastWasSpace {
b.WriteByte(' ')
}
lastWasUpper = false
lastWasSpace = true
continue
}
isUpper := unicode.IsUpper(r)
switch {
case isUpper && !lastWasUpper && !lastWasSpace:
// First upper case rune after lower case non-space rune
// "CamelCase" -> "Camel Case"
b.WriteByte(' ')
case !isUpper && lastWasUpper && beforeLastWasUpper:
// First lower case rune after two upper case runes assumes that
// the upper case part before the last upper case rune is an all upper case acronym
// "HTTPServer" -> "HTTP Server"
s := b.String()
lastR, lenLastR := utf8.DecodeLastRuneInString(s)
if lastR != utf8.RuneError {
b.Reset()
b.WriteString(s[:len(s)-lenLastR])
b.WriteByte(' ')
b.WriteRune(lastR)
}
}
b.WriteRune(r)
beforeLastWasUpper = lastWasUpper
lastWasUpper = isUpper
lastWasSpace = unicode.IsSpace(r)
}
return strings.TrimSpace(b.String())
}
// StringColumnWidths returns the column widths of the passed
// table as count of UTF-8 runes.
// maxCols limits the number of columns to consider,
// if maxCols is -1, then all columns are considered.
func StringColumnWidths(rows [][]string, maxCols int) []int {
if maxCols < 0 {
for _, r := range rows {
maxCols = max(maxCols, len(r))
}
}
if maxCols == 0 {
return nil
}
colWidths := make([]int, maxCols)
for row := range rows {
for col := 0; col < maxCols && col < len(rows[row]); col++ {
numRunes := utf8.RuneCountInString(rows[row][col])
colWidths[col] = max(colWidths[col], numRunes)
}
}
return colWidths
}
// UseTitle returns a function that
// always returns the passed columnTitle.
func UseTitle(columnTitle string) func(fieldName string) (columnTitle string) {
return func(string) string { return columnTitle }
}
// IsNullLike return true if passed reflect.Value
// fulfills any of the following conditions:
// - is not valid
// - nil (of a type that can be nil),
// - is of type struct{},
// - implements the IsNull() bool method which returns true,
// - implements the IsZero() bool method which returns true,
// - implements the driver.Valuer interface which returns nil, nil.
func IsNullLike(val reflect.Value) bool {
// Treat zero value of reflect.Value as nil
if !val.IsValid() {
return true
}
switch val.Kind() {
case reflect.Pointer, reflect.Interface, reflect.Slice, reflect.Map,
reflect.Chan, reflect.Func, reflect.UnsafePointer:
return val.IsNil()
}
// Treat struct{}{} as nil
if val.Type() == typeOfEmptyStruct {
return true
}
if nullable, ok := val.Interface().(interface{ IsNull() bool }); ok && nullable.IsNull() {
return true
}
if zeroable, ok := val.Interface().(interface{ IsZero() bool }); ok && zeroable.IsZero() {
return true
}
if valuer, ok := val.Interface().(driver.Valuer); ok {
if v, e := valuer.Value(); v == nil && e == nil {
return true
}
}
return false
}
// IsStringRowEmpty returns true if all cells in the row
// are empty strings or if the length of the row is zero.
func IsStringRowEmpty(row []string) bool {
for _, cell := range row {
if cell != "" {
return false
}
}
return true
}
func RemoveEmptyStringRows(rows [][]string) [][]string {
for i := len(rows) - 1; i >= 0; i-- {
if IsStringRowEmpty(rows[i]) {
rows = append(rows[:i], rows[i+1:]...)
}
}
return rows
}
// RemoveEmptyStringColumns removes all columns that only contain empty strings
// and returns the new number of columns.
func RemoveEmptyStringColumns(rows [][]string) (numCols int) {
for _, row := range rows {
numCols = max(numCols, len(row))
}
for c := numCols - 1; c >= 0; c-- {
empty := true
for _, row := range rows {
if c < len(row) && row[c] != "" {
empty = false
break
}
}
if empty {
for r, row := range rows {
if c < len(row) {
rows[r] = append(row[:c], row[c+1:]...)
}
}
numCols--
}
}
return numCols
}
func FprintlnView(w io.Writer, view View) error {
rows, err := FormatViewAsStrings(context.Background(), view, nil, OptionAddHeaderRow)
if err != nil {
return err
}
if view.Title() != "" {
_, err = fmt.Fprintf(w, "%s:\n", view.Title())
if err != nil {
return err
}
}
colWidths := StringColumnWidths(rows, -1)
for _, rowStrs := range rows {
for col, colWidth := range colWidths {
switch {
case col == 0:
_, err = w.Write([]byte("| "))
case col < len(colWidths):
_, err = w.Write([]byte(" | "))
}
if err != nil {
return err
}
str := ""
if col < len(rowStrs) {
str = rowStrs[col]
}
_, err = io.WriteString(w, str)
if err != nil {
return err
}
strLen := utf8.RuneCountInString(str)
for i := strLen; i < colWidth; i++ {
_, err = w.Write([]byte{' '})
if err != nil {
return err
}
}
}
_, err = w.Write([]byte(" |\n"))
if err != nil {
return err
}
}
return nil
}
func SprintlnView(w io.Writer, view View) (string, error) {
var b strings.Builder
err := FprintlnView(&b, view)
return b.String(), err
}
func PrintlnView(view View) error {
return FprintlnView(os.Stdout, view)
}
func FprintlnTable(w io.Writer, title string, table any) error {
viewer, err := SelectViewer(table)
if err != nil {
return err
}
view, err := viewer.NewView(title, table)
if err != nil {
return err
}
return FprintlnView(w, view)
}
func SprintlnTable(w io.Writer, title string, table any) (string, error) {
var b strings.Builder
err := FprintlnTable(&b, title, table)
return b.String(), err
}
func PrintlnTable(title string, table any) error {
return FprintlnTable(os.Stdout, title, table)
}