2017-05-16 11:41:29 -04:00
|
|
|
// +build solaris,cgo
|
2016-04-15 14:28:44 -04:00
|
|
|
|
|
|
|
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
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stropts.h>
|
|
|
|
#include <termios.h>
|
|
|
|
|
|
|
|
// Small wrapper to get rid of variadic args of ioctl()
|
|
|
|
int my_ioctl(int fd, int cmd, struct winsize *ws) {
|
|
|
|
return ioctl(fd, cmd, ws);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
// 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
|
|
|
ret, err := C.my_ioctl(C.int(fd), C.int(unix.TIOCGWINSZ), (*C.struct_winsize)(unsafe.Pointer(ws)))
|
2016-04-15 14:28:44 -04:00
|
|
|
// Skip retval = 0
|
|
|
|
if ret == 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
|
|
|
ret, err := C.my_ioctl(C.int(fd), C.int(unix.TIOCSWINSZ), (*C.struct_winsize)(unsafe.Pointer(ws)))
|
2016-04-15 14:28:44 -04:00
|
|
|
// Skip retval = 0
|
|
|
|
if ret == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|