mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
aecb9c39ab
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
29 lines
418 B
Go
29 lines
418 B
Go
package nsinit
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
type Terminal interface {
|
|
io.Closer
|
|
SetMaster(*os.File)
|
|
Attach(*exec.Cmd) error
|
|
Resize(h, w int) error
|
|
}
|
|
|
|
func NewTerminal(stdin io.Reader, stdout, stderr io.Writer, tty bool) Terminal {
|
|
if tty {
|
|
return &TtyTerminal{
|
|
stdin: stdin,
|
|
stdout: stdout,
|
|
stderr: stderr,
|
|
}
|
|
}
|
|
return &StdTerminal{
|
|
stdin: stdin,
|
|
stdout: stdout,
|
|
stderr: stderr,
|
|
}
|
|
}
|