Skip to content

Instantly share code, notes, and snippets.

@hjr3

hjr3/winsize.rs Secret

Last active August 29, 2015 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hjr3/0cbe1ac2f10e6e3df96a to your computer and use it in GitHub Desktop.
Save hjr3/0cbe1ac2f10e6e3df96a to your computer and use it in GitHub Desktop.
#![allow(unstable)]
extern crate libc;
use libc::{c_int, c_ulong, c_ushort, STDOUT_FILENO};
use libc::funcs::bsd44::ioctl;
use std::io::{IoResult, standard_error, ResourceUnavailable};
#[repr(C)]
struct winsize {
ws_row: c_ushort, /* rows, in characters */
ws_col: c_ushort, /* columns, in characters */
ws_xpixel: c_ushort, /* horizontal size, pixels */
ws_ypixel: c_ushort /* vertical size, pixels */
}
const TIOCGWINSZ: c_ulong = 0x40087468;
fn get_winsize() -> IoResult<(isize, isize)> {
let w = winsize { ws_row: 0, ws_col: 0, ws_xpixel: 0, ws_ypixel: 0 };
let r = unsafe { ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) };
match r {
0 => Ok((w.ws_col as isize, w.ws_row as isize)),
_ => {
return Err(standard_error(ResourceUnavailable))
}
}
}
#[test]
fn winsize_has_valid_width_and_height() {
let (width, height) = get_winsize().unwrap();
assert!(width > 0);
assert!(height > 0);
}
@hjr3
Copy link
Author

hjr3 commented Jan 11, 2015

Test with rustc --test winsize.rs && ./winsize

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment