Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a minimal Futures executor #65875

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
274 changes: 274 additions & 0 deletions src/libstd/tests/block_on_future.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,274 @@
//! Tests for the block_on_future function

#![feature(block_on_future)]

use std::future::Future;
use std::task::{Context, Poll, Waker};
use std::pin::Pin;
use std::sync::{Arc, Mutex};
use std::thread::{block_on_future, JoinHandle, spawn};

struct WakeFromRemoteThreadFuture {
was_polled: bool,
wake_by_ref: bool,
join_handle: Option<JoinHandle<()>>,
}

impl WakeFromRemoteThreadFuture {
fn new(wake_by_ref: bool) -> Self {
WakeFromRemoteThreadFuture {
was_polled: false,
wake_by_ref,
join_handle: None,
}
}
}

impl Future for WakeFromRemoteThreadFuture {
type Output = ();

fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
if !self.was_polled {
self.was_polled = true;
let waker = cx.waker().clone();
let wake_by_ref = self.wake_by_ref;
self.join_handle = Some(spawn(move || {
if wake_by_ref {
Matthias247 marked this conversation as resolved.
Show resolved Hide resolved
waker.wake_by_ref();
} else {
waker.wake();
}
}));
Poll::Pending
} else {
if let Some(handle) = self.join_handle.take() {
handle.join().unwrap();
}
Poll::Ready(())
}
}
}

struct Yield {
iterations: usize,
}

impl Yield {
fn new(iterations: usize) -> Self {
Yield {
iterations
}
}
}

impl Future for Yield {
type Output = ();

fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if self.iterations == 0 {
Poll::Ready(())
} else {
self.iterations -= 1;
cx.waker().wake_by_ref();
Poll::Pending
}
}
}

struct WakerStore {
waker: Option<Waker>,
}

struct StoreWakerFuture {
store: Arc<Mutex<WakerStore>>,
}

impl StoreWakerFuture {
fn new(store: Arc<Mutex<WakerStore>>) -> Self {
StoreWakerFuture {
store
}
}
}

impl Future for StoreWakerFuture {
type Output = ();

fn poll(mut self: core::pin::Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
(*self.store.lock().unwrap()).waker = Some(cx.waker().clone());
Poll::Ready(())
}
}

struct WakeFromPreviouslyStoredWakerFuture {
store: Arc<Mutex<WakerStore>>,
was_polled: bool,
join_handle: Option<JoinHandle<()>>,
}

impl WakeFromPreviouslyStoredWakerFuture {
fn new(store: Arc<Mutex<WakerStore>>) -> Self {
WakeFromPreviouslyStoredWakerFuture {
store,
was_polled: false,
join_handle: None,
}
}
}

impl Future for WakeFromPreviouslyStoredWakerFuture {
type Output = ();

fn poll(mut self: core::pin::Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> {
if !self.was_polled {
self.was_polled = true;
// Don't take the waker from Context but from the side channel
let waker = self.store.lock().unwrap().waker.clone().take().unwrap();
self.join_handle = Some(spawn(move || {
waker.wake();
}));
Poll::Pending
} else {
if let Some(handle) = self.join_handle.take() {
handle.join().unwrap();
}
Poll::Ready(())
}
}
}

#[test]
fn wake_from_local_thread() {
block_on_future(async {
Yield::new(10).await;
});
}

#[test]
fn wake_from_foreign_thread() {
block_on_future(async {
WakeFromRemoteThreadFuture::new(false).await;
});
}

#[test]
fn wake_by_ref_from_foreign_thread() {
block_on_future(async {
WakeFromRemoteThreadFuture::new(true).await;
});
}

#[test]
fn wake_from_multiple_threads() {
block_on_future(async {
WakeFromRemoteThreadFuture::new(false).await;
WakeFromRemoteThreadFuture::new(true).await;
});
}

#[test]
fn wake_local_remote_local() {
block_on_future(async {
Yield::new(10).await;
WakeFromRemoteThreadFuture::new(false).await;
Yield::new(20).await;
WakeFromRemoteThreadFuture::new(true).await;
});
}

#[test]
fn returns_result_from_task() {
let result = block_on_future(async {
let x = 42i32;
Yield::new(10).await;
x
});
assert_eq!(42, result);
}

#[test]
fn does_not_panic_if_waker_is_cloned_and_used_a_lot_later() {
let store = Arc::new(Mutex::new(WakerStore {
waker: None,
}));

block_on_future(async {
StoreWakerFuture::new(store.clone()).await;
Yield::new(10).await;
// Multiple wakes from an outdated waker - because it can
// have been cloned multiple times.
WakeFromPreviouslyStoredWakerFuture::new(store.clone()).await;
WakeFromPreviouslyStoredWakerFuture::new(store.clone()).await;
WakeFromPreviouslyStoredWakerFuture::new(store).await;
});
}

struct WakeSynchronouslyFromOtherThreadFuture {
was_polled: bool,
use_clone: bool,
}

impl WakeSynchronouslyFromOtherThreadFuture {
fn new(use_clone: bool) -> Self {
WakeSynchronouslyFromOtherThreadFuture {
was_polled: false,
use_clone,
}
}
}

/// This is just a helper to transfer a waker by reference/pointer
/// to another thread without the availability of scoped threads.
struct WakerBox {
waker: *const Waker,
}

unsafe impl Send for WakerBox {}

impl Future for WakeSynchronouslyFromOtherThreadFuture {
type Output = ();

fn poll(mut self: core::pin::Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if !self.was_polled {
self.was_polled = true;
// This captures the waker by pointer and passes it to the other thread,
// since we don't have a scoped thread API available here.
// The pointer is however guaranteed to be alive when we call it, due to
// joining the thread in this scope.
let waker_box = WakerBox {
waker: cx.waker() as *const Waker,
};
let use_clone = self.use_clone;
spawn(move ||{
let x = waker_box;
unsafe {
if !use_clone {
(*(x.waker as *mut Waker)).wake_by_ref();
} else {
let cloned_waker = (*(x.waker as *mut Waker)).clone();
cloned_waker.wake_by_ref();
}
}
}).join().unwrap();
Poll::Pending
} else {
Poll::Ready(())
}
}
}

#[test]
fn wake_synchronously_by_ref_from_other_thread() {
block_on_future(async {
WakeSynchronouslyFromOtherThreadFuture::new(false).await;
Yield::new(10).await;
})
}

#[test]
fn clone_and_wake_synchronously_from_other_thread() {
block_on_future(async {
WakeSynchronouslyFromOtherThreadFuture::new(true).await;
Yield::new(10).await;
})
}
Loading