mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c85fe2d224
Make sure timers are stopped after use.
53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
|
|
)
|
|
|
|
// ContainerResize changes the size of the TTY of the process running
|
|
// in the container with the given name to the given height and width.
|
|
func (daemon *Daemon) ContainerResize(name string, height, width int) error {
|
|
container, err := daemon.GetContainer(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !container.IsRunning() {
|
|
return errNotRunning(container.ID)
|
|
}
|
|
|
|
if err = daemon.containerd.ResizeTerminal(context.Background(), container.ID, libcontainerdtypes.InitProcessName, width, height); err == nil {
|
|
attributes := map[string]string{
|
|
"height": fmt.Sprintf("%d", height),
|
|
"width": fmt.Sprintf("%d", width),
|
|
}
|
|
daemon.LogContainerEventWithAttributes(container, "resize", attributes)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// ContainerExecResize changes the size of the TTY of the process
|
|
// running in the exec with the given name to the given height and
|
|
// width.
|
|
func (daemon *Daemon) ContainerExecResize(name string, height, width int) error {
|
|
ec, err := daemon.getExecConfig(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: the timeout is hardcoded here, it would be more flexible to make it
|
|
// a parameter in resize request context, which would need API changes.
|
|
timeout := time.NewTimer(10 * time.Second)
|
|
defer timeout.Stop()
|
|
|
|
select {
|
|
case <-ec.Started:
|
|
return daemon.containerd.ResizeTerminal(context.Background(), ec.ContainerID, ec.ID, width, height)
|
|
case <-timeout.C:
|
|
return fmt.Errorf("timeout waiting for exec session ready")
|
|
}
|
|
}
|