maddy/cmd/imapsql-ctl/termios.go
fox.cpp ae8fe2b14e
Fork imapsql-ctl utility from go-imap-sql repo
1. There is only one version for maddy and imapsql-ctl utility.
This prevents confusion about compatibility.

2. Modified imapsql-ctl understands maddy config format, this allows
it to read needed values from it without the need for lengthy commmand
line arguments.

Closes #148.
2019-10-16 23:19:40 +03:00

63 lines
1.4 KiB
Go

//+build linux
package main
// Copied from github.com/foxcpp/ttyprompt
// Commit 087a574, terminal/termios.go
import (
"errors"
"os"
"syscall"
"unsafe"
)
type Termios struct {
Iflag uint32
Oflag uint32
Cflag uint32
Lflag uint32
Cc [20]byte
Ispeed uint32
Ospeed uint32
}
/*
TurnOnRawIO sets flags suitable for raw I/O (no echo, per-character input, etc)
and returns original flags.
*/
func TurnOnRawIO(tty *os.File) (orig Termios, err error) {
termios, err := TcGetAttr(tty.Fd())
if err != nil {
return Termios{}, errors.New("TurnOnRawIO: failed to get flags: " + err.Error())
}
termiosOrig := *termios
termios.Lflag &^= syscall.ECHO
termios.Lflag &^= syscall.ICANON
termios.Iflag &^= syscall.IXON
termios.Lflag &^= syscall.ISIG
termios.Iflag |= syscall.IUTF8
err = TcSetAttr(tty.Fd(), termios)
if err != nil {
return Termios{}, errors.New("TurnOnRawIO: flags to set flags: " + err.Error())
}
return termiosOrig, nil
}
func TcSetAttr(fd uintptr, termios *Termios) error {
_, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, syscall.TCSETS, uintptr(unsafe.Pointer(termios)))
if err != 0 {
return err
}
return nil
}
func TcGetAttr(fd uintptr) (*Termios, error) {
termios := &Termios{}
_, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, syscall.TCGETS, uintptr(unsafe.Pointer(termios)))
if err != 0 {
return nil, err
}
return termios, nil
}