2015-02-25 07:27:20 +00:00
|
|
|
use io;
|
|
|
|
use libc;
|
|
|
|
use sys::fd::FileDesc;
|
|
|
|
|
|
|
|
pub struct Stdin(());
|
|
|
|
pub struct Stdout(());
|
|
|
|
pub struct Stderr(());
|
|
|
|
|
|
|
|
impl Stdin {
|
2015-06-10 04:39:36 +00:00
|
|
|
pub fn new() -> io::Result<Stdin> { Ok(Stdin(())) }
|
2015-02-25 07:27:20 +00:00
|
|
|
|
|
|
|
pub fn read(&self, data: &mut [u8]) -> io::Result<usize> {
|
|
|
|
let fd = FileDesc::new(libc::STDIN_FILENO);
|
|
|
|
let ret = fd.read(data);
|
|
|
|
fd.into_raw();
|
2015-09-07 22:36:29 +00:00
|
|
|
ret
|
2015-02-25 07:27:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Stdout {
|
2015-06-10 04:39:36 +00:00
|
|
|
pub fn new() -> io::Result<Stdout> { Ok(Stdout(())) }
|
2015-02-25 07:27:20 +00:00
|
|
|
|
|
|
|
pub fn write(&self, data: &[u8]) -> io::Result<usize> {
|
|
|
|
let fd = FileDesc::new(libc::STDOUT_FILENO);
|
|
|
|
let ret = fd.write(data);
|
|
|
|
fd.into_raw();
|
2015-09-07 22:36:29 +00:00
|
|
|
ret
|
2015-02-25 07:27:20 +00:00
|
|
|
}
|
2016-11-29 01:25:47 +00:00
|
|
|
|
|
|
|
pub fn flush(&self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-02-25 07:27:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Stderr {
|
2015-06-10 04:39:36 +00:00
|
|
|
pub fn new() -> io::Result<Stderr> { Ok(Stderr(())) }
|
2015-02-25 07:27:20 +00:00
|
|
|
|
|
|
|
pub fn write(&self, data: &[u8]) -> io::Result<usize> {
|
|
|
|
let fd = FileDesc::new(libc::STDERR_FILENO);
|
|
|
|
let ret = fd.write(data);
|
|
|
|
fd.into_raw();
|
2015-09-07 22:36:29 +00:00
|
|
|
ret
|
2015-02-25 07:27:20 +00:00
|
|
|
}
|
2016-11-29 01:25:47 +00:00
|
|
|
|
|
|
|
pub fn flush(&self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2015-02-25 07:27:20 +00:00
|
|
|
}
|
2015-03-11 22:24:14 +00:00
|
|
|
|
|
|
|
// FIXME: right now this raw stderr handle is used in a few places because
|
|
|
|
// std::io::stderr_raw isn't exposed, but once that's exposed this impl
|
|
|
|
// should go away
|
|
|
|
impl io::Write for Stderr {
|
|
|
|
fn write(&mut self, data: &[u8]) -> io::Result<usize> {
|
|
|
|
Stderr::write(self, data)
|
|
|
|
}
|
2016-11-29 04:06:42 +00:00
|
|
|
|
2016-11-29 01:25:47 +00:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Stderr::flush(self)
|
|
|
|
}
|
2015-03-11 22:24:14 +00:00
|
|
|
}
|
2016-09-22 00:29:00 +00:00
|
|
|
|
2017-11-01 19:50:13 +00:00
|
|
|
pub fn is_ebadf(err: &io::Error) -> bool {
|
|
|
|
err.raw_os_error() == Some(libc::EBADF as i32)
|
|
|
|
}
|
|
|
|
|
2016-09-30 21:01:53 +00:00
|
|
|
pub const STDIN_BUF_SIZE: usize = ::sys_common::io::DEFAULT_BUF_SIZE;
|
2018-03-29 21:59:13 +00:00
|
|
|
|
2018-08-27 16:57:51 +00:00
|
|
|
pub fn panic_output() -> Option<impl io::Write> {
|
|
|
|
Stderr::new().ok()
|
2018-03-29 21:59:13 +00:00
|
|
|
}
|