-
Notifications
You must be signed in to change notification settings - Fork 8
/
slice.go
266 lines (227 loc) · 4.99 KB
/
slice.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
package cvt
import (
"fmt"
"reflect"
)
// Slice convert an interface to a []interface{} type, with default value
func Slice(v interface{}, def ...[]interface{}) []interface{} {
if v, err := SliceE(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return nil
}
// SliceE convert an interface to a []interface{} type
func SliceE(val interface{}) (sl []interface{}, err error) {
if val == nil {
return sl, errUnsupportedTypeNil
}
_, rv := Indirect(val)
switch rv.Kind() {
case reflect.String:
var length = rv.Len()
if length > 0 {
sl = make([]interface{}, length)
for j, vvv := range rv.String() {
sl[j] = vvv
}
}
case reflect.Slice, reflect.Array:
var length = rv.Len()
if length > 0 {
sl = make([]interface{}, length)
for j := 0; j < length; j++ {
sl[j] = rv.Index(j).Interface()
}
}
case reflect.Map:
var length = rv.Len()
if length > 0 {
sl = make([]interface{}, length)
for j, key := range sortedMapKeys(rv) {
sl[j] = rv.MapIndex(key).Interface()
}
}
case reflect.Struct:
sl = deepStructValues(rv)
default:
err = newErr(val, "slice")
}
return
}
// SliceInt convert an interface to a []int type, with default value
func SliceInt(v interface{}, def ...[]int) []int {
if v, err := SliceIntE(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return nil
}
// SliceIntE convert an interface to a []int type
func SliceIntE(val interface{}) (sl []int, err error) {
list, err := SliceE(val)
if err != nil {
return
}
if len(list) > 0 {
var vv int
sl = make([]int, len(list))
for j, v := range list {
vv, err = IntE(v)
if err != nil {
return
}
sl[j] = vv
}
}
return
}
// SliceInt64 convert an interface to a []int64 type, with default value
func SliceInt64(v interface{}, def ...[]int64) []int64 {
if v, err := SliceInt64E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return nil
}
// SliceInt64E convert an interface to a []int64 type
func SliceInt64E(val interface{}) (sl []int64, err error) {
list, err := SliceE(val)
if err != nil {
return
}
if len(list) > 0 {
var vv int64
sl = make([]int64, len(list))
for j, v := range list {
vv, err = Int64E(v)
if err != nil {
return
}
sl[j] = vv
}
}
return
}
// SliceFloat64 convert an interface to a []float64 type, with default value
func SliceFloat64(v interface{}, def ...[]float64) []float64 {
if v, err := SliceFloat64E(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return nil
}
// SliceFloat64E convert an interface to a []float64 type
func SliceFloat64E(val interface{}) (sl []float64, err error) {
list, err := SliceE(val)
if err != nil {
return
}
if len(list) > 0 {
var vv float64
sl = make([]float64, len(list))
for j, v := range list {
vv, err = Float64E(v)
if err != nil {
return
}
sl[j] = vv
}
}
return
}
// SliceString convert an interface to a []string type, with default value
func SliceString(v interface{}, def ...[]string) []string {
if v, err := SliceStringE(v); err == nil {
return v
}
if len(def) > 0 {
return def[0]
}
return nil
}
// SliceStringE convert an interface to a []string type
func SliceStringE(val interface{}) (sl []string, err error) {
list, err := SliceE(val)
if err != nil {
return
}
if len(list) > 0 {
var vv string
sl = make([]string, len(list))
for j, v := range list {
vv, err = StringE(v)
if err != nil {
return
}
sl[j] = vv
}
}
return
}
// ColumnsE return the values from a single column in the input array/slice/map of struct/map
func ColumnsE(val interface{}, field interface{}) (sl []interface{}, err error) {
if val == nil {
return nil, errUnsupportedTypeNil
}
_, rv := Indirect(val)
switch rv.Kind() {
case reflect.Slice, reflect.Array:
var vv interface{}
for j := 0; j < rv.Len(); j++ {
vv, err = FieldE(rv.Index(j).Interface(), field)
if err != nil {
return nil, fmt.Errorf("unsupported type: %s", rv.Type().String())
}
sl = append(sl, vv)
}
case reflect.Map:
var vv interface{}
for _, key := range sortedMapKeys(rv) {
vv, err = FieldE(rv.MapIndex(key).Interface(), field)
if err != nil {
return nil, fmt.Errorf("unsupported type: %s", rv.Type().String())
}
sl = append(sl, vv)
}
default:
return nil, fmt.Errorf("unsupported type: %s", rv.Type().String())
}
return
}
// KeysE return the keys of map, sorted by asc; or fields of struct
func KeysE(val interface{}) (sl []interface{}, err error) {
if val == nil {
return nil, errUnsupportedTypeNil
}
_, rv := Indirect(val)
switch rv.Kind() {
case reflect.Map:
var length = rv.Len()
if length > 0 {
sl = make([]interface{}, length)
for j, key := range sortedMapKeys(rv) {
sl[j] = key.Interface()
}
}
case reflect.Struct:
fs := deepStructFields(rv.Type())
if len(fs) > 0 {
sl = make([]interface{}, len(fs))
for j, v := range fs {
sl[j] = v
}
}
default:
err = fmt.Errorf("unsupported type: %s", rv.Type().Name())
}
return
}