mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fa9e54fbf1
Signed-off-by: Yibai Zhang <xm1994@gmail.com>
51 lines
1 KiB
Go
51 lines
1 KiB
Go
package execdriver
|
|
|
|
import (
|
|
"io"
|
|
"os/exec"
|
|
)
|
|
|
|
// StdConsole defines standard console operations for execdriver
|
|
type StdConsole struct {
|
|
}
|
|
|
|
// NewStdConsole returns a new StdConsole struct
|
|
func NewStdConsole(processConfig *ProcessConfig, pipes *Pipes) (*StdConsole, error) {
|
|
std := &StdConsole{}
|
|
|
|
if err := std.AttachPipes(&processConfig.Cmd, pipes); err != nil {
|
|
return nil, err
|
|
}
|
|
return std, nil
|
|
}
|
|
|
|
// AttachPipes attaches given pipes to exec.Cmd
|
|
func (s *StdConsole) AttachPipes(command *exec.Cmd, pipes *Pipes) error {
|
|
command.Stdout = pipes.Stdout
|
|
command.Stderr = pipes.Stderr
|
|
|
|
if pipes.Stdin != nil {
|
|
stdin, err := command.StdinPipe()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
go func() {
|
|
defer stdin.Close()
|
|
io.Copy(stdin, pipes.Stdin)
|
|
}()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Resize implements Resize method of Terminal interface
|
|
func (s *StdConsole) Resize(h, w int) error {
|
|
// we do not need to resize a non tty
|
|
return nil
|
|
}
|
|
|
|
// Close implements Close method of Terminal interface
|
|
func (s *StdConsole) Close() error {
|
|
// nothing to close here
|
|
return nil
|
|
}
|