use super::IStdout;
use std::io::{self, stdout, Stdout, Write};
pub struct AnsiOutput {
pub handle: Stdout,
}
impl IStdout for AnsiOutput {
fn write_str(&self, string: &str) -> io::Result<usize> {
let out = &self.handle;
let mut handle = out.lock();
let amt = handle.write(string.as_bytes())?;
handle.flush()?;
Ok(amt)
}
fn write(&self, buf: &[u8]) -> io::Result<usize> {
let out = &self.handle;
let mut handle = out.lock();
handle.write(buf)
}
fn flush(&self) -> io::Result<()> {
let out = &self.handle;
let mut handle = out.lock();
handle.flush()
}
}
impl AnsiOutput {
pub fn new() -> Self {
AnsiOutput { handle: stdout() }
}
}