termion/src/raw.rs

116 lines
2.9 KiB
Rust
Raw Normal View History

2016-03-13 10:55:24 +00:00
use std::io::{Write, Error, ErrorKind, Result as IoResult};
2016-03-07 21:19:35 +00:00
use std::ops::{Deref, DerefMut};
2016-03-07 15:01:20 +00:00
2016-03-07 21:19:35 +00:00
/// A terminal restorer, which keeps the previous state of the terminal, and restores it, when
/// dropped.
#[cfg(target_os = "redox")]
2016-03-10 15:24:41 +00:00
pub struct RawTerminal<W> {
2016-03-07 21:19:35 +00:00
output: W,
2016-03-07 15:01:20 +00:00
}
2016-03-07 21:19:35 +00:00
#[cfg(target_os = "redox")]
2016-03-10 15:24:41 +00:00
impl<W: Write> Drop for RawTerminal<W> {
2016-03-07 21:19:35 +00:00
fn drop(&mut self) {
use TermControl;
self.csi(b"R");
2016-03-07 15:01:20 +00:00
}
}
2016-03-07 21:19:35 +00:00
#[cfg(not(target_os = "redox"))]
use termios::Termios;
2016-03-07 15:01:20 +00:00
/// A terminal restorer, which keeps the previous state of the terminal, and restores it, when
/// dropped.
2016-03-07 21:19:35 +00:00
#[cfg(not(target_os = "redox"))]
2016-03-10 15:24:41 +00:00
pub struct RawTerminal<W> {
2016-03-07 21:19:35 +00:00
prev_ios: Termios,
output: W,
2016-03-07 15:01:20 +00:00
}
2016-03-07 21:19:35 +00:00
#[cfg(not(target_os = "redox"))]
2016-03-10 15:24:41 +00:00
impl<W> Drop for RawTerminal<W> {
2016-03-07 15:01:20 +00:00
fn drop(&mut self) {
2016-03-07 21:19:35 +00:00
use termios::set_terminal_attr;
2016-03-07 15:01:20 +00:00
set_terminal_attr(&mut self.prev_ios as *mut _);
}
}
2016-03-07 21:19:35 +00:00
2016-03-10 15:24:41 +00:00
impl<W> Deref for RawTerminal<W> {
2016-03-07 21:19:35 +00:00
type Target = W;
fn deref(&self) -> &W {
&self.output
}
}
2016-03-10 15:24:41 +00:00
impl<W> DerefMut for RawTerminal<W> {
2016-03-07 21:19:35 +00:00
fn deref_mut(&mut self) -> &mut W {
&mut self.output
}
}
2016-03-13 10:55:24 +00:00
impl<W: Write> Write for RawTerminal<W> {
fn write(&mut self, buf: &[u8]) -> IoResult<usize> {
self.output.write(buf)
}
fn flush(&mut self) -> IoResult<()> {
self.output.flush()
}
}
/// Types which can be converted into "raw mode".
2016-03-07 21:19:35 +00:00
pub trait IntoRawMode: Sized {
/// Switch to raw mode.
///
/// Raw mode means that stdin won't be printed (it will instead have to be written manually by the
/// program). Furthermore, the input isn't canonicalised or buffered (that is, you can read from
/// stdin one byte of a time). The output is neither modified in any way.
2016-03-13 10:55:24 +00:00
fn into_raw_mode(self) -> IoResult<RawTerminal<Self>>;
2016-03-07 21:19:35 +00:00
}
impl<W: Write> IntoRawMode for W {
#[cfg(not(target_os = "redox"))]
2016-03-13 10:55:24 +00:00
fn into_raw_mode(self) -> IoResult<RawTerminal<W>> {
2016-03-07 21:19:35 +00:00
use termios::{cfmakeraw, get_terminal_attr, set_terminal_attr};
2016-03-13 10:55:24 +00:00
let (mut ios, exit) = get_terminal_attr();
2016-03-07 21:19:35 +00:00
let prev_ios = ios.clone();
2016-03-13 10:55:24 +00:00
if exit != 0 {
return Err(Error::new(ErrorKind::Other, "Unable to get Termios attribute."));
2016-03-07 21:19:35 +00:00
}
unsafe {
cfmakeraw(&mut ios);
}
if set_terminal_attr(&mut ios as *mut _) != 0 {
2016-03-13 10:55:24 +00:00
Err(Error::new(ErrorKind::Other, "Unable to set Termios attribute."))
2016-03-07 21:19:35 +00:00
} else {
2016-03-10 15:24:41 +00:00
Ok(RawTerminal {
2016-03-07 21:19:35 +00:00
prev_ios: prev_ios,
output: self,
})
}
}
#[cfg(target_os = "redox")]
2016-03-13 10:55:24 +00:00
fn into_raw_mode(self) -> IoResult<RawTerminal<W>> {
2016-03-07 21:22:25 +00:00
use TermControl;
2016-03-13 10:55:24 +00:00
self.csi("r").map(|_| RawTerminal {
output: self,
})
2016-03-07 21:19:35 +00:00
}
}
2016-03-09 16:18:31 +00:00
#[cfg(test)]
mod test {
use super::*;
use std::io::{Write, stdout};
#[test]
fn test_into_raw_mode() {
let mut out = stdout().into_raw_mode().unwrap();
out.write(b"this is a test, muahhahahah").unwrap();
}
}