2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-06 16:36:40 +00:00

Merge branch 'master' into warnings

This commit is contained in:
Caden Haustein 2021-05-31 19:30:47 +00:00 committed by GitHub
commit ca7f5b6de7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 42 additions and 50 deletions

View file

@ -2,7 +2,7 @@
Now that we know what Futures are, we want to run them! Now that we know what Futures are, we want to run them!
In `async-std`, the [`tasks`][tasks] module is responsible for this. The simplest way is using the `block_on` function: In `async-std`, the [`task`][tasks] module is responsible for this. The simplest way is using the `block_on` function:
```rust,edition2018 ```rust,edition2018
# extern crate async_std; # extern crate async_std;

View file

@ -11,7 +11,7 @@ pub struct WriteFmtFuture<'a, T: Unpin + ?Sized> {
pub(crate) writer: &'a mut T, pub(crate) writer: &'a mut T,
pub(crate) res: Option<io::Result<Vec<u8>>>, pub(crate) res: Option<io::Result<Vec<u8>>>,
pub(crate) buffer: Option<Vec<u8>>, pub(crate) buffer: Option<Vec<u8>>,
pub(crate) amt: u64, pub(crate) amt: usize,
} }
impl<T: Write + Unpin + ?Sized> Future for WriteFmtFuture<'_, T> { impl<T: Write + Unpin + ?Sized> Future for WriteFmtFuture<'_, T> {
@ -37,15 +37,15 @@ impl<T: Write + Unpin + ?Sized> Future for WriteFmtFuture<'_, T> {
// Copy the data from the buffer into the writer until it's done. // Copy the data from the buffer into the writer until it's done.
loop { loop {
if *amt == buffer.len() as u64 { if *amt == buffer.len() {
futures_core::ready!(Pin::new(&mut **writer).poll_flush(cx))?; futures_core::ready!(Pin::new(&mut **writer).poll_flush(cx))?;
return Poll::Ready(Ok(())); return Poll::Ready(Ok(()));
} }
let i = futures_core::ready!(Pin::new(&mut **writer).poll_write(cx, buffer))?; let i = futures_core::ready!(Pin::new(&mut **writer).poll_write(cx, &buffer[*amt..]))?;
if i == 0 { if i == 0 {
return Poll::Ready(Err(io::ErrorKind::WriteZero.into())); return Poll::Ready(Err(io::ErrorKind::WriteZero.into()));
} }
*amt += i as u64; *amt += i;
} }
} }
} }

View file

@ -111,7 +111,7 @@
//! [files]: fs/struct.File.html //! [files]: fs/struct.File.html
//! [TCP]: net/struct.TcpStream.html //! [TCP]: net/struct.TcpStream.html
//! [UDP]: net/struct.UdpSocket.html //! [UDP]: net/struct.UdpSocket.html
//! [`io`]: fs/struct.File.html //! [`io`]: io/index.html
//! [`sync`]: sync/index.html //! [`sync`]: sync/index.html
//! [`channel`]: channel/index.html //! [`channel`]: channel/index.html
//! //!

View file

@ -1,6 +1,6 @@
use std::fmt; use std::fmt;
use std::future::Future;
use std::net::SocketAddr; use std::net::SocketAddr;
use std::net::TcpStream as StdTcpStream;
use std::pin::Pin; use std::pin::Pin;
use async_io::Async; use async_io::Async;
@ -149,8 +149,7 @@ impl TcpListener {
#[must_use] #[must_use]
pub fn incoming(&self) -> Incoming<'_> { pub fn incoming(&self) -> Incoming<'_> {
Incoming { Incoming {
listener: self, incoming: Box::pin(self.watcher.incoming()),
accept: None,
} }
} }
@ -188,35 +187,21 @@ impl TcpListener {
/// [`TcpListener`]: struct.TcpListener.html /// [`TcpListener`]: struct.TcpListener.html
/// [`std::net::Incoming`]: https://doc.rust-lang.org/std/net/struct.Incoming.html /// [`std::net::Incoming`]: https://doc.rust-lang.org/std/net/struct.Incoming.html
pub struct Incoming<'a> { pub struct Incoming<'a> {
listener: &'a TcpListener, incoming: Pin<Box<dyn Stream<Item = io::Result<Async<StdTcpStream>>> + Send + Sync + 'a>>,
accept: Option<
Pin<Box<dyn Future<Output = io::Result<(TcpStream, SocketAddr)>> + Send + Sync + 'a>>,
>,
} }
impl Stream for Incoming<'_> { impl Stream for Incoming<'_> {
type Item = io::Result<TcpStream>; type Item = io::Result<TcpStream>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop { let res = ready!(Pin::new(&mut self.incoming).poll_next(cx));
if self.accept.is_none() { Poll::Ready(res.map(|res| res.map(|stream| TcpStream { watcher: Arc::new(stream) })))
self.accept = Some(Box::pin(self.listener.accept()));
}
if let Some(f) = &mut self.accept {
let res = ready!(f.as_mut().poll(cx));
self.accept = None;
return Poll::Ready(Some(res.map(|(stream, _)| stream)));
}
}
} }
} }
impl fmt::Debug for Incoming<'_> { impl fmt::Debug for Incoming<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Incoming") write!(f, "Incoming {{ ... }}")
.field("listener", self.listener)
.finish()
} }
} }

