2019-12-14 05:56:46 +01:00
|
|
|
//! Listen to external events in your application.
|
2020-11-12 02:22:22 +01:00
|
|
|
use crate::event::{self, Event};
|
|
|
|
|
use crate::Hasher;
|
2022-01-14 19:43:06 +07:00
|
|
|
|
2022-01-14 19:55:27 +07:00
|
|
|
use iced_futures::futures::channel::mpsc;
|
|
|
|
|
use iced_futures::futures::{self, Future, Stream};
|
2021-11-14 11:04:20 -05:00
|
|
|
use iced_futures::BoxStream;
|
2019-12-08 08:21:26 +01:00
|
|
|
|
2022-01-14 19:43:06 +07:00
|
|
|
use std::hash::Hash;
|
|
|
|
|
|
2019-12-14 05:56:46 +01:00
|
|
|
/// A request to listen to external events.
|
|
|
|
|
///
|
|
|
|
|
/// Besides performing async actions on demand with [`Command`], most
|
|
|
|
|
/// applications also need to listen to external events passively.
|
|
|
|
|
///
|
|
|
|
|
/// A [`Subscription`] is normally provided to some runtime, like a [`Command`],
|
|
|
|
|
/// and it will generate events as long as the user keeps requesting it.
|
|
|
|
|
///
|
|
|
|
|
/// For instance, you can use a [`Subscription`] to listen to a WebSocket
|
|
|
|
|
/// connection, keyboard presses, mouse events, time ticks, etc.
|
|
|
|
|
///
|
2020-11-25 07:11:27 +01:00
|
|
|
/// [`Command`]: crate::Command
|
2020-11-12 02:22:22 +01:00
|
|
|
pub type Subscription<T> =
|
|
|
|
|
iced_futures::Subscription<Hasher, (Event, event::Status), T>;
|
2019-12-14 04:12:42 +01:00
|
|
|
|
2019-12-14 05:56:46 +01:00
|
|
|
/// A stream of runtime events.
|
|
|
|
|
///
|
|
|
|
|
/// It is the input of a [`Subscription`] in the native runtime.
|
2021-11-14 11:04:20 -05:00
|
|
|
pub type EventStream = BoxStream<(Event, event::Status)>;
|
2019-12-14 05:56:46 +01:00
|
|
|
|
2020-01-19 08:36:44 +01:00
|
|
|
/// A native [`Subscription`] tracker.
|
2020-11-12 02:22:22 +01:00
|
|
|
pub type Tracker =
|
|
|
|
|
iced_futures::subscription::Tracker<Hasher, (Event, event::Status)>;
|
2020-01-19 08:36:44 +01:00
|
|
|
|
2020-01-19 10:17:08 +01:00
|
|
|
pub use iced_futures::subscription::Recipe;
|
2019-12-14 04:12:42 +01:00
|
|
|
|
2019-12-14 05:56:46 +01:00
|
|
|
/// Returns a [`Subscription`] to all the runtime events.
|
|
|
|
|
///
|
2020-11-12 02:22:22 +01:00
|
|
|
/// This subscription will notify your application of any [`Event`] that was
|
|
|
|
|
/// not captured by any widget.
|
2019-12-14 04:49:13 +01:00
|
|
|
pub fn events() -> Subscription<Event> {
|
2022-01-14 19:43:06 +07:00
|
|
|
events_with(|event, status| match status {
|
|
|
|
|
event::Status::Ignored => Some(event),
|
|
|
|
|
event::Status::Captured => None,
|
2020-11-12 02:22:22 +01:00
|
|
|
})
|
2020-11-10 02:32:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns a [`Subscription`] that filters all the runtime events with the
|
|
|
|
|
/// provided function, producing messages accordingly.
|
|
|
|
|
///
|
|
|
|
|
/// This subscription will call the provided function for every [`Event`]
|
|
|
|
|
/// handled by the runtime. If the function:
|
|
|
|
|
///
|
|
|
|
|
/// - Returns `None`, the [`Event`] will be discarded.
|
|
|
|
|
/// - Returns `Some` message, the `Message` will be produced.
|
|
|
|
|
pub fn events_with<Message>(
|
2020-11-12 02:22:22 +01:00
|
|
|
f: fn(Event, event::Status) -> Option<Message>,
|
2020-11-10 02:32:57 +01:00
|
|
|
) -> Subscription<Message>
|
|
|
|
|
where
|
|
|
|
|
Message: 'static + Send,
|
|
|
|
|
{
|
2022-01-14 19:43:06 +07:00
|
|
|
#[derive(Debug, Clone, Copy, Hash)]
|
|
|
|
|
struct Events(u64);
|
|
|
|
|
|
|
|
|
|
let hash = {
|
|
|
|
|
use std::hash::Hasher as _;
|
|
|
|
|
|
|
|
|
|
let mut hasher = Hasher::default();
|
|
|
|
|
|
|
|
|
|
f.hash(&mut hasher);
|
|
|
|
|
|
|
|
|
|
hasher.finish()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Subscription::from_recipe(Runner {
|
|
|
|
|
initial: Events(hash),
|
|
|
|
|
spawn: move |_, events| {
|
|
|
|
|
use futures::future;
|
|
|
|
|
use futures::stream::StreamExt;
|
|
|
|
|
|
|
|
|
|
events.filter_map(move |(event, status)| {
|
|
|
|
|
future::ready(f(event, status))
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 19:43:54 +07:00
|
|
|
/// Returns a [`Subscription`] that will create and asynchronously run the
|
|
|
|
|
/// [`Stream`] returned by the provided closure.
|
|
|
|
|
///
|
|
|
|
|
/// The `initial` state will be used to uniquely identify the [`Subscription`].
|
|
|
|
|
pub fn run<T, S, Message>(
|
|
|
|
|
initial: T,
|
|
|
|
|
f: impl FnOnce(T) -> S + 'static,
|
|
|
|
|
) -> Subscription<Message>
|
|
|
|
|
where
|
|
|
|
|
Message: 'static,
|
|
|
|
|
T: Clone + Hash + 'static,
|
|
|
|
|
S: Stream<Item = Message> + Send + 'static,
|
|
|
|
|
{
|
|
|
|
|
Subscription::from_recipe(Runner {
|
|
|
|
|
initial,
|
|
|
|
|
spawn: move |initial, _| f(initial),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 19:55:27 +07:00
|
|
|
/// Returns a [`Subscription`] that will create and asynchronously run a
|
|
|
|
|
/// [`Stream`] that will call the provided closure to produce every `Message`.
|
|
|
|
|
///
|
|
|
|
|
/// The `initial` state will be used to uniquely identify the [`Subscription`].
|
|
|
|
|
pub fn unfold<T, Fut, Message>(
|
|
|
|
|
initial: T,
|
|
|
|
|
mut f: impl FnMut(T) -> Fut + Send + Sync + 'static,
|
|
|
|
|
) -> Subscription<Message>
|
|
|
|
|
where
|
|
|
|
|
Message: 'static,
|
|
|
|
|
T: Clone + Hash + Send + 'static,
|
|
|
|
|
Fut: Future<Output = (Message, T)> + Send + 'static,
|
|
|
|
|
{
|
|
|
|
|
use futures::future::FutureExt;
|
|
|
|
|
|
|
|
|
|
run(initial, move |initial| {
|
|
|
|
|
futures::stream::unfold(initial, move |state| f(state).map(Some))
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 19:55:42 +07:00
|
|
|
/// Returns a [`Subscription`] that will open a channel and asynchronously run a
|
|
|
|
|
/// [`Stream`] that will call the provided closure to produce every `Message`.
|
|
|
|
|
///
|
|
|
|
|
/// When the [`Subscription`] starts, an `on_ready` message will be produced
|
|
|
|
|
/// containing the [`mpsc::Sender`] end of the channel, which can be used by
|
|
|
|
|
/// the parent application to send `Input` to the running [`Subscription`].
|
|
|
|
|
///
|
|
|
|
|
/// The provided closure should use the [`mpsc::Receiver`] argument to await for
|
|
|
|
|
/// any `Input`.
|
|
|
|
|
///
|
|
|
|
|
/// This function is really useful to create asynchronous workers with
|
|
|
|
|
/// bidirectional communication with a parent application.
|
|
|
|
|
///
|
|
|
|
|
/// The `initial` state will be used to uniquely identify the [`Subscription`].
|
|
|
|
|
pub fn worker<T, Fut, Message, Input>(
|
|
|
|
|
initial: T,
|
|
|
|
|
on_ready: impl FnOnce(mpsc::Sender<Input>) -> Message + 'static,
|
|
|
|
|
f: impl FnMut(T, &mut mpsc::Receiver<Input>) -> Fut + Send + Sync + 'static,
|
|
|
|
|
) -> Subscription<Message>
|
|
|
|
|
where
|
|
|
|
|
T: Clone + Hash + Send + 'static,
|
|
|
|
|
Fut: Future<Output = (Message, T)> + Send + 'static,
|
|
|
|
|
Message: Send + 'static,
|
|
|
|
|
Input: Send + 'static,
|
|
|
|
|
{
|
|
|
|
|
use futures::future;
|
|
|
|
|
use futures::stream::StreamExt;
|
|
|
|
|
|
|
|
|
|
run(initial, move |initial| {
|
|
|
|
|
let (sender, receiver) = mpsc::channel(100);
|
|
|
|
|
|
|
|
|
|
futures::stream::once(future::ready(on_ready(sender))).chain(
|
|
|
|
|
futures::stream::unfold(
|
|
|
|
|
(f, initial, receiver),
|
|
|
|
|
move |(mut f, state, mut receiver)| async {
|
|
|
|
|
let (message, state) = f(state, &mut receiver).await;
|
|
|
|
|
|
|
|
|
|
Some((message, (f, state, receiver)))
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 19:43:06 +07:00
|
|
|
struct Runner<T, F, S, Message>
|
|
|
|
|
where
|
|
|
|
|
F: FnOnce(T, EventStream) -> S,
|
|
|
|
|
S: Stream<Item = Message>,
|
|
|
|
|
{
|
|
|
|
|
initial: T,
|
|
|
|
|
spawn: F,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T, S, F, Message> Recipe<Hasher, (Event, event::Status)>
|
|
|
|
|
for Runner<T, F, S, Message>
|
|
|
|
|
where
|
|
|
|
|
T: Clone + Hash + 'static,
|
|
|
|
|
F: FnOnce(T, EventStream) -> S,
|
|
|
|
|
S: Stream<Item = Message> + Send + 'static,
|
|
|
|
|
{
|
|
|
|
|
type Output = Message;
|
|
|
|
|
|
|
|
|
|
fn hash(&self, state: &mut Hasher) {
|
|
|
|
|
std::any::TypeId::of::<T>().hash(state);
|
|
|
|
|
|
|
|
|
|
self.initial.hash(state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn stream(self: Box<Self>, input: EventStream) -> BoxStream<Self::Output> {
|
|
|
|
|
use futures::stream::StreamExt;
|
|
|
|
|
|
|
|
|
|
(self.spawn)(self.initial, input).boxed()
|
|
|
|
|
}
|
2019-12-14 04:12:42 +01:00
|
|
|
}
|