moby--moby/term/termios_darwin.go

33 lines
885 B
Go
Raw Normal View History

package term
2013-01-29 01:06:46 +00:00
2013-03-22 11:24:03 +00:00
import (
2013-03-30 06:58:30 +00:00
"syscall"
"unsafe"
2013-03-22 11:24:03 +00:00
)
2013-01-29 01:07:38 +00:00
2013-01-29 01:06:46 +00:00
const (
2013-01-29 02:37:54 +00:00
getTermios = syscall.TIOCGETA
setTermios = syscall.TIOCSETA
2013-01-29 01:06:46 +00:00
)
2013-03-22 11:24:03 +00:00
// 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) {
2013-03-30 06:58:30 +00:00
var oldState State
if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(getTermios), uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 {
return nil, err
}
2013-03-22 11:24:03 +00:00
2013-03-30 06:58:30 +00:00
newState := oldState.termios
newState.Iflag &^= ISTRIP | INLCR | IGNCR | IXON | IXOFF
newState.Iflag |= ICRNL
newState.Oflag |= ONLCR
newState.Lflag &^= ECHO | ICANON | ISIG
if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(setTermios), uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 {
return nil, err
}
2013-03-22 11:24:03 +00:00
2013-03-30 06:58:30 +00:00
return &oldState, nil
}