mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-01 22:16:40 +00:00
234 lines
7 KiB
Rust
234 lines
7 KiB
Rust
use lazy_static::lazy_static;
|
|
use std::pin::Pin;
|
|
use std::sync::Mutex;
|
|
|
|
use crate::future::Future;
|
|
use crate::io::{self, Write};
|
|
use crate::task::{blocking, Context, JoinHandle, Poll};
|
|
|
|
/// Constructs a new handle to the standard error of the current process.
|
|
///
|
|
/// This function is an async version of [`std::io::stderr`].
|
|
///
|
|
/// [`std::io::stderr`]: https://doc.rust-lang.org/std/io/fn.stderr.html
|
|
///
|
|
/// # Examples
|
|
///
|
|
/// ```no_run
|
|
/// # fn main() -> std::io::Result<()> { async_std::task::block_on(async {
|
|
/// #
|
|
/// use async_std::io;
|
|
/// use async_std::prelude::*;
|
|
///
|
|
/// let mut stderr = io::stderr();
|
|
/// stderr.write_all(b"Hello, world!").await?;
|
|
/// #
|
|
/// # Ok(()) }) }
|
|
/// ```
|
|
pub fn stderr() -> Stderr {
|
|
Stderr(Mutex::new(State::Idle(Some(Inner {
|
|
stderr: std::io::stderr(),
|
|
buf: Vec::new(),
|
|
last_op: None,
|
|
}))))
|
|
}
|
|
|
|
/// A handle to the standard error of the current process.
|
|
///
|
|
/// Created by the [`stderr`] function.
|
|
///
|
|
/// This type is an async version of [`std::io::Stderr`].
|
|
///
|
|
/// [`stderr`]: fn.stderr.html
|
|
/// [`std::io::Stderr`]: https://doc.rust-lang.org/std/io/struct.Stderr.html
|
|
#[derive(Debug)]
|
|
pub struct Stderr(Mutex<State>);
|
|
|
|
#[derive(Debug)]
|
|
pub struct StderrLock<'a>(std::io::StderrLock<'a>);
|
|
|
|
unsafe impl Send for StderrLock<'_> {}
|
|
|
|
/// The state of the asynchronous stderr.
|
|
///
|
|
/// The stderr can be either idle or busy performing an asynchronous operation.
|
|
#[derive(Debug)]
|
|
enum State {
|
|
/// The stderr is idle.
|
|
Idle(Option<Inner>),
|
|
|
|
/// The stderr is blocked on an asynchronous operation.
|
|
///
|
|
/// Awaiting this operation will result in the new state of the stderr.
|
|
Busy(JoinHandle<State>),
|
|
}
|
|
|
|
/// Inner representation of the asynchronous stderr.
|
|
#[derive(Debug)]
|
|
struct Inner {
|
|
/// The blocking stderr handle.
|
|
stderr: std::io::Stderr,
|
|
|
|
/// The write buffer.
|
|
buf: Vec<u8>,
|
|
|
|
/// The result of the last asynchronous operation on the stderr.
|
|
last_op: Option<Operation>,
|
|
}
|
|
|
|
/// Possible results of an asynchronous operation on the stderr.
|
|
#[derive(Debug)]
|
|
enum Operation {
|
|
Write(io::Result<usize>),
|
|
Flush(io::Result<()>),
|
|
}
|
|
|
|
impl Stderr {
|
|
/// Locks this handle to the standard error stream, returning a writable guard.
|
|
///
|
|
/// The lock is released when the returned lock goes out of scope. The returned guard also implements the Write trait for writing data.
|
|
///
|
|
/// # Examples
|
|
///
|
|
/// ```no_run
|
|
/// # fn main() -> std::io::Result<()> { async_std::task::block_on(async {
|
|
/// #
|
|
/// use async_std::io;
|
|
/// use std::io::Write;
|
|
///
|
|
/// let stderr = io::stderr();
|
|
/// let mut handle = stderr.lock().await;
|
|
///
|
|
/// handle.write_all(b"hello world")?;
|
|
/// #
|
|
/// # Ok(()) }) }
|
|
/// ```
|
|
pub async fn lock(&self) -> StderrLock<'static> {
|
|
lazy_static! {
|
|
static ref STDERR: std::io::Stderr = std::io::stderr();
|
|
}
|
|
|
|
blocking::spawn(move || StderrLock(STDERR.lock())).await
|
|
}
|
|
}
|
|
|
|
impl Write for Stderr {
|
|
fn poll_write(
|
|
mut self: Pin<&mut Self>,
|
|
cx: &mut Context<'_>,
|
|
buf: &[u8],
|
|
) -> Poll<io::Result<usize>> {
|
|
let state = &mut *self.0.lock().unwrap();
|
|
|
|
loop {
|
|
match state {
|
|
State::Idle(opt) => {
|
|
let inner = opt.as_mut().unwrap();
|
|
|
|
// Check if the operation has completed.
|
|
if let Some(Operation::Write(res)) = inner.last_op.take() {
|
|
let n = res?;
|
|
|
|
// If more data was written than is available in the buffer, let's retry
|
|
// the write operation.
|
|
if n <= buf.len() {
|
|
return Poll::Ready(Ok(n));
|
|
}
|
|
} else {
|
|
let mut inner = opt.take().unwrap();
|
|
|
|
// Set the length of the inner buffer to the length of the provided buffer.
|
|
if inner.buf.len() < buf.len() {
|
|
inner.buf.reserve(buf.len() - inner.buf.len());
|
|
}
|
|
unsafe {
|
|
inner.buf.set_len(buf.len());
|
|
}
|
|
|
|
// Copy the data to write into the inner buffer.
|
|
inner.buf[..buf.len()].copy_from_slice(buf);
|
|
|
|
// Start the operation asynchronously.
|
|
*state = State::Busy(blocking::spawn(move || {
|
|
let res = std::io::Write::write(&mut inner.stderr, &inner.buf);
|
|
inner.last_op = Some(Operation::Write(res));
|
|
State::Idle(Some(inner))
|
|
}));
|
|
}
|
|
}
|
|
// Poll the asynchronous operation the stderr is currently blocked on.
|
|
State::Busy(task) => *state = futures_core::ready!(Pin::new(task).poll(cx)),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
let state = &mut *self.0.lock().unwrap();
|
|
|
|
loop {
|
|
match state {
|
|
State::Idle(opt) => {
|
|
let inner = opt.as_mut().unwrap();
|
|
|
|
// Check if the operation has completed.
|
|
if let Some(Operation::Flush(res)) = inner.last_op.take() {
|
|
return Poll::Ready(res);
|
|
} else {
|
|
let mut inner = opt.take().unwrap();
|
|
|
|
// Start the operation asynchronously.
|
|
*state = State::Busy(blocking::spawn(move || {
|
|
let res = std::io::Write::flush(&mut inner.stderr);
|
|
inner.last_op = Some(Operation::Flush(res));
|
|
State::Idle(Some(inner))
|
|
}));
|
|
}
|
|
}
|
|
// Poll the asynchronous operation the stderr is currently blocked on.
|
|
State::Busy(task) => *state = futures_core::ready!(Pin::new(task).poll(cx)),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
self.poll_flush(cx)
|
|
}
|
|
}
|
|
|
|
cfg_unix! {
|
|
use crate::os::unix::io::{AsRawFd, RawFd};
|
|
|
|
impl AsRawFd for Stderr {
|
|
fn as_raw_fd(&self) -> RawFd {
|
|
std::io::stderr().as_raw_fd()
|
|
}
|
|
}
|
|
}
|
|
|
|
cfg_windows! {
|
|
use crate::os::windows::io::{AsRawHandle, RawHandle};
|
|
|
|
impl AsRawHandle for Stderr {
|
|
fn as_raw_handle(&self) -> RawHandle {
|
|
std::io::stderr().as_raw_handle()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Write for StderrLock<'_> {
|
|
fn poll_write(
|
|
self: Pin<&mut Self>,
|
|
_cx: &mut Context<'_>,
|
|
_buf: &[u8],
|
|
) -> Poll<io::Result<usize>> {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn poll_close(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
unimplemented!()
|
|
}
|
|
}
|