forked from thoas/go-funk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform.go
396 lines (280 loc) · 9.28 KB
/
transform.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
package funk
import (
"fmt"
"math/rand"
"reflect"
)
// Chunk creates an array of elements split into groups with the length of size.
// If array can't be split evenly, the final chunk will be
// the remaining element.
func Chunk(arr interface{}, size int) interface{} {
if !IsIteratee(arr) {
panic("First parameter must be neither array nor slice")
}
if size == 0 {
return arr
}
arrValue := reflect.ValueOf(arr)
arrType := arrValue.Type()
resultSliceType := reflect.SliceOf(arrType)
// Initialize final result slice which will contains slice
resultSlice := reflect.MakeSlice(resultSliceType, 0, 0)
itemType := arrType.Elem()
var itemSlice reflect.Value
itemSliceType := reflect.SliceOf(itemType)
length := arrValue.Len()
for i := 0; i < length; i++ {
if i%size == 0 || i == 0 {
if itemSlice.Kind() != reflect.Invalid {
resultSlice = reflect.Append(resultSlice, itemSlice)
}
itemSlice = reflect.MakeSlice(itemSliceType, 0, 0)
}
itemSlice = reflect.Append(itemSlice, arrValue.Index(i))
if i == length-1 {
resultSlice = reflect.Append(resultSlice, itemSlice)
}
}
return resultSlice.Interface()
}
// ToMap transforms a slice of instances to a Map.
// []*Foo => Map<int, *Foo>
func ToMap(in interface{}, pivot string) interface{} {
value := reflect.ValueOf(in)
// input value must be a slice
if value.Kind() != reflect.Slice {
panic(fmt.Sprintf("%v must be a slice", in))
}
inType := value.Type()
structType := inType.Elem()
// retrieve the struct in the slice to deduce key type
if structType.Kind() == reflect.Ptr {
structType = structType.Elem()
}
field, _ := structType.FieldByName(pivot)
// value of the map will be the input type
collectionType := reflect.MapOf(field.Type, inType.Elem())
// create a map from scratch
collection := reflect.MakeMap(collectionType)
for i := 0; i < value.Len(); i++ {
instance := value.Index(i)
var field reflect.Value
if instance.Kind() == reflect.Ptr {
field = instance.Elem().FieldByName(pivot)
} else {
field = instance.FieldByName(pivot)
}
collection.SetMapIndex(field, instance)
}
return collection.Interface()
}
func mapSlice(arrValue reflect.Value, funcValue reflect.Value) interface{} {
funcType := funcValue.Type()
if funcType.NumIn() != 1 || funcType.NumOut() == 0 || funcType.NumOut() > 2 {
panic("Map function with an array must have one parameter and must return one or two parameters")
}
arrElemType := arrValue.Type().Elem()
// Checking whether element type is convertible to function's first argument's type.
if !arrElemType.ConvertibleTo(funcType.In(0)) {
panic("Map function's argument is not compatible with type of array.")
}
if funcType.NumOut() == 1 {
// Get slice type corresponding to function's return value's type.
resultSliceType := reflect.SliceOf(funcType.Out(0))
// MakeSlice takes a slice kind type, and makes a slice.
resultSlice := reflect.MakeSlice(resultSliceType, 0, 0)
for i := 0; i < arrValue.Len(); i++ {
result := funcValue.Call([]reflect.Value{arrValue.Index(i)})[0]
resultSlice = reflect.Append(resultSlice, result)
}
return resultSlice.Interface()
}
if funcType.NumOut() == 2 {
// value of the map will be the input type
collectionType := reflect.MapOf(funcType.Out(0), funcType.Out(1))
// create a map from scratch
collection := reflect.MakeMap(collectionType)
for i := 0; i < arrValue.Len(); i++ {
results := funcValue.Call([]reflect.Value{arrValue.Index(i)})
collection.SetMapIndex(results[0], results[1])
}
return collection.Interface()
}
return nil
}
func mapMap(arrValue reflect.Value, funcValue reflect.Value) interface{} {
funcType := funcValue.Type()
if funcType.NumIn() != 2 || funcType.NumOut() == 0 || funcType.NumOut() > 2 {
panic("Map function with a map must have two parameters and must return one or two parameters")
}
// Only one returned parameter, should be a slice
if funcType.NumOut() == 1 {
// Get slice type corresponding to function's return value's type.
resultSliceType := reflect.SliceOf(funcType.Out(0))
// MakeSlice takes a slice kind type, and makes a slice.
resultSlice := reflect.MakeSlice(resultSliceType, 0, 0)
for _, key := range arrValue.MapKeys() {
results := funcValue.Call([]reflect.Value{key, arrValue.MapIndex(key)})
result := results[0]
resultSlice = reflect.Append(resultSlice, result)
}
return resultSlice.Interface()
}
// two parameters, should be a map
if funcType.NumOut() == 2 {
// value of the map will be the input type
collectionType := reflect.MapOf(funcType.Out(0), funcType.Out(1))
// create a map from scratch
collection := reflect.MakeMap(collectionType)
for _, key := range arrValue.MapKeys() {
results := funcValue.Call([]reflect.Value{key, arrValue.MapIndex(key)})
collection.SetMapIndex(results[0], results[1])
}
return collection.Interface()
}
return nil
}
// Map manipulates an iteratee and transforms it to another type.
func Map(arr interface{}, mapFunc interface{}) interface{} {
if !IsIteratee(arr) {
panic("First parameter must be an iteratee")
}
if !IsFunction(mapFunc) {
panic("Second argument must be function")
}
var (
funcValue = reflect.ValueOf(mapFunc)
arrValue = reflect.ValueOf(arr)
arrType = arrValue.Type()
)
kind := arrType.Kind()
if kind == reflect.Slice || kind == reflect.Array {
return mapSlice(arrValue, funcValue)
}
if kind == reflect.Map {
return mapMap(arrValue, funcValue)
}
panic(fmt.Sprintf("Type %s is not supported by Map", arrType.String()))
}
// FlattenDeep recursively flattens array.
func FlattenDeep(out interface{}) interface{} {
return flattenDeep(reflect.ValueOf(out)).Interface()
}
func flattenDeep(value reflect.Value) reflect.Value {
sliceType := sliceElem(value.Type())
resultSlice := reflect.MakeSlice(reflect.SliceOf(sliceType), 0, 0)
return flatten(value, resultSlice)
}
func flatten(value reflect.Value, result reflect.Value) reflect.Value {
length := value.Len()
for i := 0; i < length; i++ {
item := value.Index(i)
kind := item.Kind()
if kind == reflect.Slice || kind == reflect.Array {
result = flatten(item, result)
} else {
result = reflect.Append(result, item)
}
}
return result
}
// Shuffle creates an array of shuffled values
func Shuffle(in interface{}) interface{} {
value := reflect.ValueOf(in)
valueType := value.Type()
kind := value.Kind()
if kind == reflect.Array || kind == reflect.Slice {
length := value.Len()
resultSlice := makeSlice(value, length)
for i, v := range rand.Perm(length) {
resultSlice.Index(i).Set(value.Index(v))
}
return resultSlice.Interface()
}
panic(fmt.Sprintf("Type %s is not supported by Shuffle", valueType.String()))
}
// Reverse transforms an array the first element will become the last,
// the second element will become the second to last, etc.
func Reverse(in interface{}) interface{} {
value := reflect.ValueOf(in)
valueType := value.Type()
kind := value.Kind()
if kind == reflect.String {
return ReverseString(in.(string))
}
if kind == reflect.Array || kind == reflect.Slice {
length := value.Len()
resultSlice := makeSlice(value, length)
j := 0
for i := length - 1; i >= 0; i-- {
resultSlice.Index(j).Set(value.Index(i))
j++
}
return resultSlice.Interface()
}
panic(fmt.Sprintf("Type %s is not supported by Reverse", valueType.String()))
}
// Uniq creates an array with unique values.
func Uniq(in interface{}) interface{} {
value := reflect.ValueOf(in)
valueType := value.Type()
kind := value.Kind()
if kind == reflect.Array || kind == reflect.Slice {
length := value.Len()
result := makeSlice(value, 0)
seen := make(map[interface{}]bool, length)
j := 0
for i := 0; i < length; i++ {
val := value.Index(i)
v := val.Interface()
if _, ok := seen[v]; ok {
continue
}
seen[v] = true
result = reflect.Append(result, val)
j++
}
return result.Interface()
}
panic(fmt.Sprintf("Type %s is not supported by Uniq", valueType.String()))
}
// ConvertSlice converts a slice type to another,
// a perfect example would be to convert a slice of struct to a slice of interface.
func ConvertSlice(in interface{}, out interface{}) {
srcValue := reflect.ValueOf(in)
dstValue := reflect.ValueOf(out)
if dstValue.Kind() != reflect.Ptr {
panic("Second argument must be a pointer")
}
dstValue = dstValue.Elem()
if srcValue.Kind() != reflect.Slice && srcValue.Kind() != reflect.Array {
panic("First argument must be an array or slice")
}
if dstValue.Kind() != reflect.Slice && dstValue.Kind() != reflect.Array {
panic("Second argument must be an array or slice")
}
// returns value that points to dstValue
direct := reflect.Indirect(dstValue)
length := srcValue.Len()
for i := 0; i < length; i++ {
dstValue = reflect.Append(dstValue, srcValue.Index(i))
}
direct.Set(dstValue)
}
// Drop creates an array/slice with `n` elements dropped from the beginning.
func Drop(in interface{}, n int) interface{} {
value := reflect.ValueOf(in)
valueType := value.Type()
kind := value.Kind()
if kind == reflect.Array || kind == reflect.Slice {
length := value.Len()
resultSlice := makeSlice(value, length-n)
j := 0
for i := n; i < length; i++ {
resultSlice.Index(j).Set(value.Index(i))
j++
}
return resultSlice.Interface()
}
panic(fmt.Sprintf("Type %s is not supported by Drop", valueType.String()))
}