-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmerger.go
58 lines (51 loc) · 1.12 KB
/
merger.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
package pipe
import (
"context"
"sync"
)
type (
// errorMerger allows to listen to multiple error channels.
errorMerger struct {
ctx context.Context
wg sync.WaitGroup
errorChan chan error
}
)
func newErrorMerger(ctx context.Context) *errorMerger {
return &errorMerger{
ctx: ctx,
errorChan: make(chan error, 1),
}
}
// add error channels from all components into one.
func (m *errorMerger) add(e executor) {
errc := start(m.ctx, e)
// function to wait for error channel
m.wg.Add(1)
go m.listen(errc)
}
// listen blocks until error is received or channel is closed.
func (m *errorMerger) listen(ec <-chan error) {
if err, ok := <-ec; ok {
select {
case m.errorChan <- err:
default:
}
}
m.wg.Done()
}
// wait waits for all underlying error channels to be closed and then
// closes the output error channels.
func (m *errorMerger) wait() {
m.wg.Wait()
close(m.errorChan)
}
// TODO: merge all errors
// TODO: distinguish context timeout error
func (m *errorMerger) drain() {
// wait until all groutines stop.
// only the first error is propagated.
for range m.errorChan {
break
}
}