-
Notifications
You must be signed in to change notification settings - Fork 3
/
parallel.go
79 lines (69 loc) · 1.59 KB
/
parallel.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
package goroutine
import (
"sync"
"golang.org/x/sync/errgroup"
)
// ParallelWithError ...
func ParallelWithError(fns ...func() error) func() error {
return func() error {
eg := errgroup.Group{}
for _, fn := range fns {
eg.Go(fn)
}
return eg.Wait()
}
}
// ParallelWithErrorChan calls the passed functions in a goroutine, returns a chan of errors.
// fns会并发执行,chan error
func ParallelWithErrorChan(fns ...func() error) chan error {
total := len(fns)
errs := make(chan error, total)
var wg sync.WaitGroup
wg.Add(total)
go func(errs chan error) {
wg.Wait()
close(errs)
}(errs)
for _, fn := range fns {
go func(fn func() error, errs chan error) {
defer wg.Done()
errs <- try(fn, nil)
}(fn, errs)
}
return errs
}
// RestrictParallelWithErrorChan calls the passed functions in a goroutine, limiting the number of goroutines running at the same time,
// returns a chan of errors.
func RestrictParallelWithErrorChan(concurrency int, fns ...func() error) chan error {
total := len(fns)
if concurrency <= 0 {
concurrency = 1
}
if concurrency > total {
concurrency = total
}
var wg sync.WaitGroup
errs := make(chan error, total)
jobs := make(chan func() error, concurrency)
wg.Add(concurrency)
for i := 0; i < concurrency; i++ {
//consumer
go func(jobs chan func() error, errs chan error) {
defer wg.Done()
for fn := range jobs {
errs <- try(fn, nil)
}
}(jobs, errs)
}
go func(errs chan error) {
//producer
for _, fn := range fns {
jobs <- fn
}
close(jobs)
//wait for block errs
wg.Wait()
close(errs)
}(errs)
return errs
}