mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-26 00:00:16 +02:00
sync: polish and update API doc examples (#1398)
- Remove `poll_*` fns from some of the sync types. - Move `AtomicWaker` and `Lock` to the root of the `sync` crate.
This commit is contained in:
@@ -27,10 +27,13 @@ macro_rules! if_fuzz {
|
||||
}}
|
||||
}
|
||||
|
||||
pub mod lock;
|
||||
mod lock;
|
||||
mod loom;
|
||||
pub mod mpsc;
|
||||
pub mod oneshot;
|
||||
pub mod semaphore;
|
||||
pub mod task;
|
||||
mod task;
|
||||
pub mod watch;
|
||||
|
||||
pub use lock::{Lock, LockGuard};
|
||||
pub use task::AtomicWaker;
|
||||
|
||||
+22
-50
@@ -1,39 +1,29 @@
|
||||
//! An asynchronous `Mutex`-like type.
|
||||
//!
|
||||
//! This module provides [`Lock`], a type that acts similarly to an asynchronous `Mutex`, with one
|
||||
//! major difference: the [`LockGuard`] returned by `poll_lock` is not tied to the lifetime of the
|
||||
//! major difference: the [`LockGuard`] returned by `lock` is not tied to the lifetime of the
|
||||
//! `Mutex`. This enables you to acquire a lock, and then pass that guard into a future, and then
|
||||
//! release it at some later point in time.
|
||||
//!
|
||||
//! This allows you to do something along the lines of:
|
||||
//!
|
||||
//! ```rust,no_run
|
||||
//! use futures::{try_ready, future, Poll, Async, Future, Stream};
|
||||
//! use tokio::sync::lock::{Lock, LockGuard};
|
||||
//! #![feature(async_await)]
|
||||
//!
|
||||
//! struct MyType<S> {
|
||||
//! lock: Lock<S>,
|
||||
//! }
|
||||
//! use tokio::sync::Lock;
|
||||
//!
|
||||
//! impl<S> Future for MyType<S>
|
||||
//! where S: Stream<Item = u32> + Send + 'static
|
||||
//! {
|
||||
//! type Item = ();
|
||||
//! type Error = ();
|
||||
//! #[tokio::main]
|
||||
//! async fn main() {
|
||||
//! let mut data1 = Lock::new(0);
|
||||
//! let mut data2 = data1.clone();
|
||||
//!
|
||||
//! fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
||||
//! match self.lock.poll_lock() {
|
||||
//! Async::Ready(mut guard) => {
|
||||
//! tokio::spawn(future::poll_fn(move || {
|
||||
//! let item = try_ready!(guard.poll().map_err(|_| ()));
|
||||
//! println!("item = {:?}", item);
|
||||
//! Ok(().into())
|
||||
//! }));
|
||||
//! Ok(().into())
|
||||
//! },
|
||||
//! Async::NotReady => Ok(Async::NotReady)
|
||||
//! }
|
||||
//! }
|
||||
//! tokio::spawn(async move {
|
||||
//! let mut lock = data2.lock().await;
|
||||
//! *lock += 1;
|
||||
//! });
|
||||
//!
|
||||
//! let mut lock = data1.lock().await;
|
||||
//! *lock += 1;
|
||||
//! }
|
||||
//! ```
|
||||
//!
|
||||
@@ -43,11 +33,10 @@
|
||||
use crate::semaphore;
|
||||
|
||||
use futures_core::ready;
|
||||
use futures_util::future::poll_fn;
|
||||
use std::cell::UnsafeCell;
|
||||
use std::fmt;
|
||||
use std::future::Future;
|
||||
use std::ops::{Deref, DerefMut};
|
||||
use std::pin::Pin;
|
||||
use std::sync::Arc;
|
||||
use std::task::Poll::Ready;
|
||||
use std::task::{Context, Poll};
|
||||
@@ -55,8 +44,8 @@ use std::task::{Context, Poll};
|
||||
/// An asynchronous mutual exclusion primitive useful for protecting shared data
|
||||
///
|
||||
/// Each mutex has a type parameter (`T`) which represents the data that it is protecting. The data
|
||||
/// can only be accessed through the RAII guards returned from `poll_lock`, which guarantees that
|
||||
/// the data is only ever accessed when the mutex is locked.
|
||||
/// can only be accessed through the RAII guards returned from `lock`, which
|
||||
/// guarantees that the data is only ever accessed when the mutex is locked.
|
||||
#[derive(Debug)]
|
||||
pub struct Lock<T> {
|
||||
inner: Arc<State<T>>,
|
||||
@@ -69,17 +58,11 @@ pub struct Lock<T> {
|
||||
/// internally keeps a reference-couned pointer to the original `Lock`, so even if the lock goes
|
||||
/// away, the guard remains valid.
|
||||
///
|
||||
/// The lock is automatically released whenever the guard is dropped, at which point `poll_lock`
|
||||
/// The lock is automatically released whenever the guard is dropped, at which point `lock`
|
||||
/// will succeed yet again.
|
||||
#[derive(Debug)]
|
||||
pub struct LockGuard<T>(Lock<T>);
|
||||
|
||||
/// A future that resolves to a `LockGuard`.
|
||||
#[derive(Debug)]
|
||||
pub struct LockFuture<'a, T> {
|
||||
lock: &'a mut Lock<T>,
|
||||
}
|
||||
|
||||
// As long as T: Send, it's fine to send and share Lock<T> between threads.
|
||||
// If T was not Send, sending and sharing a Lock<T> would be bad, since you can access T through
|
||||
// Lock<T>.
|
||||
@@ -111,10 +94,7 @@ impl<T> Lock<T> {
|
||||
}
|
||||
}
|
||||
|
||||
/// Try to acquire the lock.
|
||||
///
|
||||
/// If the lock is already held, the current task is notified when it is released.
|
||||
pub fn poll_lock(&mut self, cx: &mut Context<'_>) -> Poll<LockGuard<T>> {
|
||||
fn poll_lock(&mut self, cx: &mut Context<'_>) -> Poll<LockGuard<T>> {
|
||||
ready!(self.permit.poll_acquire(cx, &self.inner.s)).unwrap_or_else(|_| {
|
||||
// The semaphore was closed. but, we never explicitly close it, and we have a
|
||||
// handle to it through the Arc, which means that this can never happen.
|
||||
@@ -131,8 +111,9 @@ impl<T> Lock<T> {
|
||||
}
|
||||
|
||||
/// A future that resolves on acquiring the lock and returns the `LockGuard`.
|
||||
pub fn lock(&mut self) -> LockFuture<'_, T> {
|
||||
LockFuture { lock: self }
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn lock(&mut self) -> LockGuard<T> {
|
||||
poll_fn(|cx| self.poll_lock(cx)).await
|
||||
}
|
||||
}
|
||||
|
||||
@@ -193,12 +174,3 @@ impl<T: fmt::Display> fmt::Display for LockGuard<T> {
|
||||
fmt::Display::fmt(&**self, f)
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> Future for LockFuture<'_, T> {
|
||||
type Output = LockGuard<T>;
|
||||
|
||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||
let me = &mut *self;
|
||||
Pin::new(&mut *me.lock).poll_lock(cx)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,34 +82,27 @@ pub struct RecvError(());
|
||||
/// # Examples
|
||||
///
|
||||
/// ```rust
|
||||
/// use tokio::sync::mpsc::channel;
|
||||
/// use tokio::prelude::*;
|
||||
/// use futures::future::lazy;
|
||||
/// #![feature(async_await)]
|
||||
///
|
||||
/// # fn some_computation() -> impl Future<Item = (), Error = ()> + Send {
|
||||
/// # futures::future::ok::<(), ()>(())
|
||||
/// # }
|
||||
/// use tokio::sync::mpsc;
|
||||
///
|
||||
/// tokio::run(lazy(|| {
|
||||
/// let (tx, rx) = channel(100);
|
||||
/// #[tokio::main]
|
||||
/// async fn main() {
|
||||
/// let (mut tx, mut rx) = mpsc::channel(100);
|
||||
///
|
||||
/// tokio::spawn({
|
||||
/// some_computation()
|
||||
/// .and_then(|value| {
|
||||
/// tx.send(value)
|
||||
/// .map_err(|_| ())
|
||||
/// })
|
||||
/// .map(|_| ())
|
||||
/// .map_err(|_| ())
|
||||
/// tokio::spawn(async move {
|
||||
/// for i in 0..10 {
|
||||
/// if let Err(_) = tx.send(i).await {
|
||||
/// println!("receiver dropped");
|
||||
/// return;
|
||||
/// }
|
||||
/// }
|
||||
/// });
|
||||
///
|
||||
/// rx.for_each(|value| {
|
||||
/// println!("got value = {:?}", value);
|
||||
/// Ok(())
|
||||
/// })
|
||||
/// .map(|_| ())
|
||||
/// .map_err(|_| ())
|
||||
/// }));
|
||||
/// while let Some(i) = rx.recv().await {
|
||||
/// println!("got = {}", i);
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
pub fn channel<T>(buffer: usize) -> (Sender<T>, Receiver<T>) {
|
||||
assert!(buffer > 0, "mpsc bounded channel requires buffer > 0");
|
||||
@@ -134,7 +127,7 @@ impl<T> Receiver<T> {
|
||||
/// TODO: Dox
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn recv(&mut self) -> Option<T> {
|
||||
use async_util::future::poll_fn;
|
||||
use futures_util::future::poll_fn;
|
||||
|
||||
poll_fn(|cx| self.poll_recv(cx)).await
|
||||
}
|
||||
@@ -202,12 +195,35 @@ impl<T> Sender<T> {
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// unimplemented!();
|
||||
/// In the following example, each call to `send` will block until the
|
||||
/// previously sent value was received.
|
||||
///
|
||||
/// ```rust
|
||||
/// #![feature(async_await)]
|
||||
///
|
||||
/// use tokio::sync::mpsc;
|
||||
///
|
||||
/// #[tokio::main]
|
||||
/// async fn main() {
|
||||
/// let (mut tx, mut rx) = mpsc::channel(1);
|
||||
///
|
||||
/// tokio::spawn(async move {
|
||||
/// for i in 0..10 {
|
||||
/// if let Err(_) = tx.send(i).await {
|
||||
/// println!("receiver dropped");
|
||||
/// return;
|
||||
/// }
|
||||
/// }
|
||||
/// });
|
||||
///
|
||||
/// while let Some(i) = rx.recv().await {
|
||||
/// println!("got = {}", i);
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn send(&mut self, value: T) -> Result<(), SendError> {
|
||||
use async_util::future::poll_fn;
|
||||
use futures_util::future::poll_fn;
|
||||
|
||||
poll_fn(|cx| self.poll_ready(cx)).await?;
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ impl<T> UnboundedReceiver<T> {
|
||||
/// TODO: Dox
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn recv(&mut self) -> Option<T> {
|
||||
use async_util::future::poll_fn;
|
||||
use futures_util::future::poll_fn;
|
||||
|
||||
poll_fn(|cx| self.poll_recv(cx)).await
|
||||
}
|
||||
|
||||
+30
-14
@@ -94,23 +94,25 @@ struct State(usize);
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(async_await)]
|
||||
///
|
||||
/// use tokio::sync::oneshot;
|
||||
/// use futures::Future;
|
||||
/// use std::thread;
|
||||
///
|
||||
/// let (sender, receiver) = oneshot::channel::<i32>();
|
||||
/// #[tokio::main]
|
||||
/// async fn main() {
|
||||
/// let (tx, rx) = oneshot::channel();
|
||||
///
|
||||
/// # let t =
|
||||
/// thread::spawn(|| {
|
||||
/// let future = receiver.map(|i| {
|
||||
/// println!("got: {:?}", i);
|
||||
/// tokio::spawn(async move {
|
||||
/// if let Err(_) = tx.send(3) {
|
||||
/// println!("the receiver dropped");
|
||||
/// }
|
||||
/// });
|
||||
/// // ...
|
||||
/// # return future;
|
||||
/// });
|
||||
///
|
||||
/// sender.send(3).unwrap();
|
||||
/// # t.join().unwrap().wait().unwrap();
|
||||
/// match rx.await {
|
||||
/// Ok(v) => println!("got = {:?}", v),
|
||||
/// Err(_) => println!("the sender dropped"),
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
||||
#[allow(deprecated)]
|
||||
@@ -218,11 +220,25 @@ impl<T> Sender<T> {
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// unimplemented!();
|
||||
/// #![feature(async_await)]
|
||||
///
|
||||
/// use tokio::sync::oneshot;
|
||||
///
|
||||
/// #[tokio::main]
|
||||
/// async fn main() {
|
||||
/// let (mut tx, rx) = oneshot::channel::<()>();
|
||||
///
|
||||
/// tokio::spawn(async move {
|
||||
/// drop(rx);
|
||||
/// });
|
||||
///
|
||||
/// tx.closed().await;
|
||||
/// println!("the receiver dropped");
|
||||
/// }
|
||||
/// ```
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn closed(&mut self) {
|
||||
use async_util::future::poll_fn;
|
||||
use futures_util::future::poll_fn;
|
||||
|
||||
poll_fn(|cx| self.poll_closed(cx)).await
|
||||
}
|
||||
|
||||
+80
-47
@@ -18,20 +18,22 @@
|
||||
//! # Examples
|
||||
//!
|
||||
//! ```
|
||||
//! use tokio::prelude::*;
|
||||
//! #![feature(async_await)]
|
||||
//!
|
||||
//! use tokio::sync::watch;
|
||||
//!
|
||||
//! # tokio::run(futures::future::lazy(|| {
|
||||
//! let (mut tx, rx) = watch::channel("hello");
|
||||
//! # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
||||
//! let (mut tx, mut rx) = watch::channel("hello");
|
||||
//!
|
||||
//! tokio::spawn(rx.for_each(|value| {
|
||||
//! println!("received = {:?}", value);
|
||||
//! Ok(())
|
||||
//! }).map_err(|_| ()));
|
||||
//! tokio::spawn(async move {
|
||||
//! while let Some(value) = rx.recv().await {
|
||||
//! println!("received = {:?}", value);
|
||||
//! }
|
||||
//! });
|
||||
//!
|
||||
//! tx.broadcast("world").unwrap();
|
||||
//! tx.broadcast("world")?;
|
||||
//! # Ok(())
|
||||
//! # }));
|
||||
//! # }
|
||||
//! ```
|
||||
//!
|
||||
//! # Closing
|
||||
@@ -59,6 +61,8 @@ use core::task::Poll::{Pending, Ready};
|
||||
use core::task::{Context, Poll};
|
||||
use fnv::FnvHashMap;
|
||||
use futures_core::ready;
|
||||
use futures_util::future::poll_fn;
|
||||
use futures_util::pin_mut;
|
||||
use std::ops;
|
||||
use std::sync::atomic::AtomicUsize;
|
||||
use std::sync::atomic::Ordering::SeqCst;
|
||||
@@ -165,20 +169,22 @@ const CLOSED: usize = 1;
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// use tokio::prelude::*;
|
||||
/// #![feature(async_await)]
|
||||
///
|
||||
/// use tokio::sync::watch;
|
||||
///
|
||||
/// # tokio::run(futures::future::lazy(|| {
|
||||
/// let (mut tx, rx) = watch::channel("hello");
|
||||
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
||||
/// let (mut tx, mut rx) = watch::channel("hello");
|
||||
///
|
||||
/// tokio::spawn(rx.for_each(|value| {
|
||||
/// println!("received = {:?}", value);
|
||||
/// Ok(())
|
||||
/// }).map_err(|_| ()));
|
||||
/// tokio::spawn(async move {
|
||||
/// while let Some(value) = rx.recv().await {
|
||||
/// println!("received = {:?}", value);
|
||||
/// }
|
||||
/// });
|
||||
///
|
||||
/// tx.broadcast("world").unwrap();
|
||||
/// tx.broadcast("world")?;
|
||||
/// # Ok(())
|
||||
/// # }));
|
||||
/// # }
|
||||
/// ```
|
||||
pub fn channel<T>(init: T) -> (Sender<T>, Receiver<T>) {
|
||||
const INIT_ID: u64 = 0;
|
||||
@@ -241,39 +247,56 @@ impl<T> Receiver<T> {
|
||||
///
|
||||
/// Only the **most recent** value is returned. If the receiver is falling
|
||||
/// behind the sender, intermediate values are dropped.
|
||||
pub fn poll_ref(&mut self, cx: &mut Context<'_>) -> Poll<Option<Ref<'_, T>>> {
|
||||
// Make sure the task is up to date
|
||||
self.inner.waker.register_by_ref(cx.waker());
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn recv_ref<'a>(&'a mut self) -> Option<Ref<'a, T>> {
|
||||
let shared = &self.shared;
|
||||
let inner = &self.inner;
|
||||
let version = self.ver;
|
||||
|
||||
let state = self.shared.version.load(SeqCst);
|
||||
let version = state & !CLOSED;
|
||||
|
||||
if version != self.ver {
|
||||
// Track the latest version
|
||||
self.ver = version;
|
||||
|
||||
let inner = self.shared.value.read().unwrap();
|
||||
|
||||
return Ready(Some(Ref { inner }));
|
||||
match poll_fn(|cx| poll_lock(cx, shared, inner, version)).await {
|
||||
Some((lock, version)) => {
|
||||
self.ver = version;
|
||||
Some(lock)
|
||||
}
|
||||
None => None,
|
||||
}
|
||||
|
||||
if CLOSED == state & CLOSED {
|
||||
// The `Store` handle has been dropped.
|
||||
return Ready(None);
|
||||
}
|
||||
|
||||
Pending
|
||||
}
|
||||
}
|
||||
|
||||
fn poll_lock<'a, T>(
|
||||
cx: &mut Context<'_>,
|
||||
shared: &'a Arc<Shared<T>>,
|
||||
inner: &Arc<WatchInner>,
|
||||
ver: usize,
|
||||
) -> Poll<Option<(Ref<'a, T>, usize)>> {
|
||||
// Make sure the task is up to date
|
||||
inner.waker.register_by_ref(cx.waker());
|
||||
|
||||
let state = shared.version.load(SeqCst);
|
||||
let version = state & !CLOSED;
|
||||
|
||||
if version != ver {
|
||||
let inner = shared.value.read().unwrap();
|
||||
|
||||
return Ready(Some((Ref { inner }, version)));
|
||||
}
|
||||
|
||||
if CLOSED == state & CLOSED {
|
||||
// The `Store` handle has been dropped.
|
||||
return Ready(None);
|
||||
}
|
||||
|
||||
Pending
|
||||
}
|
||||
|
||||
impl<T: Clone> Receiver<T> {
|
||||
/// Attempts to clone the latest value sent via the channel.
|
||||
///
|
||||
/// This is equivalent to calling `Clone` on the value returned by `poll_ref`.
|
||||
#[allow(clippy::map_clone)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3274
|
||||
pub fn poll_next(&mut self, cx: &mut Context<'_>) -> Poll<Option<T>> {
|
||||
let item = ready!(self.poll_ref(cx));
|
||||
Ready(item.map(|v_ref| v_ref.clone()))
|
||||
/// This is equivalent to calling `clone()` on the value returned by
|
||||
/// `recv()`.
|
||||
#[allow(clippy::needless_lifetimes, clippy::map_clone)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn recv(&mut self) -> Option<T> {
|
||||
self.recv_ref().await.map(|v_ref| v_ref.clone())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -282,8 +305,13 @@ impl<T: Clone> futures_core::Stream for Receiver<T> {
|
||||
type Item = T;
|
||||
|
||||
#[allow(clippy::map_clone)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3274
|
||||
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> {
|
||||
let item = ready!(self.poll_ref(cx));
|
||||
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> {
|
||||
use std::future::Future;
|
||||
|
||||
let fut = self.get_mut().recv();
|
||||
pin_mut!(fut);
|
||||
|
||||
let item = ready!(fut.poll(cx));
|
||||
Ready(item.map(|v_ref| v_ref.clone()))
|
||||
}
|
||||
}
|
||||
@@ -354,11 +382,16 @@ impl<T> Sender<T> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Returns `Ready` when all receivers have dropped.
|
||||
/// Completes when all receivers have dropped.
|
||||
///
|
||||
/// This allows the producer to get notified when interest in the produced
|
||||
/// values is canceled and immediately stop doing work.
|
||||
pub fn poll_close(&mut self, cx: &mut Context<'_>) -> Poll<()> {
|
||||
#[allow(clippy::needless_lifetimes)] // false positive: https://github.com/rust-lang/rust-clippy/issues/3988
|
||||
pub async fn closed(&mut self) {
|
||||
poll_fn(|cx| self.poll_close(cx)).await
|
||||
}
|
||||
|
||||
fn poll_close(&mut self, cx: &mut Context<'_>) -> Poll<()> {
|
||||
match self.shared.upgrade() {
|
||||
Some(shared) => {
|
||||
shared.cancel.register_by_ref(cx.waker());
|
||||
|
||||
Reference in New Issue
Block a user