-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreflect.go
380 lines (329 loc) · 7.78 KB
/
reflect.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
//
// Copyright (c) 2020-2021 Markku Rossi
//
// All rights reserved.
//
package tabulate
import (
"encoding"
"fmt"
"reflect"
"sort"
"strings"
)
// Flags control how reflection tabulation operates on different
// values.
type Flags int
// Flag values for reflection tabulation.
const (
OmitEmpty Flags = 1 << iota
InheritHeaders
)
const nilLabel = "<nil>"
// Reflect tabulates the value into the tabulation object. The flags
// control how different values are handled. The tags lists element
// tags which are included in reflection. If the element does not have
// tabulation tag, then it is always included in tabulation.
func Reflect(tab *Tabulate, flags Flags, tags []string, v interface{}) error {
tagMap := make(map[string]bool)
for _, tag := range tags {
tagMap[tag] = true
}
value := reflect.ValueOf(v)
// Follows pointers.
for value.Type().Kind() == reflect.Ptr {
if value.IsZero() {
return nil
}
value = reflect.Indirect(value)
}
if value.Type().Kind() == reflect.Struct {
return reflectStruct(tab, flags, tagMap, value)
}
if value.Type().Kind() == reflect.Map {
return reflectMap(tab, flags, tagMap, value)
}
data, err := reflectValue(tab, flags, tagMap, value)
if err != nil {
return err
}
row := tab.Row()
row.Column("")
row.ColumnData(data)
return nil
}
// Array tabulates the argument v into rows and columns. If the tab
// defines header columns, those will be used. Otherwise the first row
// of v defines the header columns.
func Array(tab *Tabulate, v [][]interface{}) (*Tabulate, error) {
flags := OmitEmpty
tags := make(map[string]bool)
if len(tab.Headers) == 0 {
if len(v) == 0 {
return tab, nil
}
for _, c := range v[0] {
data, err := reflectValue(tab, flags, tags, reflect.ValueOf(c))
if err != nil {
return nil, err
}
tab.HeaderData(data)
}
v = v[1:]
}
for _, r := range v {
row := tab.Row()
for _, c := range r {
data, err := reflectValue(tab, flags, tags, reflect.ValueOf(c))
if err != nil {
return nil, err
}
row.ColumnData(data)
}
}
return tab, nil
}
func reflectValue(tab *Tabulate, flags Flags, tags map[string]bool,
value reflect.Value) (Data, error) {
if value.CanInterface() {
switch v := value.Interface().(type) {
case encoding.TextMarshaler:
data, err := v.MarshalText()
if err != nil {
return nil, err
}
return NewLinesData([]string{string(data)}), nil
}
}
// Resolve interfaces.
for value.Type().Kind() == reflect.Interface {
if value.IsZero() {
if flags&OmitEmpty == 0 {
return NewLinesData([]string{nilLabel}), nil
}
return NewLinesData(nil), nil
}
value = value.Elem()
}
// Follow pointers.
for value.Type().Kind() == reflect.Ptr {
if value.IsZero() {
if flags&OmitEmpty == 0 {
return NewLinesData([]string{nilLabel}), nil
}
}
value = reflect.Indirect(value)
}
switch value.Type().Kind() {
case reflect.Bool:
return NewValue(value.Bool()), nil
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return NewValue(value.Int()), nil
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32,
reflect.Uint64:
return NewValue(value.Uint()), nil
case reflect.Float32, reflect.Float64:
return NewValue(value.Float()), nil
case reflect.Map:
if value.Len() > 0 || flags&OmitEmpty == 0 {
sub := tab.Clone()
if flags&InheritHeaders == 0 {
sub.Headers = nil
}
err := reflectMap(sub, flags, tags, value)
if err != nil {
return nil, err
}
return sub, nil
}
return NewLinesData(nil), nil
case reflect.String:
text := value.String()
lines := strings.Split(strings.TrimRight(text, "\n"), "\n")
return NewLinesData(lines), nil
case reflect.Slice:
// Check slice element type.
switch value.Type().Elem().Kind() {
case reflect.Uint8:
return reflectByteSliceValue(tab, flags, tags, value)
case reflect.Int, reflect.Uint:
return reflectSliceValue(tab, flags, tags, 40, value)
default:
return reflectSliceValue(tab, flags, tags, 0, value)
}
case reflect.Struct:
sub := tab.Clone()
if flags&InheritHeaders == 0 {
sub.Headers = nil
}
err := reflectStruct(sub, flags, tags, value)
if err != nil {
return nil, err
}
return sub, nil
default:
text := value.String()
if len(text) == 0 && flags&OmitEmpty == 1 {
return NewLinesData(nil), nil
}
return NewLinesData([]string{text}), nil
}
}
func reflectByteSliceValue(tab *Tabulate, flags Flags, tags map[string]bool,
value reflect.Value) (Data, error) {
arr, ok := value.Interface().([]byte)
if !ok {
return nil, fmt.Errorf("reflectByteSliceValue called for %T",
value.Type().Kind())
}
const lineLength = 32
var lines []string
for i := 0; i < len(arr); i += lineLength {
l := len(arr) - i
if l > lineLength {
l = lineLength
}
lines = append(lines, fmt.Sprintf("%x", arr[i:i+l]))
}
return NewLinesData(lines), nil
}
func reflectSliceValue(tab *Tabulate, flags Flags, tags map[string]bool,
width int, value reflect.Value) (Data, error) {
data := NewSlice(width)
loop:
for i := 0; i < value.Len(); i++ {
v := value.Index(i)
// Follow pointers.
for v.Type().Kind() == reflect.Ptr {
if v.IsZero() {
if flags&OmitEmpty == 0 {
data.Append(NewText(nilLabel))
}
continue loop
}
v = reflect.Indirect(v)
}
switch v.Type().Kind() {
case reflect.Struct:
sub := tab.Clone()
if flags&InheritHeaders == 0 {
sub.Headers = nil
}
err := reflectStruct(sub, flags, tags, v)
if err != nil {
return nil, err
}
data.Append(sub)
default:
sub, err := reflectValue(tab, flags, tags, v)
if err != nil {
return nil, err
}
data.Append(sub)
}
}
return data, nil
}
type row struct {
key Data
val Data
}
func reflectMap(tab *Tabulate, flags Flags, tags map[string]bool,
v reflect.Value) error {
var rows []row
iter := v.MapRange()
for iter.Next() {
keyData, err := reflectValue(tab, flags, tags, iter.Key())
if err != nil {
return err
}
valData, err := reflectValue(tab, flags, tags, iter.Value())
if err != nil {
return err
}
rows = append(rows, row{
key: keyData,
val: valData,
})
}
sort.Slice(rows, func(i, j int) bool {
di := rows[i].key
dj := rows[j].key
height := di.Height()
if dj.Height() < height {
height = dj.Height()
}
for row := 0; row < height; row++ {
cmp := strings.Compare(di.Content(row), dj.Content(row))
switch cmp {
case -1:
return true
case 1:
return false
}
}
if di.Height() <= dj.Height() {
return true
}
return false
})
for _, r := range rows {
row := tab.Row()
row.ColumnData(r.key)
row.ColumnData(r.val)
}
return nil
}
func reflectStruct(tab *Tabulate, flags Flags, tags map[string]bool,
value reflect.Value) error {
loop:
for i := 0; i < value.NumField(); i++ {
field := value.Type().Field(i)
myFlags := flags
for _, tag := range strings.Split(field.Tag.Get("tabulate"), ",") {
if tag == "omitempty" {
myFlags |= OmitEmpty
} else if strings.HasPrefix(tag, "@") {
// Tagged field. Skip unless filter tags contain it.
if !tags[tag[1:]] {
continue loop
}
}
}
v := value.Field(i)
// Follow pointers.
for v.Type().Kind() == reflect.Ptr {
if v.IsZero() {
if myFlags&OmitEmpty == 0 {
row := tab.Row()
row.Column(field.Name)
}
continue loop
}
v = reflect.Indirect(v)
}
if v.CanInterface() {
switch iv := v.Interface().(type) {
case encoding.TextMarshaler:
data, err := iv.MarshalText()
if err != nil {
return err
}
row := tab.Row()
row.Column(field.Name)
row.Column(string(data))
continue loop
}
}
data, err := reflectValue(tab, flags, tags, v)
if err != nil {
return err
}
if data.Height() > 0 || flags&OmitEmpty == 0 {
row := tab.Row()
row.Column(field.Name)
row.ColumnData(data)
}
}
return nil
}