1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #34700 from tklauser/pkg-term-winsize

pkg/term: use IoctlGetWinsize/IoctlSetWinsize from golang.org/x/sys/unix
This commit is contained in:
Brian Goff 2017-09-01 15:58:25 -04:00 committed by GitHub
commit a127269803

View file

@ -3,28 +3,18 @@
package term package term
import ( import (
"unsafe"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )
// GetWinsize returns the window size based on the specified file descriptor. // GetWinsize returns the window size based on the specified file descriptor.
func GetWinsize(fd uintptr) (*Winsize, error) { func GetWinsize(fd uintptr) (*Winsize, error) {
ws := &Winsize{} uws, err := unix.IoctlGetWinsize(int(fd), unix.TIOCGWINSZ)
_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, uintptr(unix.TIOCGWINSZ), uintptr(unsafe.Pointer(ws))) ws := &Winsize{Height: uws.Row, Width: uws.Col, x: uws.Xpixel, y: uws.Ypixel}
// Skipp errno = 0
if err == 0 {
return ws, nil
}
return ws, err return ws, err
} }
// SetWinsize tries to set the specified window size for the specified file descriptor. // SetWinsize tries to set the specified window size for the specified file descriptor.
func SetWinsize(fd uintptr, ws *Winsize) error { func SetWinsize(fd uintptr, ws *Winsize) error {
_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, uintptr(unix.TIOCSWINSZ), uintptr(unsafe.Pointer(ws))) uws := &unix.Winsize{Row: ws.Height, Col: ws.Width, Xpixel: ws.x, Ypixel: ws.y}
// Skipp errno = 0 return unix.IoctlSetWinsize(int(fd), unix.TIOCSWINSZ, uws)
if err == 0 {
return nil
}
return err
} }