2019-04-27 08:34:08 -07:00
|
|
|
use crate::io::{self, IoSlice, IoSliceMut};
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
use crate::mem::ManuallyDrop;
|
2019-11-27 10:28:39 -08:00
|
|
|
use crate::sys::fd::FileDesc;
|
2015-02-24 23:27:20 -08:00
|
|
|
|
|
|
|
|
pub struct Stdin(());
|
|
|
|
|
pub struct Stdout(());
|
|
|
|
|
pub struct Stderr(());
|
|
|
|
|
|
|
|
|
|
impl Stdin {
|
2020-08-20 00:00:00 +00:00
|
|
|
pub fn new() -> Stdin {
|
|
|
|
|
Stdin(())
|
2019-11-27 10:28:39 -08:00
|
|
|
}
|
2019-02-20 08:18:29 +01:00
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
|
2019-02-20 08:18:29 +01:00
|
|
|
impl io::Read for Stdin {
|
|
|
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDIN_FILENO)).read(buf)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDIN_FILENO)).read_vectored(bufs)
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
2020-01-03 11:26:05 -08:00
|
|
|
|
|
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_read_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Stdout {
|
2020-08-20 00:00:00 +00:00
|
|
|
pub fn new() -> Stdout {
|
|
|
|
|
Stdout(())
|
2019-11-27 10:28:39 -08:00
|
|
|
}
|
2019-02-20 08:18:29 +01:00
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
|
2019-02-20 08:18:29 +01:00
|
|
|
impl io::Write for Stdout {
|
|
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDOUT_FILENO)).write(buf)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDOUT_FILENO)).write_vectored(bufs)
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
2016-11-28 18:25:47 -07:00
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-20 08:18:29 +01:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
2016-11-28 18:25:47 -07:00
|
|
|
Ok(())
|
|
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Stderr {
|
2020-08-20 00:00:00 +00:00
|
|
|
pub fn new() -> Stderr {
|
|
|
|
|
Stderr(())
|
2019-11-27 10:28:39 -08:00
|
|
|
}
|
2019-02-20 08:18:29 +01:00
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
|
2019-02-20 08:18:29 +01:00
|
|
|
impl io::Write for Stderr {
|
|
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDERR_FILENO)).write(buf)
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-27 08:34:08 -07:00
|
|
|
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
|
std: Add `{read,write}_vectored` for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:
* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`
Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
|
|
|
ManuallyDrop::new(FileDesc::new(libc::STDERR_FILENO)).write_vectored(bufs)
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
2016-11-28 18:25:47 -07:00
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-20 08:18:29 +01:00
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
2016-11-28 18:25:47 -07:00
|
|
|
Ok(())
|
|
|
|
|
}
|
2015-02-24 23:27:20 -08:00
|
|
|
}
|
2015-03-11 15:24:14 -07:00
|
|
|
|
2017-11-01 12:50:13 -07:00
|
|
|
pub fn is_ebadf(err: &io::Error) -> bool {
|
|
|
|
|
err.raw_os_error() == Some(libc::EBADF as i32)
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 04:23:21 +09:00
|
|
|
pub const STDIN_BUF_SIZE: usize = crate::sys_common::io::DEFAULT_BUF_SIZE;
|
2018-03-29 14:59:13 -07:00
|
|
|
|
2018-08-27 09:57:51 -07:00
|
|
|
pub fn panic_output() -> Option<impl io::Write> {
|
2020-08-20 00:00:00 +00:00
|
|
|
Some(Stderr::new())
|
2018-03-29 14:59:13 -07:00
|
|
|
}
|