-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathworker.go
147 lines (115 loc) · 2.59 KB
/
worker.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
package background
import (
"context"
"errors"
"runtime/pprof"
"sync"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/empty"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xcontext"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xerrors"
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xsync"
)
//nolint:goerr113
var (
ErrAlreadyClosed = xerrors.Wrap(errors.New("ydb: background worker already closed"))
errClosedWithNilReason = xerrors.Wrap(errors.New("ydb: background worker closed with nil reason"))
)
// A Worker must not be copied after first use
type Worker struct {
ctx context.Context //nolint:containedctx
workers sync.WaitGroup
closeReason error
tasksCompleted empty.Chan
tasks chan backgroundTask
stop context.CancelFunc
onceInit sync.Once
m xsync.Mutex
closed bool
}
type CallbackFunc func(ctx context.Context)
func NewWorker(parent context.Context) *Worker {
w := Worker{}
w.ctx, w.stop = xcontext.WithCancel(parent)
return &w
}
func (b *Worker) Context() context.Context {
b.init()
return b.ctx
}
func (b *Worker) Start(name string, f CallbackFunc) {
b.init()
b.m.WithLock(func() {
if b.closed {
return
}
b.tasks <- backgroundTask{
callback: f,
name: name,
}
})
}
func (b *Worker) Done() <-chan struct{} {
b.init()
return b.ctx.Done()
}
func (b *Worker) Close(ctx context.Context, err error) error {
b.init()
var resErr error
b.m.WithLock(func() {
if b.closed {
resErr = xerrors.WithStackTrace(ErrAlreadyClosed)
return
}
b.closed = true
close(b.tasks)
b.closeReason = err
if b.closeReason == nil {
b.closeReason = errClosedWithNilReason
}
b.stop()
})
if resErr != nil {
return resErr
}
<-b.tasksCompleted
bgCompleted := make(empty.Chan)
go func() {
b.workers.Wait()
close(bgCompleted)
}()
select {
case <-bgCompleted:
return nil
case <-ctx.Done():
return ctx.Err()
}
}
func (b *Worker) CloseReason() error {
b.m.Lock()
defer b.m.Unlock()
return b.closeReason
}
func (b *Worker) init() {
b.onceInit.Do(func() {
if b.ctx == nil {
b.ctx, b.stop = xcontext.WithCancel(context.Background())
}
b.tasks = make(chan backgroundTask)
b.tasksCompleted = make(empty.Chan)
go b.starterLoop()
})
}
func (b *Worker) starterLoop() {
defer close(b.tasksCompleted)
for bgTask := range b.tasks {
b.workers.Add(1)
go func(task backgroundTask) {
defer b.workers.Done()
pprof.Do(b.ctx, pprof.Labels("background", task.name), task.callback)
}(bgTask)
}
}
type backgroundTask struct {
callback CallbackFunc
name string
}