-
Notifications
You must be signed in to change notification settings - Fork 0
/
container.go
306 lines (250 loc) · 5.2 KB
/
container.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package dft
import (
"bytes"
"context"
"fmt"
"strconv"
"strings"
"time"
)
const intervalWait = 150
type Container struct {
id string
portMappings map[uint][]string
}
func newContainer(
ctx context.Context,
imageName string,
opts ...ContainerOption,
) (*Container, error) {
cfg := containerCfg{
args: nil,
env: nil,
mounts: nil,
ports: nil,
}
// INFO: we could pass the options further down and parse them in functions
// we are calling, but we need the exposed ports here to check if we are up
for i := range opts {
opts[i](&cfg)
}
var (
arguments []string
envVars []string
exposedPorts [][2]uint
mounts [][2]string
)
if cfg.args != nil {
arguments = *cfg.args
}
if cfg.env != nil {
envVars = *cfg.env
}
if cfg.mounts != nil {
mounts = *cfg.mounts
}
if cfg.ports != nil {
exposedPorts = *cfg.ports
}
id, err := startContainer(
ctx,
imageName,
arguments,
envVars,
exposedPorts,
mounts,
)
if err != nil {
return nil, fmt.Errorf(
"[%s](%s) %w",
imageName,
id,
err,
)
}
// at this point we have a container up
// but it may not be able to meet our conditions
// in the given context.
// In this case we will throw an error and not returning
// any container reference, therefore we need to take care
// of its removal
defer func() {
if err != nil {
ctr := Container{id: id}
sCtx, sCtxCancel := context.WithTimeout(
context.Background(),
5*time.Second,
)
_ = ctr.Stop(sCtx)
sCtxCancel()
}
}()
err = containerIsAlive(ctx, id)
if err != nil {
l, _ := getLogs(ctx, id)
return nil, fmt.Errorf(
"[%s](%s) %w\nlogs:%s",
imageName,
id,
err,
l,
)
}
prtMpns := map[uint][]string{}
if len(exposedPorts) > 0 {
errCh := make(chan error)
go func() {
t := time.NewTicker(intervalWait * time.Millisecond)
defer t.Stop()
for {
select {
case <-ctx.Done():
errCh <- ctx.Err()
return
case <-t.C:
pm, pErr := getPublishedPorts(ctx, id)
if pErr != nil {
errCh <- pErr
return
}
if len(pm) == 0 {
continue
}
prtMpns = pm
errCh <- nil
return
}
}
}()
if err = <-errCh; err != nil {
l, _ := getLogs(ctx, id)
return nil, fmt.Errorf(
"[%s](%s) %w\nlogs:%s",
imageName,
id,
err,
l,
)
}
}
// prtMpns, err := getPublishedPorts(ctx, id)
// if err != nil {
// _ = stopContainer(ctx, id)
// return nil, fmt.Errorf(
// "[%s](%s) %w",
// imageName,
// id,
// err,
// )
// }
return &Container{
id: id,
portMappings: prtMpns,
}, nil
}
// Stop will stop the container and remove it (as well as related volumes)
// from the host system
func (c Container) Stop(ctx context.Context) error {
err := stopContainer(ctx, c.id)
if err != nil {
return err
}
ids, err := getVolumes(ctx, c.id)
if err != nil {
return err
}
err = removeContainer(ctx, c.id)
if err != nil {
return err
}
if len(ids) == 0 {
return nil
}
return deleteVolumes(ctx, ids)
}
// Logs will retrieve the latest logs from the container
// This call errors once `Stop` was called.
func (c *Container) Logs(ctx context.Context) (string, error) {
return getLogs(ctx, c.id)
}
// ExposedPorts will return a list of host ports exposing the internal port
func (c *Container) ExposedPorts(port uint) ([]uint, bool) {
strs, ok := c.portMappings[port]
if !ok {
return nil, false
}
p := make([]uint, 0, len(strs))
for i := range strs {
parts := strings.Split(strs[i], ":")
v, err := strconv.ParseUint(parts[1], base10, bit64)
if err != nil {
return nil, false
}
p = append(p, uint(v))
}
return p, true
}
// ExposedPortAddresses will return a list of host ports exposing the internal port in the format of
// "<IP>:<PORT>"
func (c *Container) ExposedPortAddresses(port uint) ([]string, bool) {
str, ok := c.portMappings[port]
return str, ok
}
// WaitCmd takes a command in the form of a ["<cmd>", "(<arg> | <-flag> | <flagvalue>)"...]
// which will be executed periodically until either
// it returns true
// or the context expires
func (c *Container) WaitCmd(
ctx context.Context,
cmd []string,
metCondition func(stdOut string, stdErr string, code int) bool,
opts ...WaitOption,
) error {
cfg := waitCfg{
inContainer: nil,
}
for i := range opts {
opts[i](&cfg)
}
errCh := make(chan error)
go func(inContainer bool) {
t := time.NewTicker(intervalWait * time.Millisecond)
defer t.Stop()
for {
select {
case <-ctx.Done():
errCh <- ctx.Err()
return
case <-t.C:
var (
outB bytes.Buffer
errB bytes.Buffer
code int
err error
)
if inContainer {
// call docker exec
outB, errB, code, err = dockerExecute(ctx, c.id, cmd)
} else {
// call func on host
outB, errB, code, err = hostExecute(ctx, cmd)
}
if err != nil && code == -1 {
errCh <- fmt.Errorf(
"wait command errored: %w\n\tstdErr:%s\n\tstdOut:%s",
err,
errB.String(),
outB.String(),
)
return
}
if !metCondition(outB.String(), errB.String(), code) {
continue
}
errCh <- nil
return
}
}
}(cfg.inContainer != nil && *cfg.inContainer)
return <-errCh
}