// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. use deno::ErrBox; use futures; use futures::Future; use futures::Poll; use std::ops::FnOnce; use tokio; use tokio::runtime; pub fn create_threadpool_runtime( ) -> Result { runtime::Builder::new() .panic_handler(|err| std::panic::resume_unwind(err)) .build() } pub fn run(future: F) where F: Future + Send + 'static, { // tokio::runtime::current_thread::run(future) let rt = create_threadpool_runtime().expect("Unable to create Tokio runtime"); rt.block_on_all(future).unwrap(); } pub fn run_on_current_thread(future: F) where F: Future + Send + 'static, { tokio::runtime::current_thread::run(future); } /// THIS IS A HACK AND SHOULD BE AVOIDED. /// /// This spawns a new thread and creates a single-threaded tokio runtime on that thread, /// to execute the given future. /// /// This is useful when we want to block the main runtime to /// resolve a future without worrying that we'll use up all the threads in the /// main runtime. pub fn block_on(future: F) -> Result where F: Send + 'static + Future, R: Send + 'static, { use std::sync::mpsc::channel; use std::thread; let (sender, receiver) = channel(); // Create a new runtime to evaluate the future asynchronously. thread::spawn(move || { let r = tokio::runtime::current_thread::block_on_all(future); sender .send(r) .expect("Unable to send blocking future result") }); receiver .recv() .expect("Unable to receive blocking future result") } // Set the default executor so we can use tokio::spawn(). It's difficult to // pass around mut references to the runtime, so using with_default is // preferable. Ideally Tokio would provide this function. #[cfg(test)] pub fn init(f: F) where F: FnOnce(), { let rt = create_threadpool_runtime().expect("Unable to create Tokio runtime"); let mut executor = rt.executor(); let mut enter = tokio_executor::enter().expect("Multiple executors at once"); tokio_executor::with_default(&mut executor, &mut enter, move |_enter| f()); } /// `futures::future::poll_fn` only support `F: FnMut()->Poll` /// However, we require that `F: FnOnce()->Poll`. /// Therefore, we created our version of `poll_fn`. pub fn poll_fn(f: F) -> PollFn where F: FnOnce() -> Poll, { PollFn { inner: Some(f) } } pub struct PollFn { inner: Option, } impl Future for PollFn where F: FnOnce() -> Poll, { type Item = T; type Error = E; fn poll(&mut self) -> Poll { let f = self.inner.take().expect("Inner fn has been taken."); f() } } pub fn panic_on_error(f: F) -> impl Future where F: Future, E: std::fmt::Debug, { f.map_err(|err| panic!("Future got unexpected error: {:?}", err)) } #[cfg(test)] pub fn run_in_task(f: F) where F: FnOnce() + Send + 'static, { let fut = futures::future::lazy(move || { f(); futures::future::ok(()) }); run(fut) }