2016-04-15 14:28:44 -04:00
|
|
|
// +build !solaris,!windows
|
|
|
|
|
|
|
|
package term
|
|
|
|
|
|
|
|
import (
|
|
|
|
"unsafe"
|
2017-05-04 20:52:19 -04:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
2016-04-15 14:28:44 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetWinsize returns the window size based on the specified file descriptor.
|
|
|
|
func GetWinsize(fd uintptr) (*Winsize, error) {
|
|
|
|
ws := &Winsize{}
|
2017-05-04 20:52:19 -04:00
|
|
|
_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, uintptr(unix.TIOCGWINSZ), uintptr(unsafe.Pointer(ws)))
|
2016-04-15 14:28:44 -04:00
|
|
|
// Skipp errno = 0
|
|
|
|
if err == 0 {
|
|
|
|
return ws, nil
|
|
|
|
}
|
|
|
|
return ws, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetWinsize tries to set the specified window size for the specified file descriptor.
|
|
|
|
func SetWinsize(fd uintptr, ws *Winsize) error {
|
2017-05-04 20:52:19 -04:00
|
|
|
_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, uintptr(unix.TIOCSWINSZ), uintptr(unsafe.Pointer(ws)))
|
2016-04-15 14:28:44 -04:00
|
|
|
// Skipp errno = 0
|
|
|
|
if err == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|