-
Notifications
You must be signed in to change notification settings - Fork 8
/
worker.go
126 lines (108 loc) · 2.41 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
package goroutines
import (
"errors"
"sync"
"sync/atomic"
"unsafe"
)
var (
// ErrStateCorrupted indicates the worker state is corrupted.
ErrStateCorrupted = errors.New("state corrupted")
)
type workerState int32
const (
wStatUndefined workerState = iota - 1 // -1
wStatInit // 0
wStatRunning // 1
wStatStopped // 2
)
func getState(n int32) workerState {
switch st := workerState(n); {
case st == wStatInit:
fallthrough
case st == wStatRunning:
fallthrough
case st == wStatStopped:
return st
default:
// actually, it should not happened.
return wStatUndefined
}
}
func (w *worker) getState() workerState {
n := atomic.LoadInt32((*int32)(unsafe.Pointer(&w.state)))
return getState(n)
}
type worker struct {
taskQueueChan <-chan TaskFunc
workerPool *sync.Pool
metric Metric
stopChan chan struct{}
state workerState
}
func newWorker(taskQueue <-chan TaskFunc, workerPool *sync.Pool, metric Metric) *worker {
return &worker{
taskQueueChan: taskQueue,
workerPool: workerPool,
metric: metric,
stopChan: make(chan struct{}),
state: wStatInit,
}
}
func (w *worker) run(task TaskFunc) {
n := atomic.AddInt32((*int32)(unsafe.Pointer(&w.state)), 1) // wStatInit -> wStatRunning
if getState(n) != wStatRunning {
panic(ErrStateCorrupted)
}
go func() {
defer func() {
atomic.AddInt32((*int32)(unsafe.Pointer(&w.state)), 1) // wStatRunning -> wStatStopped
close(w.stopChan)
}()
w.metric.IncBusyWorker()
task()
w.metric.DecBusyWorker()
for {
select {
case <-w.stopChan:
return
default:
}
select {
case <-w.stopChan:
return
case taskInQueue := <-w.taskQueueChan:
w.metric.IncBusyWorker()
taskInQueue()
w.metric.DecBusyWorker()
}
}
}()
}
func (w *worker) stop() {
switch w.getState() {
case wStatInit:
// do nothing. there is no goroutine.
case wStatRunning:
// trigger stopping
w.stopChan <- struct{}{}
default:
panic(ErrStateCorrupted)
}
}
func (w *worker) join() {
switch w.getState() {
case wStatInit:
// recycle it directly
w.workerPool.Put(w)
case wStatRunning, wStatStopped:
// wait for response
<-w.stopChan
// reset to default
atomic.StoreInt32((*int32)(unsafe.Pointer(&w.state)), int32(wStatInit))
w.stopChan = make(chan struct{})
w.workerPool.Put(w)
default:
panic(ErrStateCorrupted)
}
}