-
Notifications
You must be signed in to change notification settings - Fork 0
/
err.go
100 lines (86 loc) · 2.02 KB
/
err.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
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
package ctxroutines
import (
"context"
"sync"
)
// CancelAll creates a function that calls Cancel() for every Runner of rs
func CancelAll(rs ...Runner) context.CancelFunc {
return func() {
for _, r := range rs {
r.Cancel()
}
}
}
// Run runs every Runner of rs in separated goroutine, blocks til done, and returns all result
func Run(rs ...Runner) (err []error) {
wg := sync.WaitGroup{}
l := len(rs)
wg.Add(l)
err = make([]error, l)
for idx, r := range rs {
go func(idx int, r Runner) {
err[idx] = r.Run()
wg.Done()
}(idx, r)
}
wg.Wait()
return
}
// FirstErr creates a Runner that runs every Runner of rs in order, until first error occured
func FirstErr(rs ...Runner) (ret Runner) {
return FuncRunner(CancelAll(rs...), func() (err error) {
for _, r := range rs {
if err = r.Run(); err != nil {
return
}
}
return
})
}
// SomeErr creates a Runner runs every Runner of rs, and returns an error if there's one
//
// - It checks error by the order of rs
// - Returns first non-context.Canceled error
// - Returns context.Canceled if no other errors
// - Returns nil if everything's fine
func SomeErr(rs ...Runner) (ret Runner) {
return FuncRunner(CancelAll(rs...), func() (err error) {
errs := Run(rs...)
canceled := false
for _, err = range errs {
if err == context.Canceled {
canceled = true
continue
}
if err != nil {
return
}
}
if canceled {
err = context.Canceled
}
return
})
}
// AnyErr creates a Runner that returns first known error.
func AnyErr(rs ...Runner) (ret Runner) {
return FuncRunner(CancelAll(rs...), func() (err error) {
ch := make(chan error, 1)
for _, r := range rs {
go func(r Runner) {
ch <- r.Run()
}(r)
}
for range rs {
e := <-ch
if err != nil || e == nil {
continue
}
err = e
}
return
})
}