-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathworker_lifecycle.go
More file actions
117 lines (91 loc) · 1.86 KB
/
Copy pathworker_lifecycle.go
File metadata and controls
117 lines (91 loc) · 1.86 KB
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
package varmq
func (w *worker[T, JobType]) Start() error {
w.mx.Lock()
defer w.mx.Unlock()
if w.IsActive() {
return ErrRunningWorker
}
s := w.status.Load()
if s != initiated && s != stopped {
return w.getStatusError()
}
if s == stopped {
w.initContext(w.Configs.ctx)
}
if w.registryTimer != nil {
w.registryTimer.Stop()
w.registryTimer = nil
}
if name := w.Name(); name != "" {
WorkerRegistry.Store(name, w)
}
w.goEventLoop()
w.goRemoveIdleWorkers()
w.pool.PushNode(w.initPoolNode())
w.status.Store(idle)
w.waiters.Broadcast()
w.notifyToPullNextJobs()
return nil
}
func (w *worker[T, JobType]) Stop() error {
s := w.status.Load()
if s == stopped || s == stopping {
return nil
}
for _, from := range []status{running, idle, pausing, paused} {
if w.status.CompareAndSwap(from, stopping) {
w.mx.Lock()
w.cancel()
w.mx.Unlock()
return nil
}
}
return w.getStatusError()
}
func (w *worker[T, JobType]) Pause() error {
w.mx.Lock()
defer w.mx.Unlock()
s := w.status.Load()
if s == paused || s == pausing {
return nil
}
if w.status.CompareAndSwap(idle, paused) {
w.waiters.Broadcast()
return nil
}
if w.status.CompareAndSwap(running, pausing) {
if w.NumProcessing() == 0 && w.status.CompareAndSwap(pausing, paused) {
w.waiters.Broadcast()
}
return nil
}
return w.getStatusError()
}
func (w *worker[T, JobType]) Resume() error {
if w.status.CompareAndSwap(paused, idle) {
w.mx.Lock()
w.waiters.Broadcast()
w.mx.Unlock()
w.notifyToPullNextJobs()
return nil
}
if w.IsActive() {
return nil
}
return w.getStatusError()
}
func (w *worker[T, JobType]) Restart() error {
if err := w.Stop(); err != nil {
return err
}
w.mx.Lock()
for !w.IsStopped() && !w.IsActive() {
w.waiters.Wait()
}
if w.IsActive() {
w.mx.Unlock()
return ErrRunningWorker
}
w.mx.Unlock()
return w.Start()
}