1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
//go:build linux
package termios
import (
"golang.org/x/sys/unix"
)
const (
ioctlReadTermios = unix.TCGETS
ioctlWriteTermios = unix.TCSETS
)
// State contains the state of a terminal.
type State struct {
Termios unix.Termios
}
// IsTerminal returns true if the given file descriptor is a terminal.
func IsTerminal(fd int) bool {
_, err := GetState(fd)
return err == nil
}
// GetState returns the current state of a terminal which may be useful to restore the terminal after a signal.
func GetState(fd int) (*State, error) {
termios, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
if err != nil {
return nil, err
}
state := State{}
state.Termios = *termios
return &state, nil
}
// GetSize returns the dimensions of the given terminal.
func GetSize(fd int) (int, int, error) {
winsize, err := unix.IoctlGetWinsize(fd, unix.TIOCGWINSZ)
if err != nil {
return -1, -1, err
}
return int(winsize.Col), int(winsize.Row), nil
}
// MakeRaw put the terminal connected to the given file descriptor into raw mode and returns the previous state of the terminal so that it can be restored.
func MakeRaw(fd int) (*State, error) {
oldState, err := GetState(fd)
if err != nil {
return nil, err
}
newState := *oldState
// This attempts to replicate the behaviour documented for cfmakeraw in the termios(3) manpage.
newState.Termios.Iflag &^= unix.BRKINT | unix.ICRNL | unix.INPCK | unix.ISTRIP | unix.IXON
newState.Termios.Oflag &^= unix.OPOST
newState.Termios.Cflag &^= unix.CSIZE | unix.PARENB
newState.Termios.Cflag |= unix.CS8
newState.Termios.Lflag &^= unix.ECHO | unix.ICANON | unix.IEXTEN | unix.ISIG
newState.Termios.Cc[unix.VMIN] = 1
newState.Termios.Cc[unix.VTIME] = 0
err = Restore(fd, &newState)
if err != nil {
return nil, err
}
return oldState, nil
}
// Restore restores the terminal connected to the given file descriptor to a previous state.
func Restore(fd int, state *State) error {
err := unix.IoctlSetTermios(fd, ioctlWriteTermios, &state.Termios)
if err != nil {
return err
}
return nil
}
|