Add Resize pty support to client

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2017-06-01 13:53:54 -07:00
parent 00734ab04a
commit e022cf3ad0
2 changed files with 27 additions and 0 deletions

View File

@ -96,3 +96,17 @@ func (p *process) CloseStdin(ctx context.Context) error {
}) })
return err return err
} }
func (p *process) IO() *IO {
return p.io
}
func (p *process) Resize(ctx context.Context, w, h uint32) error {
_, err := p.task.client.TaskService().Pty(ctx, &execution.PtyRequest{
ContainerID: p.task.containerID,
Width: w,
Height: h,
Pid: p.pid,
})
return err
}

13
task.go
View File

@ -33,6 +33,7 @@ type Task interface {
Exec(context.Context, *specs.Process, IOCreation) (Process, error) Exec(context.Context, *specs.Process, IOCreation) (Process, error)
Processes(context.Context) ([]uint32, error) Processes(context.Context) ([]uint32, error)
CloseStdin(context.Context) error CloseStdin(context.Context) error
Resize(ctx context.Context, w, h uint32) error
IO() *IO IO() *IO
} }
@ -42,6 +43,8 @@ type Process interface {
Kill(context.Context, syscall.Signal) error Kill(context.Context, syscall.Signal) error
Wait(context.Context) (uint32, error) Wait(context.Context) (uint32, error)
CloseStdin(context.Context) error CloseStdin(context.Context) error
Resize(ctx context.Context, w, h uint32) error
IO() *IO
} }
var _ = (Task)(&task{}) var _ = (Task)(&task{})
@ -173,3 +176,13 @@ func (t *task) CloseStdin(ctx context.Context) error {
func (t *task) IO() *IO { func (t *task) IO() *IO {
return t.io return t.io
} }
func (t *task) Resize(ctx context.Context, w, h uint32) error {
_, err := t.client.TaskService().Pty(ctx, &execution.PtyRequest{
ContainerID: t.containerID,
Width: w,
Height: h,
Pid: t.pid,
})
return err
}