-
Notifications
You must be signed in to change notification settings - Fork 9
/
item.go
292 lines (244 loc) · 5.75 KB
/
item.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package ephemerald
import (
"context"
"sync"
"github.com/Sirupsen/logrus"
"github.com/boz/ephemerald/lifecycle"
"github.com/boz/ephemerald/params"
"github.com/boz/ephemerald/ui"
"github.com/docker/docker/api/types"
)
type poolItemEvent string
const (
eventPoolItemStart poolItemEvent = "start"
eventPoolItemReset poolItemEvent = "reset"
eventPoolItemKill poolItemEvent = "kill"
eventPoolItemLiveError poolItemEvent = "live-error"
eventPoolItemLive poolItemEvent = "live"
eventPoolItemResetError poolItemEvent = "reset-error"
eventPoolItemReady poolItemEvent = "ready"
eventPoolItemReadyError poolItemEvent = "ready-error"
)
type poolItem interface {
StatusItem
join(ch chan<- poolEvent)
start()
reset()
kill()
}
type pitem struct {
lifecycle lifecycle.ContainerManager
adapter dockerAdapter
container poolContainer
events chan poolItemEvent
joinch chan (chan<- poolEvent)
// closed when exited
exited chan bool
ctx context.Context
cancel context.CancelFunc
wg sync.WaitGroup
log logrus.FieldLogger
uie ui.ContainerEmitter
}
func createPoolItem(uie ui.PoolEmitter, log logrus.FieldLogger, adapter dockerAdapter, lifecycle lifecycle.Manager) (poolItem, error) {
log = log.WithField("component", "pool-item")
container, err := createPoolContainer(log, adapter)
if err != nil {
log.WithError(err).
Error("can't create container")
return nil, err
}
log = lcid(log, container.ID())
ctx, cancel := context.WithCancel(context.Background())
cuie := uie.ForContainer(container.ID())
cuie.EmitCreated()
item := &pitem{
lifecycle: lifecycle.ForContainer(cuie, container.ID()),
adapter: adapter,
container: container,
events: make(chan poolItemEvent),
joinch: make(chan (chan<- poolEvent)),
exited: make(chan bool),
ctx: ctx,
cancel: cancel,
log: log,
uie: cuie,
}
go item.run()
return item, nil
}
func (i *pitem) ID() string {
return i.container.ID()
}
func (i *pitem) Status() types.ContainerJSON {
return i.container.Status()
}
func (i *pitem) join(ch chan<- poolEvent) {
i.joinch <- ch
}
func (i *pitem) start() {
go i.sendEvent(eventPoolItemStart)
}
func (i *pitem) reset() {
go i.sendEvent(eventPoolItemReset)
}
func (i *pitem) kill() {
go i.sendEvent(eventPoolItemKill)
}
func (i *pitem) sendEvent(e poolItemEvent) {
select {
case <-i.exited:
case i.events <- e:
}
}
func (i *pitem) run() {
ch := i.runWaitJoin()
i.runMainLoop(ch)
i.drain()
}
func (i *pitem) runWaitJoin() chan<- poolEvent {
defer close(i.joinch)
log := i.log.WithField("method", "runWaitJoin")
for {
select {
case ch := <-i.joinch:
log.Debug("joined")
return ch
case e := <-i.events:
log.WithField("event", e).Debug("item-event")
switch e {
case eventPoolItemKill:
i.uie.EmitExiting()
i.container.stop()
}
}
}
}
func (i *pitem) runMainLoop(ch chan<- poolEvent) {
defer close(i.exited)
defer i.cancel()
log := i.log.WithField("method", "runMainLoop")
for {
select {
case e := <-i.container.events():
log.WithField("event", e).Debug("container-event")
switch e {
case containerEventExitSuccess:
fallthrough
case containerEventExitError:
fallthrough
case containerEventStartFailed:
i.log.Info("container exited")
i.uie.EmitExited()
ch <- poolEvent{eventItemExit, i}
return
case containerEventStarted:
i.uie.EmitStarted()
i.do(i.onChildStarted)
}
case e := <-i.events:
log.WithField("event", e).Debug("item-event")
switch e {
case eventPoolItemKill:
i.uie.EmitExiting()
i.container.stop()
case eventPoolItemStart:
i.container.start()
case eventPoolItemLive:
i.uie.EmitLive()
i.do(i.onChildLive)
case eventPoolItemLiveError:
i.uie.EmitExiting()
i.container.stop()
case eventPoolItemReady:
i.uie.EmitReady()
ch <- poolEvent{eventItemReady, i}
case eventPoolItemReadyError:
i.uie.EmitExiting()
i.container.stop()
case eventPoolItemReset:
i.uie.EmitResetting()
i.do(i.onChildReset)
}
}
}
}
func (i *pitem) drain() {
log := i.log.WithField("method", "drain")
ch := make(chan bool)
go func() {
i.wg.Wait()
close(ch)
}()
for {
select {
case <-ch:
log.Debug("done")
return
case e := <-i.events:
log.WithField("event", e).Debug("stale item-event")
}
}
}
func (i *pitem) onChildStarted() {
if i.lifecycle.HasHealthcheck() {
params, err := i.currentParams()
if err != nil {
i.events <- eventPoolItemLiveError
return
}
if err := i.lifecycle.DoHealthcheck(i.ctx, params); err != nil {
i.log.WithError(err).Error("error checking liveliness")
i.events <- eventPoolItemLiveError
return
}
}
i.events <- eventPoolItemLive
}
func (i *pitem) onChildLive() {
if i.lifecycle.HasInitialize() {
params, err := i.currentParams()
if err != nil {
i.events <- eventPoolItemReadyError
return
}
if err := i.lifecycle.DoInitialize(i.ctx, params); err != nil {
i.log.WithError(err).Error("error initializing")
i.events <- eventPoolItemReadyError
return
}
}
i.log.Info("container ready")
i.events <- eventPoolItemReady
}
func (i *pitem) onChildReset() {
if i.lifecycle.HasReset() {
params, err := i.currentParams()
if err != nil {
i.events <- eventPoolItemResetError
return
}
if err := i.lifecycle.DoReset(i.ctx, params); err != nil {
i.log.WithError(err).Error("error provisioning")
i.events <- eventPoolItemResetError
return
}
i.events <- eventPoolItemReady
return
}
i.container.stop()
}
func (i *pitem) currentParams() (params.Params, error) {
params, err := i.adapter.makeParams(i.container)
if err != nil {
i.log.WithError(err).Warn("error making params")
}
return params, err
}
func (i *pitem) do(fn func()) {
i.wg.Add(1)
go func() {
defer i.wg.Done()
fn()
}()
}