pty

package
v0.13.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 12, 2022 License: AGPL-3.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Start

func Start(cmd *exec.Cmd, opt ...StartOption) (PTY, Process, error)

Start the command in a TTY. The calling code must not use cmd after passing it to the PTY, and instead rely on the returned Process to manage the command/process.

Types

type Option added in v0.8.15

type Option func(*ptyOptions)

Options represents a an option for a PTY.

func WithLogger added in v0.8.15

func WithLogger(logger *log.Logger) Option

WithLogger sets a logger for logging errors.

func WithSSHRequest added in v0.8.15

func WithSSHRequest(req ssh.Pty) Option

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

	// 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

	// Resize sets the size of the PTY.
	Resize(height uint16, width uint16) error
}

PTY is a minimal interface for interacting with a TTY.

func New

func New(opts ...Option) (PTY, error)

New constructs a new Pty.

type Process added in v0.8.2

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
}

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 added in v0.6.0

type ReadWriter struct {
	Reader *os.File
	Writer *os.File
}

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.

func (ReadWriter) Read added in v0.6.0

func (rw ReadWriter) Read(p []byte) (int, error)

func (ReadWriter) Write added in v0.6.0

func (rw ReadWriter) Write(p []byte) (int, error)

type StartOption added in v0.8.15

type StartOption func(*startOptions)

StartOption represents a configuration option passed to Start.

func WithPTYOption added in v0.8.15

func WithPTYOption(opts ...Option) StartOption

WithPTYOption applies the given options to the underlying PTY.

type WithFlags added in v0.6.0

type WithFlags interface {
	PTY

	// EchoEnabled determines whether local echo is currently enabled for this terminal.
	EchoEnabled() (bool, error)
}

WithFlags represents a PTY whose flags can be inspected, in particular to determine whether local echo is enabled.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL