2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2014-07-31 16:53:22 -04:00
|
|
|
|
2016-03-18 14:50:19 -04:00
|
|
|
import (
|
2017-09-22 09:52:41 -04:00
|
|
|
"context"
|
2022-10-05 10:28:35 -04:00
|
|
|
"errors"
|
|
|
|
"strconv"
|
2018-06-07 23:07:48 -04:00
|
|
|
"time"
|
2016-03-18 14:50:19 -04:00
|
|
|
)
|
2015-11-05 16:40:42 -05:00
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerResize changes the size of the TTY of the process running
|
|
|
|
// in the container with the given name to the given height and width.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerResize(name string, height, width int) error {
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(name)
|
2014-09-15 18:56:47 -04:00
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-09-15 18:56:47 -04:00
|
|
|
}
|
2015-05-01 21:03:35 -04:00
|
|
|
|
2022-05-10 15:59:00 -04:00
|
|
|
container.Lock()
|
|
|
|
tsk, err := container.GetRunningTask()
|
|
|
|
container.Unlock()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-11-05 16:40:42 -05:00
|
|
|
}
|
|
|
|
|
2022-05-10 15:59:00 -04:00
|
|
|
if err = tsk.Resize(context.Background(), uint32(width), uint32(height)); err == nil {
|
2016-01-07 17:14:05 -05:00
|
|
|
attributes := map[string]string{
|
2022-10-05 10:28:35 -04:00
|
|
|
"height": strconv.Itoa(height),
|
|
|
|
"width": strconv.Itoa(width),
|
2016-01-07 17:14:05 -05:00
|
|
|
}
|
|
|
|
daemon.LogContainerEventWithAttributes(container, "resize", attributes)
|
2015-11-03 12:33:13 -05:00
|
|
|
}
|
|
|
|
return err
|
2015-05-01 21:03:35 -04:00
|
|
|
}
|
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerExecResize changes the size of the TTY of the process
|
|
|
|
// running in the exec with the given name to the given height and
|
|
|
|
// width.
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) ContainerExecResize(name string, height, width int) error {
|
2016-03-18 14:50:19 -04:00
|
|
|
ec, err := daemon.getExecConfig(name)
|
2015-05-01 21:03:35 -04:00
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-09-15 18:56:47 -04:00
|
|
|
}
|
2019-01-09 13:24:03 -05:00
|
|
|
|
2018-06-07 23:07:48 -04:00
|
|
|
// 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.
|
2019-01-09 13:24:03 -05:00
|
|
|
timeout := time.NewTimer(10 * time.Second)
|
|
|
|
defer timeout.Stop()
|
|
|
|
|
2018-06-07 23:07:48 -04:00
|
|
|
select {
|
|
|
|
case <-ec.Started:
|
2022-05-10 15:59:00 -04:00
|
|
|
return ec.Process.Resize(context.Background(), uint32(width), uint32(height))
|
2019-01-09 13:24:03 -05:00
|
|
|
case <-timeout.C:
|
2022-10-05 10:28:35 -04:00
|
|
|
return errors.New("timeout waiting for exec session ready")
|
2018-06-07 23:07:48 -04:00
|
|
|
}
|
2014-09-15 18:56:47 -04:00
|
|
|
}
|