Skip to content

Commit

Permalink
Merge pull request #73 from AdminXVII/no-termios
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara authored Aug 10, 2020
2 parents 3fb1d62 + 893f1b6 commit 0da89c5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ terminal_size = "0.1.13"
regex = { version = "1.3.1", optional = true, default-features = false, features = ["std"] }
unicode-width = { version = "0.1", optional = true }

[target.'cfg(unix)'.dependencies]
termios = "0.3"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winbase", "winuser", "consoleapi", "processenv", "wincon"] }
winapi-util = { version = "0.1.3", optional = true }
Expand Down
37 changes: 25 additions & 12 deletions src/unix_term.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ pub fn is_a_color_terminal(out: &Term) -> bool {
}
}

pub fn c_result<F: FnOnce() -> libc::c_int>(f: F) -> io::Result<()> {
let res = f();
if res != 0 {
Err(io::Error::last_os_error())
} else {
Ok(())
}
}

#[inline]
pub fn terminal_size() -> Option<(u16, u16)> {
terminal_size::terminal_size().map(|x| ((x.1).0, (x.0).0))
Expand All @@ -48,10 +57,12 @@ pub fn read_secure() -> io::Result<String> {
}
};

let mut termios = termios::Termios::from_fd(fd)?;
let mut termios = core::mem::MaybeUninit::uninit();
c_result(|| unsafe { libc::tcgetattr(fd, termios.as_mut_ptr()) })?;
let mut termios = unsafe { termios.assume_init() };
let original = termios;
termios.c_lflag &= !termios::ECHO;
termios::tcsetattr(fd, termios::TCSAFLUSH, &termios)?;
termios.c_lflag &= !libc::ECHO;
c_result(|| unsafe { libc::tcsetattr(fd, libc::TCSAFLUSH, &termios) })?;
let mut rv = String::new();

let read_rv = if let Some(mut f) = f_tty {
Expand All @@ -60,7 +71,7 @@ pub fn read_secure() -> io::Result<String> {
io::stdin().read_line(&mut rv)
};

termios::tcsetattr(fd, termios::TCSAFLUSH, &original)?;
c_result(|| unsafe { libc::tcsetattr(fd, libc::TCSAFLUSH, &original) })?;

read_rv.map(|_| {
let len = rv.trim_end_matches(&['\r', '\n'][..]).len();
Expand All @@ -80,10 +91,12 @@ pub fn read_single_key() -> io::Result<Key> {
}
};
let mut buf = [0u8; 20];
let mut termios = termios::Termios::from_fd(fd)?;
let mut termios = core::mem::MaybeUninit::uninit();
c_result(|| unsafe { libc::tcgetattr(fd, termios.as_mut_ptr()) })?;
let mut termios = unsafe { termios.assume_init() };
let original = termios;
termios::cfmakeraw(&mut termios);
termios::tcsetattr(fd, termios::TCSADRAIN, &termios)?;
unsafe { libc::cfmakeraw(&mut termios) };
c_result(|| unsafe { libc::tcsetattr(fd, libc::TCSADRAIN, &termios) })?;
let rv = unsafe {
let read = libc::read(fd, buf.as_mut_ptr() as *mut libc::c_void, 1);
if read < 0 {
Expand All @@ -99,9 +112,9 @@ pub fn read_single_key() -> io::Result<Key> {
"read interrupted",
))
} else {
Ok(key_from_escape_codes(&buf[..(read+1) as usize]))
Ok(key_from_escape_codes(&buf[..(read + 1) as usize]))
}
} else if buf[0] & 224u8 == 192u8 {
} else if buf[0] & 224u8 == 192u8 {
// a two byte unicode character
let read = libc::read(fd, buf[1..].as_mut_ptr() as *mut libc::c_void, 1);
if read < 0 {
Expand All @@ -114,7 +127,7 @@ pub fn read_single_key() -> io::Result<Key> {
} else {
Ok(key_from_escape_codes(&buf[..2 as usize]))
}
} else if buf[0] & 240u8 == 224u8 {
} else if buf[0] & 240u8 == 224u8 {
// a three byte unicode character
let read = libc::read(fd, buf[1..].as_mut_ptr() as *mut libc::c_void, 2);
if read < 0 {
Expand All @@ -127,7 +140,7 @@ pub fn read_single_key() -> io::Result<Key> {
} else {
Ok(key_from_escape_codes(&buf[..3 as usize]))
}
} else if buf[0] & 248u8 == 240u8 {
} else if buf[0] & 248u8 == 240u8 {
// a four byte unicode character
let read = libc::read(fd, buf[1..].as_mut_ptr() as *mut libc::c_void, 3);
if read < 0 {
Expand All @@ -149,7 +162,7 @@ pub fn read_single_key() -> io::Result<Key> {
Ok(key_from_escape_codes(&buf[..read as usize]))
}
};
termios::tcsetattr(fd, termios::TCSADRAIN, &original)?;
c_result(|| unsafe { libc::tcsetattr(fd, libc::TCSADRAIN, &original) })?;

// if the user hit ^C we want to signal SIGINT to outselves.
if let Err(ref err) = rv {
Expand Down

0 comments on commit 0da89c5

Please sign in to comment.