This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
generated from ContainerSSH/library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lifecycle_impl.go
246 lines (210 loc) · 4.93 KB
/
lifecycle_impl.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package service
import (
"context"
"fmt"
"sync"
)
type lifecycle struct {
service Service
state State
mutex *sync.Mutex
runningContext context.Context
cancelRun func()
shutdownContext context.Context
lastError error
waitContext context.Context
cancelWaitContext func()
onStateChange []func(s Service, l Lifecycle, state State)
onStarting []func(s Service, l Lifecycle)
onRunning []func(s Service, l Lifecycle)
onStopping []func(s Service, l Lifecycle, shutdownContext context.Context)
onStopped []func(s Service, l Lifecycle)
onCrashed []func(s Service, l Lifecycle, err error)
}
func (l *lifecycle) Context() context.Context {
return l.runningContext
}
func (l *lifecycle) ShouldStop() bool {
l.mutex.Lock()
defer l.mutex.Unlock()
select {
case <-l.runningContext.Done():
return true
default:
return false
}
}
func (l *lifecycle) ShutdownContext() context.Context {
return l.shutdownContext
}
func (l *lifecycle) State() State {
return l.state
}
func (l *lifecycle) Wait() error {
l.mutex.Lock()
if l.state == StateCrashed {
return l.lastError
}
if l.state == StateStopped {
return nil
}
waitContext := l.waitContext
l.mutex.Unlock()
if waitContext != nil {
<-waitContext.Done()
}
return l.lastError
}
func (l *lifecycle) Error() error {
return l.lastError
}
func (l *lifecycle) Stop(shutdownContext context.Context) {
l.mutex.Lock()
if l.state == StateStopping || l.state == StateStopped || l.state == StateCrashed {
l.mutex.Unlock()
return
}
l.shutdownContext = shutdownContext
l.mutex.Unlock()
l.cancelRun()
_ = l.Wait()
}
func (l *lifecycle) Run() error {
defer func() {
if crash := recover(); crash != nil {
l.crashed(fmt.Errorf("service paniced (%v)", crash))
}
l.cancelWaitContext()
}()
l.lastError = nil
l.waitContext, l.cancelWaitContext = context.WithCancel(context.Background())
l.starting()
err := l.service.RunWithLifecycle(l)
if err != nil {
l.crashed(err)
return err
}
l.stopped()
return nil
}
func (l *lifecycle) callSimpleHook(hooks []func(s Service, l Lifecycle)) {
wg := &sync.WaitGroup{}
wg.Add(len(hooks))
for _, hook := range hooks {
handler := hook
go func() {
defer wg.Done()
handler(l.service, l)
}()
}
wg.Wait()
}
func (l *lifecycle) stateChange(state State) {
wg := &sync.WaitGroup{}
stateChangeHandlers := l.onStateChange
wg.Add(len(stateChangeHandlers))
for _, hook := range stateChangeHandlers {
handler := hook
go func() {
defer wg.Done()
handler(l.service, l, state)
}()
}
wg.Wait()
}
func (l *lifecycle) starting() {
l.mutex.Lock()
l.state = StateStarting
l.mutex.Unlock()
l.stateChange(StateStarting)
l.callSimpleHook(l.onStarting)
}
func (l *lifecycle) Running() {
l.mutex.Lock()
l.state = StateRunning
l.mutex.Unlock()
l.stateChange(StateRunning)
l.callSimpleHook(l.onRunning)
}
func (l *lifecycle) Stopping() context.Context {
l.mutex.Lock()
if l.shutdownContext == nil {
l.shutdownContext = context.Background()
}
shutdownContext := l.shutdownContext
l.state = StateStopping
handlers := l.onStopping
l.mutex.Unlock()
l.stateChange(StateStopping)
wg := &sync.WaitGroup{}
wg.Add(len(handlers))
for _, onShutdown := range handlers {
shutdownHandler := onShutdown
go func() {
defer wg.Done()
shutdownHandler(l.service, l, shutdownContext)
}()
}
wg.Wait()
return shutdownContext
}
func (l *lifecycle) stopped() {
l.mutex.Lock()
l.state = StateStopped
l.mutex.Unlock()
l.stateChange(StateStopped)
l.callSimpleHook(l.onStopped)
}
func (l *lifecycle) crashed(err error) {
l.mutex.Lock()
l.lastError = err
l.state = StateCrashed
l.mutex.Unlock()
l.stateChange(StateCrashed)
wg := &sync.WaitGroup{}
wg.Add(len(l.onCrashed))
for _, onCrashed := range l.onCrashed {
crashHandler := onCrashed
go func() {
defer wg.Done()
crashHandler(l.service, l, err)
}()
}
wg.Wait()
}
func (l *lifecycle) OnStateChange(f func(s Service, l Lifecycle, state State)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onStateChange = append(l.onStateChange, f)
return l
}
func (l *lifecycle) OnStarting(f func(s Service, l Lifecycle)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onStarting = append(l.onStarting, f)
return l
}
func (l *lifecycle) OnRunning(f func(s Service, l Lifecycle)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onRunning = append(l.onRunning, f)
return l
}
func (l *lifecycle) OnStopping(f func(s Service, l Lifecycle, shutdownContext context.Context)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onStopping = append(l.onStopping, f)
return l
}
func (l *lifecycle) OnStopped(f func(s Service, l Lifecycle)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onStopped = append(l.onStopped, f)
return l
}
func (l *lifecycle) OnCrashed(f func(s Service, l Lifecycle, err error)) Lifecycle {
l.mutex.Lock()
defer l.mutex.Unlock()
l.onCrashed = append(l.onCrashed, f)
return l
}