2016-09-08 13:11:39 -04:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-09-08 13:11:39 -04:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
2017-05-16 21:31:04 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/api/types/events"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
2016-11-15 12:10:02 -05:00
|
|
|
"github.com/docker/docker/api/types/versions"
|
2023-07-19 08:34:07 -04:00
|
|
|
"github.com/docker/docker/client"
|
2017-08-07 05:52:40 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2016-09-08 13:11:39 -04:00
|
|
|
)
|
|
|
|
|
2023-07-19 08:34:07 -04:00
|
|
|
func waitExitOrRemoved(ctx context.Context, apiClient client.APIClient, containerID string, waitRemove bool) <-chan int {
|
2016-09-08 13:11:39 -04:00
|
|
|
if len(containerID) == 0 {
|
|
|
|
// containerID can never be empty
|
|
|
|
panic("Internal Error: waitExitOrRemoved needs a containerID as parameter")
|
|
|
|
}
|
|
|
|
|
2017-05-16 21:31:04 -04:00
|
|
|
// Older versions used the Events API, and even older versions did not
|
|
|
|
// support server-side removal. This legacyWaitExitOrRemoved method
|
|
|
|
// preserves that old behavior and any issues it may have.
|
2023-07-19 08:34:07 -04:00
|
|
|
if versions.LessThan(apiClient.ClientVersion(), "1.30") {
|
|
|
|
return legacyWaitExitOrRemoved(ctx, apiClient, containerID, waitRemove)
|
2017-05-16 21:31:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
condition := container.WaitConditionNextExit
|
|
|
|
if waitRemove {
|
|
|
|
condition = container.WaitConditionRemoved
|
|
|
|
}
|
|
|
|
|
2023-07-19 08:34:07 -04:00
|
|
|
resultC, errC := apiClient.ContainerWait(ctx, containerID, condition)
|
2017-05-16 21:31:04 -04:00
|
|
|
|
|
|
|
statusC := make(chan int)
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case result := <-resultC:
|
2017-10-18 20:56:01 -04:00
|
|
|
if result.Error != nil {
|
|
|
|
logrus.Errorf("Error waiting for container: %v", result.Error.Message)
|
|
|
|
statusC <- 125
|
|
|
|
} else {
|
|
|
|
statusC <- int(result.StatusCode)
|
|
|
|
}
|
2017-05-16 21:31:04 -04:00
|
|
|
case err := <-errC:
|
|
|
|
logrus.Errorf("error waiting for container: %v", err)
|
|
|
|
statusC <- 125
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return statusC
|
|
|
|
}
|
|
|
|
|
2023-07-19 08:34:07 -04:00
|
|
|
func legacyWaitExitOrRemoved(ctx context.Context, apiClient client.APIClient, containerID string, waitRemove bool) <-chan int {
|
2016-11-15 12:10:02 -05:00
|
|
|
var removeErr error
|
2016-09-08 13:11:39 -04:00
|
|
|
statusChan := make(chan int)
|
|
|
|
exitCode := 125
|
|
|
|
|
2016-11-15 12:10:02 -05:00
|
|
|
// Get events via Events API
|
|
|
|
f := filters.NewArgs()
|
|
|
|
f.Add("type", "container")
|
|
|
|
f.Add("container", containerID)
|
|
|
|
options := types.EventsOptions{
|
|
|
|
Filters: f,
|
|
|
|
}
|
|
|
|
eventCtx, cancel := context.WithCancel(ctx)
|
2023-07-19 08:34:07 -04:00
|
|
|
eventq, errq := apiClient.Events(eventCtx, options)
|
2016-09-08 13:11:39 -04:00
|
|
|
|
2016-11-15 12:10:02 -05:00
|
|
|
eventProcessor := func(e events.Message) bool {
|
2016-09-08 13:11:39 -04:00
|
|
|
stopProcessing := false
|
|
|
|
switch e.Status {
|
|
|
|
case "die":
|
|
|
|
if v, ok := e.Actor.Attributes["exitCode"]; ok {
|
|
|
|
code, cerr := strconv.Atoi(v)
|
|
|
|
if cerr != nil {
|
|
|
|
logrus.Errorf("failed to convert exitcode '%q' to int: %v", v, cerr)
|
|
|
|
} else {
|
|
|
|
exitCode = code
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !waitRemove {
|
|
|
|
stopProcessing = true
|
2023-11-20 07:54:53 -05:00
|
|
|
} else if versions.LessThan(apiClient.ClientVersion(), "1.25") {
|
2016-11-15 12:10:02 -05:00
|
|
|
// If we are talking to an older daemon, `AutoRemove` is not supported.
|
|
|
|
// We need to fall back to the old behavior, which is client-side removal
|
2023-11-20 07:54:53 -05:00
|
|
|
go func() {
|
|
|
|
removeErr = apiClient.ContainerRemove(ctx, containerID, container.RemoveOptions{RemoveVolumes: true})
|
|
|
|
if removeErr != nil {
|
|
|
|
logrus.Errorf("error removing container: %v", removeErr)
|
|
|
|
cancel() // cancel the event Q
|
|
|
|
}
|
|
|
|
}()
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
case "detach":
|
|
|
|
exitCode = 0
|
|
|
|
stopProcessing = true
|
|
|
|
case "destroy":
|
|
|
|
stopProcessing = true
|
|
|
|
}
|
2016-11-15 12:10:02 -05:00
|
|
|
return stopProcessing
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2016-08-09 16:34:07 -04:00
|
|
|
go func() {
|
2016-11-15 12:10:02 -05:00
|
|
|
defer func() {
|
|
|
|
statusChan <- exitCode // must always send an exit code or the caller will block
|
|
|
|
cancel()
|
|
|
|
}()
|
2016-08-09 16:34:07 -04:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
2016-11-15 12:10:02 -05:00
|
|
|
case <-eventCtx.Done():
|
|
|
|
if removeErr != nil {
|
|
|
|
return
|
|
|
|
}
|
2016-08-09 16:34:07 -04:00
|
|
|
case evt := <-eventq:
|
|
|
|
if eventProcessor(evt) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case err := <-errq:
|
|
|
|
logrus.Errorf("error getting events from daemon: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2016-09-08 13:11:39 -04:00
|
|
|
|
2016-08-09 16:34:07 -04:00
|
|
|
return statusChan
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2016-09-21 10:35:08 -04:00
|
|
|
func parallelOperation(ctx context.Context, containers []string, op func(ctx context.Context, container string) error) chan error {
|
|
|
|
if len(containers) == 0 {
|
2016-07-18 12:02:41 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
const defaultParallel int = 50
|
|
|
|
sem := make(chan struct{}, defaultParallel)
|
|
|
|
errChan := make(chan error)
|
|
|
|
|
|
|
|
// make sure result is printed in correct order
|
|
|
|
output := map[string]chan error{}
|
2016-09-21 10:35:08 -04:00
|
|
|
for _, c := range containers {
|
2016-07-18 12:02:41 -04:00
|
|
|
output[c] = make(chan error, 1)
|
|
|
|
}
|
|
|
|
go func() {
|
2016-09-21 10:35:08 -04:00
|
|
|
for _, c := range containers {
|
2016-07-18 12:02:41 -04:00
|
|
|
err := <-output[c]
|
|
|
|
errChan <- err
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
2016-09-21 10:35:08 -04:00
|
|
|
for _, c := range containers {
|
2016-07-18 12:02:41 -04:00
|
|
|
sem <- struct{}{} // Wait for active queue sem to drain.
|
|
|
|
go func(container string) {
|
|
|
|
output[container] <- op(ctx, container)
|
|
|
|
<-sem
|
|
|
|
}(c)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return errChan
|
|
|
|
}
|