From 898ca615b5d573120a62cc01b2fb43f1d707f69f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 9 Mar 2021 03:19:05 -0500 Subject: make raw_guard also async i think tcsetattr etc can actually block in some cases --- src/raw_guard.rs | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 src/raw_guard.rs (limited to 'src/raw_guard.rs') diff --git a/src/raw_guard.rs b/src/raw_guard.rs deleted file mode 100644 index 3835181..0000000 --- a/src/raw_guard.rs +++ /dev/null @@ -1,49 +0,0 @@ -use crate::error::*; - -use std::os::unix::io::AsRawFd as _; - -pub struct RawGuard { - termios: nix::sys::termios::Termios, - cleaned_up: bool, -} - -impl RawGuard { - #[allow(clippy::new_without_default)] - pub fn new() -> Result { - let stdin = std::io::stdin().as_raw_fd(); - let termios = - nix::sys::termios::tcgetattr(stdin).map_err(Error::SetRaw)?; - let mut termios_raw = termios.clone(); - nix::sys::termios::cfmakeraw(&mut termios_raw); - nix::sys::termios::tcsetattr( - stdin, - nix::sys::termios::SetArg::TCSANOW, - &termios_raw, - ) - .map_err(Error::SetRaw)?; - Ok(Self { - termios, - cleaned_up: false, - }) - } - - pub fn cleanup(&mut self) -> Result<()> { - if self.cleaned_up { - return Ok(()); - } - self.cleaned_up = true; - let stdin = std::io::stdin().as_raw_fd(); - nix::sys::termios::tcsetattr( - stdin, - nix::sys::termios::SetArg::TCSANOW, - &self.termios, - ) - .map_err(Error::UnsetRaw) - } -} - -impl Drop for RawGuard { - fn drop(&mut self) { - let _ = self.cleanup(); - } -} -- cgit v1.2.3-54-g00ecf