summaryrefslogtreecommitdiffstats
path: root/futures/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-20 04:47:36 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-20 04:47:36 +0100
commit90690702e1e4abab804ec91e8ff4183824bec436 (patch)
treed3f989047f4ac5166bc5baed9febcc10af2d63a6 /futures/src
parent35760ac68f06e783e64e9048aff0fff6df1c09cf (diff)
downloadiced-90690702e1e4abab804ec91e8ff4183824bec436.tar.gz
iced-90690702e1e4abab804ec91e8ff4183824bec436.tar.bz2
iced-90690702e1e4abab804ec91e8ff4183824bec436.zip
Add `Application::Executor` associated type
Diffstat (limited to 'futures/src')
-rw-r--r--futures/src/executor.rs36
-rw-r--r--futures/src/executor/async_std.rs15
-rw-r--r--futures/src/executor/null.rs13
-rw-r--r--futures/src/executor/thread_pool.rs15
-rw-r--r--futures/src/executor/tokio.rs19
-rw-r--r--futures/src/lib.rs6
-rw-r--r--futures/src/runtime.rs8
-rw-r--r--futures/src/runtime/executor.rs27
8 files changed, 105 insertions, 34 deletions
diff --git a/futures/src/executor.rs b/futures/src/executor.rs
new file mode 100644
index 00000000..144a41f8
--- /dev/null
+++ b/futures/src/executor.rs
@@ -0,0 +1,36 @@
+//! Choose your preferred executor to power a runtime.
+mod null;
+
+#[cfg(feature = "thread-pool")]
+mod thread_pool;
+
+#[cfg(feature = "thread-pool")]
+pub use thread_pool::ThreadPool;
+
+#[cfg(feature = "tokio")]
+mod tokio;
+
+#[cfg(feature = "async-std")]
+mod async_std;
+
+pub use null::Null;
+
+#[cfg(feature = "tokio")]
+pub use self::tokio::Tokio;
+
+#[cfg(feature = "async-std")]
+pub use self::async_std::AsyncStd;
+
+use futures::Future;
+
+pub trait Executor: Sized {
+ fn new() -> Result<Self, futures::io::Error>
+ where
+ Self: Sized;
+
+ fn spawn(&self, future: impl Future<Output = ()> + Send + 'static);
+
+ fn enter<R>(&self, f: impl FnOnce() -> R) -> R {
+ f()
+ }
+}
diff --git a/futures/src/executor/async_std.rs b/futures/src/executor/async_std.rs
new file mode 100644
index 00000000..b056b23d
--- /dev/null
+++ b/futures/src/executor/async_std.rs
@@ -0,0 +1,15 @@
+use crate::Executor;
+
+use futures::Future;
+
+pub struct AsyncStd;
+
+impl Executor for AsyncStd {
+ fn new() -> Result<Self, futures::io::Error> {
+ Ok(Self)
+ }
+
+ fn spawn(&self, future: impl Future<Output = ()> + Send + 'static) {
+ let _ = async_std::task::spawn(future);
+ }
+}
diff --git a/futures/src/executor/null.rs b/futures/src/executor/null.rs
new file mode 100644
index 00000000..722073bb
--- /dev/null
+++ b/futures/src/executor/null.rs
@@ -0,0 +1,13 @@
+use crate::Executor;
+
+use futures::Future;
+
+pub struct Null;
+
+impl Executor for Null {
+ fn new() -> Result<Self, futures::io::Error> {
+ Ok(Self)
+ }
+
+ fn spawn(&self, _future: impl Future<Output = ()> + Send + 'static) {}
+}
diff --git a/futures/src/executor/thread_pool.rs b/futures/src/executor/thread_pool.rs
new file mode 100644
index 00000000..6393d0d5
--- /dev/null
+++ b/futures/src/executor/thread_pool.rs
@@ -0,0 +1,15 @@
+use crate::Executor;
+
+use futures::Future;
+
+pub type ThreadPool = futures::executor::ThreadPool;
+
+impl Executor for futures::executor::ThreadPool {
+ fn new() -> Result<Self, futures::io::Error> {
+ futures::executor::ThreadPool::new()
+ }
+
+ fn spawn(&self, future: impl Future<Output = ()> + Send + 'static) {
+ self.spawn_ok(future);
+ }
+}
diff --git a/futures/src/executor/tokio.rs b/futures/src/executor/tokio.rs
new file mode 100644
index 00000000..aafa7e7b
--- /dev/null
+++ b/futures/src/executor/tokio.rs
@@ -0,0 +1,19 @@
+use crate::Executor;
+
+use futures::Future;
+
+pub type Tokio = tokio::runtime::Runtime;
+
+impl Executor for Tokio {
+ fn new() -> Result<Self, futures::io::Error> {
+ tokio::runtime::Runtime::new()
+ }
+
+ fn spawn(&self, future: impl Future<Output = ()> + Send + 'static) {
+ let _ = tokio::runtime::Runtime::spawn(self, future);
+ }
+
+ fn enter<R>(&self, f: impl FnOnce() -> R) -> R {
+ tokio::runtime::Runtime::enter(self, f)
+ }
+}
diff --git a/futures/src/lib.rs b/futures/src/lib.rs
index f6bcf85a..832a50f6 100644
--- a/futures/src/lib.rs
+++ b/futures/src/lib.rs
@@ -1,8 +1,12 @@
+pub use futures;
+
mod command;
+mod runtime;
-pub mod runtime;
+pub mod executor;
pub mod subscription;
pub use command::Command;
+pub use executor::Executor;
pub use runtime::Runtime;
pub use subscription::Subscription;
diff --git a/futures/src/runtime.rs b/futures/src/runtime.rs
index 37905c61..a508c46e 100644
--- a/futures/src/runtime.rs
+++ b/futures/src/runtime.rs
@@ -1,9 +1,5 @@
-//! Run commands and subscriptions.
-mod executor;
-
-pub use executor::Executor;
-
-use crate::{subscription, Command, Subscription};
+//! Run commands and keep track of subscriptions.
+use crate::{subscription, Command, Executor, Subscription};
use futures::Sink;
use std::marker::PhantomData;
diff --git a/futures/src/runtime/executor.rs b/futures/src/runtime/executor.rs
deleted file mode 100644
index eec5e231..00000000
--- a/futures/src/runtime/executor.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-use futures::Future;
-
-pub trait Executor {
- fn spawn(&self, future: impl Future<Output = ()> + Send + 'static);
-
- fn enter<R>(&self, f: impl FnOnce() -> R) -> R {
- f()
- }
-}
-
-#[cfg(feature = "thread-pool")]
-impl Executor for futures::executor::ThreadPool {
- fn spawn(&self, future: impl Future<Output = ()> + Send + 'static) {
- self.spawn_ok(future);
- }
-}
-
-#[cfg(feature = "tokio")]
-impl Executor for tokio::runtime::Runtime {
- fn spawn(&self, future: impl Future<Output = ()> + Send + 'static) {
- let _ = tokio::runtime::Runtime::spawn(self, future);
- }
-
- fn enter<R>(&self, f: impl FnOnce() -> R) -> R {
- tokio::runtime::Runtime::enter(self, f)
- }
-}