Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrClosed = xerrors.New("pty: closed")
ErrClosed is returned when a PTY is used after it has been closed.
Functions ¶
func RestoreTerminal ¶ added in v2.9.3
func RestoreTerminal(fd uintptr, state *TerminalState) error
RestoreTerminal restores the terminal back to its original state.
Types ¶
type Cmd ¶
Cmd is a drop-in replacement for exec.Cmd with most of the same API, but it exposes the context.Context to our PTY code so that we can still kill the process when the Context expires. This is required because on Windows, we don't start the command using the `exec` library, so we have to manage the context ourselves.
type Option ¶
type Option func(*ptyOptions)
Options represents a an option for a PTY.
func WithGPGTTY ¶
func WithGPGTTY() Option
WithGPGTTY sets the GPG_TTY environment variable to the PTY name. This only applies to non-Windows platforms.
func WithLogger ¶
WithLogger sets a logger for logging errors.
func WithSSHRequest ¶
WithSSHRequest applies the ssh.Pty request to the PTY.
Only partially supported on Windows (e.g. window size).
type PTY ¶
type PTY interface { io.Closer // Resize sets the size of the PTY. Resize(height uint16, width uint16) error // Name of the TTY. Example on Linux would be "/dev/pts/1". Name() string // Output handles TTY output. // // cmd.SetOutput(pty.Output()) would be used to specify a command // uses the output stream for writing. // // The same stream could be read to validate output. Output() ReadWriter // Input handles TTY input. // // cmd.SetInput(pty.Input()) would be used to specify a command // uses the PTY input for reading. // // The same stream would be used to provide user input: pty.Input().Write(...) Input() ReadWriter }
PTY is a minimal interface for interacting with pseudo-TTY where this process retains access to _both_ ends of the pseudo-TTY (i.e. `ptm` & `pts` on Linux).
type PTYCmd ¶
type PTYCmd interface { io.Closer // Resize sets the size of the PTY. Resize(height uint16, width uint16) error // OutputReader returns an io.Reader for reading the output from the process // controlled by the pseudo-TTY OutputReader() io.Reader // InputWriter returns an io.Writer for writing into to the process // controlled by the pseudo-TTY InputWriter() io.Writer }
PTYCmd is an interface for interacting with a pseudo-TTY where we control only one end, and the other end has been passed to a running os.Process. nolint:revive
type Process ¶
type Process interface { // Wait for the command to complete. Returned error is as for exec.Cmd.Wait() Wait() error // Kill the command process. Returned error is as for os.Process.Kill() Kill() error // Signal sends a signal to the command process. On non-windows systems, the // returned error is as for os.Process.Signal(), on Windows it's // as for os.Process.Kill(). Signal(sig os.Signal) error }
Process represents a process running in a PTY. We need to trigger special processing on the PTY on process completion, meaning that we will have goroutines calling Wait() on the process. Since the caller will also typically wait for the process, and it is not safe for multiple goroutines to Wait() on a process, this abstraction provides a goroutine-safe interface for interacting with the process.
type ReadWriter ¶
ReadWriter is an implementation of io.ReadWriter that wraps two separate underlying file descriptors, one for reading and one for writing, and allows them to be accessed separately.
type StartOption ¶
type StartOption func(*startOptions)
StartOption represents a configuration option passed to Start.
func WithPTYOption ¶
func WithPTYOption(opts ...Option) StartOption
WithPTYOption applies the given options to the underlying PTY.
type TerminalState ¶ added in v2.9.3
type TerminalState struct {
// contains filtered or unexported fields
}
TerminalState differs per-platform.
func MakeInputRaw ¶ added in v2.9.3
func MakeInputRaw(fd uintptr) (*TerminalState, error)
MakeInputRaw calls term.MakeRaw on non-Windows platforms. On Windows it sets special terminal modes that enable VT100 emulation as well as setting the same modes that term.MakeRaw sets.
func MakeOutputRaw ¶ added in v2.9.3
func MakeOutputRaw(fd uintptr) (*TerminalState, error)
MakeOutputRaw does nothing on non-Windows platforms. On Windows it sets special terminal modes that enable VT100 emulation as well as setting the same modes that term.MakeRaw sets.