This repository was archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmap.go
159 lines (127 loc) · 3.3 KB
/
map.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
package tableprinter
import (
"fmt"
"reflect"
)
// Should we have a single parser value its specific types and give input arguments to the funcs, like "keys"
// or is better to initialize a new parser on each output, so it can be used as a cache?
type mapParser struct {
TagsOnly bool
}
func (p *mapParser) Parse(v reflect.Value, filters []RowFilter) ([]string, [][]string, []int) {
keys := p.Keys(v)
if len(keys) == 0 {
return nil, nil, nil
}
headers := p.ParseHeaders(v, keys)
rows, numbers := p.ParseRows(v, keys, filters)
return headers, rows, numbers
}
func (p *mapParser) Keys(v reflect.Value) []reflect.Value {
return v.MapKeys()
}
func extendSlice(slice reflect.Value, typ reflect.Type, max int) reflect.Value {
if slice.Len() == max {
return slice
}
empty := reflect.New(typ).Elem()
if slice.Len() == 0 {
for max > 0 {
slice = reflect.Append(slice, empty)
max--
}
return slice
}
for max > slice.Len() {
slice = reflect.Append(slice, empty)
}
return slice
}
func (p *mapParser) ParseRows(v reflect.Value, keys []reflect.Value, filters []RowFilter) ([][]string, []int) {
// cursors := make(map[int]int) // key = map's key index(although maps don't keep order), value = current index of elements inside the map.
maxLength := maxMapElemLength(v, keys)
rows := make([][]string, maxLength)
// depends on the header size, this is for the entire col aligment but
// we can't do that on `GetHeaders` because its values depends on the rows[index] value's type to the table.
numbers := make([]int, 0)
for _, key := range keys {
elem := v.MapIndex(key)
if elem.Kind() != reflect.Slice {
if !CanAcceptRow(elem, filters) {
continue
}
a, row := extractCells(0, emptyHeader, elem, p.TagsOnly)
if len(row) == 0 {
continue
}
if cap(rows) == 0 {
rows = [][]string{row}
} else {
rows[0] = append(rows[0], row...)
}
numbers = append(numbers, a...)
continue
}
n := elem.Len()
if n == 0 {
continue
}
if elem.Len() < maxLength {
elem = extendSlice(elem, elem.Index(0).Type(), maxLength)
}
for i, n := 0, elem.Len(); i < n; i++ {
item := elem.Index(i)
if !CanAcceptRow(item, filters) {
continue
}
a, row := extractCells(i, emptyHeader, item, p.TagsOnly)
if len(row) == 0 {
continue
}
rows[i] = append(rows[i], row...)
numbers = append(numbers, a...)
}
}
return rows, numbers
}
func (p *mapParser) ParseHeaders(v reflect.Value, keys []reflect.Value) (headers []string) {
if len(keys) == 0 {
return nil
}
for _, key := range keys {
// support any type, even if it's declared as "interface{}" or pointer to something, we care about this "something"'s value.
key = indirectValue(key)
if !key.CanInterface() {
continue
}
if header := stringValue(key); header != "" {
headers = append(headers, header)
}
}
return
}
func maxMapElemLength(v reflect.Value, keys []reflect.Value) (max int) {
for _, key := range keys {
elem := v.MapIndex(key)
if elem.Kind() != reflect.Slice {
continue
}
if current := elem.Len(); current > max {
max = current
}
}
return
}
func stringValue(key reflect.Value) string {
if !key.CanInterface() {
return ""
}
switch keyV := key.Interface().(type) {
case string:
return keyV
case fmt.Stringer:
return keyV.String()
default:
return ""
}
}