Rewrite events and events_with with a new Runner abstraction

This commit is contained in:
Héctor Ramón Jiménez 2022-01-14 19:43:06 +07:00
parent b7bc169120
commit 810b445f8d
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 62 additions and 45 deletions

View file

@ -1,8 +1,12 @@
//! Listen to external events in your application.
use crate::event::{self, Event};
use crate::Hasher;
use iced_futures::futures::{self, Stream};
use iced_futures::BoxStream;
use std::hash::Hash;
/// A request to listen to external events.
///
/// Besides performing async actions on demand with [`Command`], most
@ -29,20 +33,14 @@ pub type Tracker =
pub use iced_futures::subscription::Recipe;
mod events;
use events::Events;
/// Returns a [`Subscription`] to all the runtime events.
///
/// This subscription will notify your application of any [`Event`] that was
/// not captured by any widget.
pub fn events() -> Subscription<Event> {
Subscription::from_recipe(Events {
f: |event, status| match status {
event::Status::Ignored => Some(event),
event::Status::Captured => None,
},
events_with(|event, status| match status {
event::Status::Ignored => Some(event),
event::Status::Captured => None,
})
}
@ -60,5 +58,59 @@ pub fn events_with<Message>(
where
Message: 'static + Send,
{
Subscription::from_recipe(Events { f })
#[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))
})
},
})
}
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()
}
}

View file

@ -1,35 +0,0 @@
use crate::event::{self, Event};
use crate::subscription::{EventStream, Recipe};
use crate::Hasher;
use iced_futures::futures::future;
use iced_futures::futures::StreamExt;
use iced_futures::BoxStream;
pub struct Events<Message> {
pub(super) f: fn(Event, event::Status) -> Option<Message>,
}
impl<Message> Recipe<Hasher, (Event, event::Status)> for Events<Message>
where
Message: 'static + Send,
{
type Output = Message;
fn hash(&self, state: &mut Hasher) {
use std::hash::Hash;
struct Marker;
std::any::TypeId::of::<Marker>().hash(state);
self.f.hash(state);
}
fn stream(
self: Box<Self>,
event_stream: EventStream,
) -> BoxStream<Self::Output> {
let stream = event_stream.filter_map(move |(event, status)| {
future::ready((self.f)(event, status))
});
iced_futures::boxed_stream(stream)
}
}