Use TypeId to identify subscription::Map

This commit is contained in:
Héctor Ramón Jiménez 2024-02-05 00:15:35 +01:00
parent e14e8e2e9a
commit f39a5fd895
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -10,6 +10,7 @@ use crate::{BoxStream, MaybeSend};
use futures::channel::mpsc; use futures::channel::mpsc;
use futures::never::Never; use futures::never::Never;
use std::any::TypeId;
use std::hash::Hash; use std::hash::Hash;
/// A stream of runtime events. /// A stream of runtime events.
@ -88,7 +89,10 @@ impl<Message> Subscription<Message> {
} }
/// Transforms the [`Subscription`] output with the given function. /// Transforms the [`Subscription`] output with the given function.
pub fn map<A>(mut self, f: fn(Message) -> A) -> Subscription<A> pub fn map<A>(
mut self,
f: impl Fn(Message) -> A + MaybeSend + Clone + 'static,
) -> Subscription<A>
where where
Message: 'static, Message: 'static,
A: 'static, A: 'static,
@ -97,8 +101,9 @@ impl<Message> Subscription<Message> {
recipes: self recipes: self
.recipes .recipes
.drain(..) .drain(..)
.map(|recipe| { .map(move |recipe| {
Box::new(Map::new(recipe, f)) as Box<dyn Recipe<Output = A>> Box::new(Map::new(recipe, f.clone()))
as Box<dyn Recipe<Output = A>>
}) })
.collect(), .collect(),
} }
@ -143,27 +148,39 @@ pub trait Recipe {
fn stream(self: Box<Self>, input: EventStream) -> BoxStream<Self::Output>; fn stream(self: Box<Self>, input: EventStream) -> BoxStream<Self::Output>;
} }
struct Map<A, B> { struct Map<A, B, F>
where
F: Fn(A) -> B + 'static,
{
id: TypeId,
recipe: Box<dyn Recipe<Output = A>>, recipe: Box<dyn Recipe<Output = A>>,
mapper: fn(A) -> B, mapper: F,
} }
impl<A, B> Map<A, B> { impl<A, B, F> Map<A, B, F>
fn new(recipe: Box<dyn Recipe<Output = A>>, mapper: fn(A) -> B) -> Self { where
Map { recipe, mapper } F: Fn(A) -> B + 'static,
{
fn new(recipe: Box<dyn Recipe<Output = A>>, mapper: F) -> Self {
Map {
id: TypeId::of::<F>(),
recipe,
mapper,
}
} }
} }
impl<A, B> Recipe for Map<A, B> impl<A, B, F> Recipe for Map<A, B, F>
where where
A: 'static, A: 'static,
B: 'static, B: 'static,
F: Fn(A) -> B + 'static + MaybeSend,
{ {
type Output = B; type Output = B;
fn hash(&self, state: &mut Hasher) { fn hash(&self, state: &mut Hasher) {
self.id.hash(state);
self.recipe.hash(state); self.recipe.hash(state);
self.mapper.hash(state);
} }
fn stream(self: Box<Self>, input: EventStream) -> BoxStream<Self::Output> { fn stream(self: Box<Self>, input: EventStream) -> BoxStream<Self::Output> {