-
Notifications
You must be signed in to change notification settings - Fork 8
/
fungen.go
568 lines (508 loc) · 17.1 KB
/
fungen.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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
package main
import (
"flag"
"fmt"
"go/format"
"io/ioutil"
"log"
"os"
"strings"
)
//go:generate $GOPATH/bin/fungen -types "Generator" -methods Filter,Each
// Generator - one generator (function and information about generate)
type Generator struct {
name string
method func(_, _, _, _ string) string
needSync bool
needMapToMap bool
}
var (
packageName = flag.String("package", "main", "(Optional) Name of the package.")
types = flag.String("types", "", "Comma-separated list of type names, eg. 'int,string,CustomType'. The values can themselves be colon (:) separated to specify the names of entities in the generated, eg: int:I,string:Str,CustomType:CT.")
methods = flag.String("methods", "", "Comma-separated list of methods to generate, eg 'Map,Filter'. By default generate all methods.")
outputName = flag.String("filename", "fungen_auto.go", "(Optional) Filename for generated package.")
testrun = flag.Bool("test", false, "whether to display the generated code instead of writing out to a file.")
generators = GeneratorList{
{
name: "Map",
method: getMapFunction,
needSync: false,
needMapToMap: true,
},
{
name: "PMap",
method: getPMapFunction,
needSync: true,
needMapToMap: true,
},
{
name: "Filter",
method: getFilterFunction,
needSync: false,
},
{
name: "PFilter",
method: getPFilterFunction,
needSync: true,
},
{
name: "Reduce",
method: getReduceFunction,
},
{
name: "ReduceRight",
method: getReduceRightFunction,
},
{
name: "Take",
method: getTakeFunction,
},
{
name: "TakeWhile",
method: getTakeWhileFunction,
},
{
name: "Drop",
method: getDropFunction,
},
{
name: "DropWhile",
method: getDropWhileFunction,
},
{
name: "Each",
method: getEachFunction,
},
{
name: "EachI",
method: getEachIFunction,
},
{
name: "All",
method: getAllFunction,
},
{
name: "Any",
method: getAnyFunction,
},
{
name: "FilterMap",
method: getFilterMapFunction,
needSync: false,
needMapToMap: true,
},
{
name: "PFilterMap",
method: getPFilterMapFunction,
needSync: true,
needMapToMap: true,
},
}
)
func usage() {
fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0])
fmt.Fprintf(os.Stderr, "\tgen -package packageName -types Types\n")
fmt.Fprintf(os.Stderr, "Example:\n")
fmt.Fprintf(os.Stderr, "'fungen -package mypackage -types string,int,customType,AnotherType' will create types 'stringList []string, intList []int, customTypeList []customType, AnotherTypeList []AnotherType' with the Map, Filter, Reduce, ReduceRight, Take, TakeWhile, Drop, DropWhile, Each, EachI methods on them. Additionally, methods named MapType1Type2 will be generated on these types for the remaining types. The package of the generated file will be 'mypackage' \n\n")
fmt.Fprintf(os.Stderr, "'fungen -types string,int:I,customType:CT,AnotherType:At' will create types 'stringList []string, IList []int, CTList []customType, AtList []AnotherType'. The 'stringList' type will have the Map, Filter, Reduce, ReduceRight, Take, TakeWhile, Drop, DropWhile, Each, EachI methods on it. Additionally, it will also have MapI, MapCt and MapAt methods. The package of the generated file will be 'main' \n\n")
fmt.Fprintf(os.Stderr, "'fungen -methods Map,Filter -types int' will create types 'intList []int' with the Map, Filter methods on them.\n\n")
fmt.Fprintf(os.Stderr, "Flags:\n")
flag.PrintDefaults()
}
func main() {
flag.Usage = usage
flag.Parse()
if len(*types) == 0 {
flag.Usage()
os.Exit(2)
}
methodsMap := getMethodsMap(*methods)
importSync := ""
needImportSync := len(generators.Filter(func(gen Generator) bool {
selectedMethod, _ := methodsMap[gen.name]
return selectedMethod && gen.needSync
})) > 0
if needImportSync {
importSync = `import "sync"`
}
src := fmt.Sprintf(`// Package %[1]s - generated by fungen; DO NOT EDIT
package %[1]s
%[2]s
`, *packageName, importSync)
typeMap := getTypeMap(*types)
for k1, v1 := range typeMap {
if v1[:1] == "*" {
src += generate(k1, v1[1:]+"List", typeMap, methodsMap)
} else {
src += generate(k1, v1+"List", typeMap, methodsMap)
}
src = f(src)
}
if *testrun {
fmt.Println(*outputName)
fmt.Println(src)
} else {
err := ioutil.WriteFile(*outputName, []byte(src), 0644)
if err != nil {
log.Fatalf("writing output: %s", err)
}
}
}
func f(s string) string {
formatted, err := format.Source([]byte(s))
if err != nil {
log.Fatal(err)
}
return string(formatted)
}
func getFileNameForTypes(t string, m map[string]string) string {
if len(m) == 0 {
return t
}
s := t
for k, v := range m {
if t == k {
continue
}
s += "_" + v
}
return s
}
func getTypeMap(targets string) map[string]string {
m := map[string]string{}
if targets == "" {
return m
}
targetParts := strings.Split(targets, ",")
for _, t := range targetParts {
tParts := strings.Split(t, ":")
if len(tParts) == 1 {
m[tParts[0]] = tParts[0]
} else {
m[tParts[0]] = tParts[1]
}
}
return m
}
// getMethodsMap - get selected methods from -methods option, or return all methods
func getMethodsMap(methodsStr string) map[string]bool {
result := map[string]bool{}
if methodsStr == "" {
generators.Each(func(gen Generator) {
result[gen.name] = true
})
return result
}
validMethods := map[string]bool{}
generators.Each(func(gen Generator) {
validMethods[gen.name] = true
})
for _, method := range strings.Split(methodsStr, ",") {
if _, ok := validMethods[method]; ok {
result[method] = true
} else {
log.Fatalf("Error: -method parameter '%s' is not valid", method)
}
}
return result
}
func generate(typeName, listname string, m map[string]string, methodsMap map[string]bool) string {
code := fmt.Sprintf(`
// %[2]s is the type for a list that holds members of type %[1]s
type %[2]s []%[1]s
`, typeName, listname)
generators.Filter(func(gen Generator) bool {
_, ok := methodsMap[gen.name]
return ok
}).Each(func(gen Generator) {
if gen.needMapToMap {
for k, v := range m {
targetTypeName := v
if k == typeName {
targetTypeName = ""
}
code += gen.method(listname, typeName, k, targetTypeName)
}
} else {
code += gen.method(listname, typeName, "", "")
}
})
return code
}
func getMapFunction(listName, typeName, targetType, targetTypeName string) string {
targetListName := targetType + "List"
if targetTypeName == "" {
targetListName = listName
} else if targetTypeName[:1] == "*" {
targetTypeName = targetTypeName[1:]
}
if targetListName[:1] == "*" {
targetListName = targetListName[1:]
}
return fmt.Sprintf(`
// Map%[4]s is a method on %[1]s that takes a function of type %[2]s -> %[3]s and applies it to every member of %[1]s
func (l %[1]s) Map%[4]s(f func(%[2]s) %[3]s) %[5]s {
l2 := make(%[5]s, len(l))
for i, t := range l {
l2[i] = f(t)
}
return l2
}
`, listName, typeName, targetType, strings.Title(targetTypeName), targetListName)
}
func getPMapFunction(listName, typeName, targetType, targetTypeName string) string {
targetListName := targetType + "List"
if targetTypeName == "" {
targetListName = listName
} else if targetTypeName[:1] == "*" {
targetTypeName = targetTypeName[1:]
}
if targetListName[:1] == "*" {
targetListName = targetListName[1:]
}
return fmt.Sprintf(`
// PMap%[4]s is similar to Map%[4]s except that it executes the function on each member in parallel.
func (l %[1]s) PMap%[4]s(f func(%[2]s) %[3]s) %[5]s {
wg := sync.WaitGroup{}
l2 := make(%[5]s, len(l))
for i, t := range l {
wg.Add(1)
go func(i int, t %[2]s){
l2[i] = f(t)
wg.Done()
}(i, t)
}
wg.Wait()
return l2
}
`, listName, typeName, targetType, strings.Title(targetTypeName), targetListName)
}
func getFilterFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// Filter is a method on %[1]s that takes a function of type %[2]s -> bool returns a list of type %[1]s which contains all members from the original list for which the function returned true
func (l %[1]s) Filter(f func(%[2]s) bool) %[1]s {
l2 := []%[2]s{}
for _, t := range l {
if f(t) {
l2 = append(l2, t)
}
}
return l2
}
`, listName, typeName)
}
func getPFilterFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// PFilter is similar to the Filter method except that the filter is applied to all the elements in parallel. The order of resulting elements cannot be guaranteed.
func (l %[1]s) PFilter(f func(%[2]s) bool) %[1]s {
wg := sync.WaitGroup{}
mutex := sync.Mutex{}
l2 := []%[2]s{}
for _, t := range l {
wg.Add(1)
go func(t %[2]s){
if f(t) {
mutex.Lock()
l2 = append(l2, t)
mutex.Unlock()
}
wg.Done()
}(t)
}
wg.Wait()
return l2
}
`, listName, typeName)
}
func getEachFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// Each is a method on %[1]s that takes a function of type %[2]s -> void and applies the function to each member of the list and then returns the original list.
func (l %[1]s) Each(f func(%[2]s)) %[1]s {
for _, t := range l {
f(t)
}
return l
}
`, listName, typeName)
}
func getEachIFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// EachI is a method on %[1]s that takes a function of type (int, %[2]s) -> void and applies the function to each member of the list and then returns the original list. The int parameter to the function is the index of the element.
func (l %[1]s) EachI(f func(int, %[2]s)) %[1]s {
for i, t := range l {
f(i, t)
}
return l
}
`, listName, typeName)
}
func getDropWhileFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// DropWhile is a method on %[1]s that takes a function of type %[2]s -> bool and returns a list of type %[1]s which excludes the first members from the original list for which the function returned true
func (l %[1]s) DropWhile(f func(%[2]s) bool) %[1]s {
for i, t := range l {
if !f(t) {
return l[i:]
}
}
var l2 %[1]s
return l2
}
`, listName, typeName)
}
func getTakeWhileFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// TakeWhile is a method on %[1]s that takes a function of type %[2]s -> bool and returns a list of type %[1]s which includes only the first members from the original list for which the function returned true
func (l %[1]s) TakeWhile(f func(%[2]s) bool) %[1]s {
for i, t := range l {
if !f(t) {
return l[:i]
}
}
return l
}
`, listName, typeName)
}
func getTakeFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// Take is a method on %[1]s that takes an integer n and returns the first n elements of the original list. If the list contains fewer than n elements then the entire list is returned.
func (l %[1]s) Take(n int) %[1]s {
if len(l) >= n {
return l[:n]
}
return l
}
`, listName, typeName)
}
func getDropFunction(listName, typeName, _, _ string) string {
return fmt.Sprintf(`
// Drop is a method on %[1]s that takes an integer n and returns all but the first n elements of the original list. If the list contains fewer than n elements then an empty list is returned.
func (l %[1]s) Drop(n int) %[1]s {
if len(l) >= n {
return l[n:]
}
var l2 %[1]s
return l2
}
`, listName, typeName)
}
func getReduceFunction(listName, typename, _, _ string) string {
return fmt.Sprintf(`
// Reduce is a method on %[1]s that takes a function of type (%[2]s, %[2]s) -> %[2]s and returns a %[2]s which is the result of applying the function to all members of the original list starting from the first member
func (l %[1]s) Reduce(t1 %[2]s, f func(%[2]s, %[2]s) %[2]s) %[2]s {
for _, t := range l {
t1 = f(t1, t)
}
return t1
}
`, listName, typename)
}
func getReduceRightFunction(listName, typename, _, _ string) string {
return fmt.Sprintf(`
// ReduceRight is a method on %[1]s that takes a function of type (%[2]s, %[2]s) -> %[2]s and returns a %[2]s which is the result of applying the function to all members of the original list starting from the last member
func (l %[1]s) ReduceRight(t1 %[2]s, f func(%[2]s, %[2]s) %[2]s) %[2]s {
for i := len(l) - 1; i >= 0; i-- {
t := l[i]
t1 = f(t, t1)
}
return t1
}
`, listName, typename)
}
func getAllFunction(listName, typename, _, _ string) string {
return fmt.Sprintf(`
// All is a method on %[1]s that returns true if all the members of the list satisfy a function or if the list is empty.
func (l %[1]s) All(f func(%[2]s) bool) bool {
for _, t := range l {
if !f(t) {
return false
}
}
return true
}
`, listName, typename)
}
func getAnyFunction(listName, typename, _, _ string) string {
return fmt.Sprintf(`
// Any is a method on %[1]s that returns true if at least one member of the list satisfies a function. It returns false if the list is empty.
func (l %[1]s) Any(f func(%[2]s) bool) bool {
for _, t := range l {
if f(t) {
return true
}
}
return false
}
`, listName, typename)
}
func getFilterMapFunction(listName, typeName, targetType, targetTypeName string) string {
if targetTypeName == "" {
//there's no need for a FilterMap function for the same time as the filter function suffices
return ""
} else if targetTypeName[:1] == "*" {
targetTypeName = targetTypeName[1:]
}
targetListName := targetType + "List"
if targetListName[:1] == "*" {
targetListName = targetListName[1:]
}
return fmt.Sprintf(`
// FilterMap%[4]s is a method on %[1]s that applies the filter(s) and map to the list members in a single loop and returns the resulting list.
func (l %[1]s) FilterMap%[4]s(fMap func(%[2]s) %[3]s, fFilters ...func(%[2]s) bool) %[5]s {
l2 := %[5]s{}
for _, t := range l {
pass := true
for _, f := range fFilters {
if !f(t){
pass = false
break
}
}
if pass {
l2 = append(l2, fMap(t))
}
}
return l2
}
`, listName, typeName, targetType, strings.Title(targetTypeName), targetListName)
}
func getPFilterMapFunction(listName, typeName, targetType, targetTypeName string) string {
if targetTypeName == "" {
//there's no need for a PFilterMap function for the same time as the pfilter function suffices
return ""
} else if targetTypeName[:1] == "*" {
targetTypeName = targetTypeName[1:]
}
targetListName := targetType + "List"
if targetListName[:1] == "*" {
targetListName = targetListName[1:]
}
return fmt.Sprintf(`
// PFilterMap%[4]s is similar to FilterMap%[4]s except that it executes the method on each member in parallel.
func (l %[1]s) PFilterMap%[4]s(fMap func(%[2]s) %[3]s, fFilters ...func(%[2]s) bool) %[5]s {
l2 := %[5]s{}
mutex := sync.Mutex{}
wg := sync.WaitGroup{}
wg.Add(len(l))
for _, t := range l {
go func(t %[2]s){
pass := true
for _, f := range fFilters {
if !f(t) {
pass = false
break
}
}
if pass {
mutex.Lock()
l2 = append(l2, fMap(t))
mutex.Unlock()
}
wg.Done()
}(t)
}
wg.Wait()
return l2
}
`, listName, typeName, targetType, strings.Title(targetTypeName), targetListName)
}