2015-05-05 20:25:05 +00:00
|
|
|
package daemon
|
|
|
|
|
2016-06-14 02:52:49 +00:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
2015-05-05 20:25:05 +00:00
|
|
|
|
2015-07-30 21:01:53 +00:00
|
|
|
// ContainerWait stops processing until the given container is
|
|
|
|
// stopped. If the container is not found, an error is returned. On a
|
|
|
|
// successful stop, the exit code of the container is returned. On a
|
|
|
|
// timeout, an error is returned. If you want to wait forever, supply
|
|
|
|
// a negative duration for the timeout.
|
2015-09-29 17:51:40 +00:00
|
|
|
func (daemon *Daemon) ContainerWait(name string, timeout time.Duration) (int, error) {
|
2015-12-11 17:39:28 +00:00
|
|
|
container, err := daemon.GetContainer(name)
|
2015-05-05 20:25:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return container.WaitStop(timeout)
|
|
|
|
}
|
2016-06-14 02:52:49 +00:00
|
|
|
|
|
|
|
// ContainerWaitWithContext returns a channel where exit code is sent
|
|
|
|
// when container stops. Channel can be cancelled with a context.
|
2016-06-14 18:11:43 +00:00
|
|
|
func (daemon *Daemon) ContainerWaitWithContext(ctx context.Context, name string) error {
|
2016-06-14 02:52:49 +00:00
|
|
|
container, err := daemon.GetContainer(name)
|
|
|
|
if err != nil {
|
2016-06-14 18:11:43 +00:00
|
|
|
return err
|
2016-06-14 02:52:49 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 18:11:43 +00:00
|
|
|
return container.WaitWithContext(ctx)
|
2016-06-14 02:52:49 +00:00
|
|
|
}
|