View file

@ -1,8 +1,8 @@
//! Unix-specific networking extensions. //! Unix-specific networking extensions.
use std::fmt; use std::fmt;
use std::future::Future;
use std::os::unix::net::UnixListener as StdUnixListener; use std::os::unix::net::UnixListener as StdUnixListener;
use std::os::unix::net::UnixStream as StdUnixStream;
use std::pin::Pin; use std::pin::Pin;
use async_io::Async; use async_io::Async;
@ -130,8 +130,7 @@ impl UnixListener {
#[must_use] #[must_use]
pub fn incoming(&self) -> Incoming<'_> { pub fn incoming(&self) -> Incoming<'_> {
Incoming { Incoming {
listener: self, incoming: Box::pin(self.watcher.incoming()),
accept: None,
} }
} }
@ -179,34 +178,21 @@ impl fmt::Debug for UnixListener {
/// [`incoming`]: struct.UnixListener.html#method.incoming /// [`incoming`]: struct.UnixListener.html#method.incoming
/// [`UnixListener`]: struct.UnixListener.html /// [`UnixListener`]: struct.UnixListener.html
pub struct Incoming<'a> { pub struct Incoming<'a> {
listener: &'a UnixListener, incoming: Pin<Box<dyn Stream<Item = io::Result<Async<StdUnixStream>>> + Send + Sync + 'a>>,
accept: Option<
Pin<Box<dyn Future<Output = io::Result<(UnixStream, SocketAddr)>> + Send + Sync + 'a>>,
>,
} }
impl Stream for Incoming<'_> { impl Stream for Incoming<'_> {
type Item = io::Result<UnixStream>; type Item = io::Result<UnixStream>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop { let res = ready!(Pin::new(&mut self.incoming).poll_next(cx));
if self.accept.is_none() { Poll::Ready(res.map(|res| res.map(|stream| UnixStream { watcher: Arc::new(stream) })))
self.accept = Some(Box::pin(self.listener.accept()));
}
if let Some(f) = &mut self.accept {
let res = ready!(f.as_mut().poll(cx));
self.accept = None;
return Poll::Ready(Some(res.map(|(stream, _)| stream)));
}
}
} }
} }
impl fmt::Debug for Incoming<'_> { impl fmt::Debug for Incoming<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Incoming") f.debug_struct("Incoming")
.field("listener", self.listener)
.finish() .finish()
} }
} }

View file

@ -22,7 +22,28 @@ use crate::task::{Task, TaskLocalsWrapper};
/// # /// #
/// # }) /// # })
/// ``` /// ```
#[must_use] pub fn current() -> Task { #[must_use]
TaskLocalsWrapper::get_current(|t| t.task().clone()) pub fn current() -> Task {
.expect("`task::current()` called outside the context of a task") try_current().expect("`task::current()` called outside the context of a task")
} }
/// Returns a handle to the current task if called within the context of a task created by [`block_on`],
/// [`spawn`], or [`Builder::spawn`], otherwise returns `None`.
///
/// [`block_on`]: fn.block_on.html
/// [`spawn`]: fn.spawn.html
/// [`Builder::spawn`]: struct.Builder.html#method.spawn
///
/// # Examples
///
/// ```
/// use async_std::task;
///
/// match task::try_current() {
/// Some(t) => println!("The name of this task is {:?}", t.name()),
/// None => println!("Not inside a task!"),
/// }
/// ```
pub fn try_current() -> Option<Task> {
TaskLocalsWrapper::get_current(|t| t.task().clone())
}

View file

@ -133,7 +133,7 @@ cfg_std! {
cfg_default! { cfg_default! {
pub use block_on::block_on; pub use block_on::block_on;
pub use builder::Builder; pub use builder::Builder;
pub use current::current; pub use current::{current, try_current};
pub use task::Task; pub use task::Task;
pub use task_id::TaskId; pub use task_id::TaskId;
pub use join_handle::JoinHandle; pub use join_handle::JoinHandle;