-
Notifications
You must be signed in to change notification settings - Fork 0
/
worker.go
88 lines (80 loc) · 1.56 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
package balance
import (
"context"
"errors"
"time"
"github.com/google/uuid"
)
type Handler func(any)
type worker struct {
ctx context.Context
uuid string
idx int
requests chan any
pending int
settings workerSettings
}
type workerSettings struct {
initialIndex int
handler Handler
completed chan<- *worker
queueSize int
postStop func()
shutdownTimeout time.Duration
}
func newWorker(ctx context.Context, settings workerSettings) (*worker, error) {
if settings.handler == nil {
return nil, errors.New("failed to initialize worker: empty handler")
}
if settings.shutdownTimeout == 0 {
settings.shutdownTimeout = 30 * time.Second
}
return &worker{
ctx: ctx,
uuid: uuid.NewString(),
idx: settings.initialIndex,
requests: make(chan any, settings.queueSize),
pending: 0,
settings: settings,
}, nil
}
func (w *worker) start() error {
if w.settings.handler == nil {
return errors.New("failed to start worker: empty handler")
}
go func() {
for {
select {
case <-w.ctx.Done():
w.drainRequests()
if w.settings.postStop != nil {
w.settings.postStop()
}
return
case x, ok := <-w.requests:
if !ok {
return
}
w.settings.handler(x)
w.settings.completed <- w
}
}
}()
return nil
}
func (w *worker) drainRequests() {
withTimeout(func() {
for {
select {
case req, ok := <-w.requests:
if !ok {
return
}
w.settings.handler(req)
w.settings.completed <- w
default:
return
}
}
}, w.settings.shutdownTimeout)
}