|
@@ -4,64 +4,64 @@ use std::{
|
|
|
rc::{Rc, Weak},
|
|
|
};
|
|
|
|
|
|
-pub enum SubscriptionFunction<Host: 'static, Context: 'static + ?Sized, Data: 'static> {
|
|
|
- ByRef(Box<dyn Fn(&Host, &Context, &mut Data)>),
|
|
|
- ByValue(Box<dyn Fn(&Host, &Context, Data) -> Option<Data>>),
|
|
|
- Consume(Box<dyn Fn(&Host, &Context, Data) -> ()>),
|
|
|
+pub enum SubscriptionFunction<Host: 'static, Data: 'static> {
|
|
|
+ ByRef(Box<dyn Fn(&Host, &mut Data)>),
|
|
|
+ ByValue(Box<dyn Fn(&Host, Data) -> Option<Data>>),
|
|
|
+ Consume(Box<dyn Fn(&Host, Data) -> ()>),
|
|
|
}
|
|
|
|
|
|
-impl<Host: 'static, Context: 'static + ?Sized, Data: 'static>
|
|
|
- SubscriptionFunction<Host, Context, Data>
|
|
|
+impl<Host: 'static, Data: 'static>
|
|
|
+ SubscriptionFunction<Host, Data>
|
|
|
{
|
|
|
- fn invoke(&self, host: &Host, context: &Context, mut data: Data) -> Option<Data> {
|
|
|
+ fn invoke(&self, host: &Host, mut data: Data) -> Option<Data> {
|
|
|
match self {
|
|
|
Self::ByRef(f) => {
|
|
|
- f(host, context, &mut data);
|
|
|
+ f(host, &mut data);
|
|
|
Some(data)
|
|
|
}
|
|
|
- Self::ByValue(f) => f(host, context, data),
|
|
|
+ Self::ByValue(f) => f(host, data),
|
|
|
Self::Consume(f) => {
|
|
|
- f(host, context, data);
|
|
|
+ f(host, data);
|
|
|
None
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-struct ConcreteEventSub<Host: 'static, Context: 'static + ?Sized, Data: 'static> {
|
|
|
+struct ConcreteEventSub<Host: 'static, Data: 'static> {
|
|
|
host: Weak<Host>,
|
|
|
- callback: SubscriptionFunction<Host, Context, Data>,
|
|
|
+ callback: SubscriptionFunction<Host, Data>,
|
|
|
}
|
|
|
|
|
|
-trait EventSub<Context: 'static + ?Sized, Data: 'static> {
|
|
|
+trait EventSub<Data: 'static> {
|
|
|
fn is_healthy(&self) -> bool;
|
|
|
- fn invoke(&self, context: &Context, data: Data) -> Option<Data>;
|
|
|
+ fn invoke(&self, data: Data) -> Option<Data>;
|
|
|
}
|
|
|
|
|
|
-impl<Host: 'static, Context: 'static + ?Sized, Data: 'static> EventSub<Context, Data>
|
|
|
- for ConcreteEventSub<Host, Context, Data>
|
|
|
+impl<Host: 'static, Data: 'static> EventSub<Data>
|
|
|
+ for ConcreteEventSub<Host, Data>
|
|
|
{
|
|
|
fn is_healthy(&self) -> bool {
|
|
|
self.host.strong_count() > 0
|
|
|
}
|
|
|
- fn invoke(&self, context: &Context, data: Data) -> Option<Data> {
|
|
|
+ fn invoke(&self, data: Data) -> Option<Data> {
|
|
|
self.host
|
|
|
.upgrade()
|
|
|
- .map(|h| self.callback.invoke(h.as_ref(), context, data))
|
|
|
+ .map(|h| self.callback.invoke(h.as_ref(), data))
|
|
|
.flatten()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-pub struct Channel<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static> {
|
|
|
- subs: RefCell<Vec<(Priority, Rc<dyn EventSub<Context, Data>>)>>,
|
|
|
+pub struct Channel<Tag: 'static, Data: 'static, Priority: 'static> {
|
|
|
+ subs: RefCell<Vec<(Priority, Rc<dyn EventSub<Data>>)>>,
|
|
|
|
|
|
queue: RefCell<VecDeque<Data>>,
|
|
|
|
|
|
_ghost: std::marker::PhantomData<(Tag, Priority)>,
|
|
|
}
|
|
|
|
|
|
-impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static> Default
|
|
|
- for Channel<Tag, Context, Data, Priority>
|
|
|
+impl<Tag: 'static, Data: 'static, Priority: 'static> Default
|
|
|
+ for Channel<Tag, Data, Priority>
|
|
|
{
|
|
|
fn default() -> Self {
|
|
|
Self {
|
|
@@ -72,13 +72,13 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static>
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static>
|
|
|
- Channel<Tag, Context, Data, NoPriorityTag>
|
|
|
+impl<Tag: 'static, Data: 'static>
|
|
|
+ Channel<Tag, Data, NoPriorityTag>
|
|
|
{
|
|
|
pub fn sub_ref<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, &mut Data) + 'static,
|
|
|
+ CB: Fn(&Host, &mut Data) + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
who: HC,
|
|
@@ -95,7 +95,7 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static>
|
|
|
pub fn sub_opt<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, Data) -> Option<Data> + 'static,
|
|
|
+ CB: Fn(&Host, Data) -> Option<Data> + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
who: HC,
|
|
@@ -112,7 +112,7 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static>
|
|
|
pub fn sub_eat<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, Data) + 'static,
|
|
|
+ CB: Fn(&Host, Data) + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
who: HC,
|
|
@@ -127,13 +127,13 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static>
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: PartialOrd>
|
|
|
- Channel<Tag, Context, Data, Priority>
|
|
|
+impl<Tag: 'static, Data: 'static, Priority: PartialOrd>
|
|
|
+ Channel<Tag, Data, Priority>
|
|
|
{
|
|
|
pub fn sub_ref<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, &mut Data) + 'static,
|
|
|
+ CB: Fn(&Host, &mut Data) + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
p: Priority,
|
|
@@ -154,7 +154,7 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: PartialOr
|
|
|
pub fn sub_opt<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, Data) -> Option<Data> + 'static,
|
|
|
+ CB: Fn(&Host, Data) -> Option<Data> + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
p: Priority,
|
|
@@ -175,7 +175,7 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: PartialOr
|
|
|
pub fn sub_eat<
|
|
|
Host: 'static,
|
|
|
HC: crate::helper::IntoWeak<Host>,
|
|
|
- CB: Fn(&Host, &Context, Data) + 'static,
|
|
|
+ CB: Fn(&Host, Data) + 'static,
|
|
|
>(
|
|
|
&self,
|
|
|
p: Priority,
|
|
@@ -191,21 +191,21 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: PartialOr
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static>
|
|
|
- Channel<Tag, Context, Data, Priority>
|
|
|
+impl<Tag: 'static, Data: 'static, Priority: 'static>
|
|
|
+ Channel<Tag, Data, Priority>
|
|
|
{
|
|
|
pub fn queue(&self, data: Data) {
|
|
|
self.queue.borrow_mut().push_back(data);
|
|
|
}
|
|
|
|
|
|
- fn do_fire_all(&self, context: &Context) -> usize {
|
|
|
+ fn do_fire_all(&self) -> usize {
|
|
|
let mut count = 0;
|
|
|
|
|
|
while !self.queue.borrow().is_empty() {
|
|
|
let mut event = self.queue.borrow_mut().pop_front();
|
|
|
|
|
|
for sub in self.subs.borrow().iter() {
|
|
|
- event = sub.1.invoke(context, event.unwrap());
|
|
|
+ event = sub.1.invoke(event.unwrap());
|
|
|
if event.is_none() {
|
|
|
break;
|
|
|
}
|
|
@@ -218,20 +218,20 @@ impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static>
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-trait ChannelMetadata<Context: 'static + ?Sized> {
|
|
|
+trait ChannelMetadata {
|
|
|
fn queue_len(&self) -> usize;
|
|
|
- fn fire_all(&self, context: &Context) -> usize;
|
|
|
+ fn fire_all(&self) -> usize;
|
|
|
}
|
|
|
|
|
|
-impl<Tag: 'static, Context: 'static + ?Sized, Data: 'static, Priority: 'static>
|
|
|
- ChannelMetadata<Context> for Channel<Tag, Context, Data, Priority>
|
|
|
+impl<Tag: 'static, Data: 'static, Priority: 'static>
|
|
|
+ ChannelMetadata for Channel<Tag, Data, Priority>
|
|
|
{
|
|
|
fn queue_len(&self) -> usize {
|
|
|
self.queue.borrow().len()
|
|
|
}
|
|
|
|
|
|
- fn fire_all(&self, context: &Context) -> usize {
|
|
|
- self.do_fire_all(context)
|
|
|
+ fn fire_all(&self) -> usize {
|
|
|
+ self.do_fire_all()
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -258,27 +258,25 @@ impl<Tag: 'static, Data: 'static> ChannelSpec for (Tag, Data) {
|
|
|
type Priority = NoPriorityTag;
|
|
|
}
|
|
|
|
|
|
-pub struct EventRoot<Context: 'static + ?Sized> {
|
|
|
+pub struct EventRoot {
|
|
|
pub(crate) channels: RefCell<HashMap<std::any::TypeId, Rc<dyn std::any::Any>>>,
|
|
|
- metadata: RefCell<HashMap<std::any::TypeId, (&'static str, Rc<dyn ChannelMetadata<Context>>)>>,
|
|
|
- _ghost: std::marker::PhantomData<Context>,
|
|
|
+ metadata: RefCell<HashMap<std::any::TypeId, (&'static str, Rc<dyn ChannelMetadata>)>>,
|
|
|
}
|
|
|
|
|
|
-impl<Context: 'static + ?Sized> Default for EventRoot<Context> {
|
|
|
+impl Default for EventRoot {
|
|
|
fn default() -> Self {
|
|
|
Self {
|
|
|
channels: Default::default(),
|
|
|
metadata: Default::default(),
|
|
|
- _ghost: std::marker::PhantomData,
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<Context: 'static + ?Sized> EventRoot<Context> {
|
|
|
+impl EventRoot {
|
|
|
pub fn create_channel<CS: ChannelSpec>(&self) {
|
|
|
- let tid = std::any::TypeId::of::<Channel<CS::Tag, Context, CS::Data, CS::Priority>>();
|
|
|
+ let tid = std::any::TypeId::of::<Channel<CS::Tag, CS::Data, CS::Priority>>();
|
|
|
|
|
|
- let ch = Rc::new(Channel::<CS::Tag, Context, CS::Data, CS::Priority>::default());
|
|
|
+ let ch = Rc::new(Channel::<CS::Tag, CS::Data, CS::Priority>::default());
|
|
|
self.metadata
|
|
|
.borrow_mut()
|
|
|
.insert(tid, (std::any::type_name::<CS>(), ch.clone()));
|
|
@@ -287,8 +285,8 @@ impl<Context: 'static + ?Sized> EventRoot<Context> {
|
|
|
|
|
|
pub fn channel<'l, 's: 'l, CS: ChannelSpec>(
|
|
|
&'s self,
|
|
|
- ) -> Rc<Channel<CS::Tag, Context, CS::Data, CS::Priority>> {
|
|
|
- let tid = std::any::TypeId::of::<Channel<CS::Tag, Context, CS::Data, CS::Priority>>();
|
|
|
+ ) -> Rc<Channel<CS::Tag, CS::Data, CS::Priority>> {
|
|
|
+ let tid = std::any::TypeId::of::<Channel<CS::Tag, CS::Data, CS::Priority>>();
|
|
|
|
|
|
let own = self.channels.borrow();
|
|
|
|
|
@@ -296,7 +294,7 @@ impl<Context: 'static + ?Sized> EventRoot<Context> {
|
|
|
let entry = own.get(&tid).unwrap().clone();
|
|
|
|
|
|
entry
|
|
|
- .downcast::<Channel<CS::Tag, Context, CS::Data, CS::Priority>>()
|
|
|
+ .downcast::<Channel<CS::Tag, CS::Data, CS::Priority>>()
|
|
|
.expect("internal inconsistency?")
|
|
|
} else {
|
|
|
panic!(
|
|
@@ -306,13 +304,13 @@ impl<Context: 'static + ?Sized> EventRoot<Context> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pub(crate) fn fire_all(&self, context: &Context) {
|
|
|
+ pub(crate) fn fire_all(&self) {
|
|
|
let mut any = true;
|
|
|
while any {
|
|
|
any = false;
|
|
|
|
|
|
for ch in self.metadata.borrow().iter() {
|
|
|
- let count = ch.1 .1.fire_all(context);
|
|
|
+ let count = ch.1 .1.fire_all();
|
|
|
if count > 0 {
|
|
|
log::trace!("Queue {} processed {} event(s)", ch.1 .0, count);
|
|
|
}
|
|
@@ -337,7 +335,7 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
impl Receiver {
|
|
|
- fn receive_i32(&self, _ctx: &(), _val: &mut i32) {
|
|
|
+ fn receive_i32(&self, _val: &mut i32) {
|
|
|
self.int_count.set(self.int_count.get() + 1);
|
|
|
}
|
|
|
}
|
|
@@ -348,7 +346,7 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
impl OrderedReceiver {
|
|
|
- fn receive_i32(&self, _ctx: &(), _val: &mut i32) {
|
|
|
+ fn receive_i32(&self, _val: &mut i32) {
|
|
|
self.order.borrow_mut().push(self.id)
|
|
|
}
|
|
|
}
|
|
@@ -378,7 +376,7 @@ mod tests {
|
|
|
.sub_ref(&recv, Receiver::receive_i32);
|
|
|
root.channel::<IntChannel>().queue(0i32);
|
|
|
assert_eq!(recv.int_count.get(), 0);
|
|
|
- root.channel::<IntChannel>().do_fire_all(&());
|
|
|
+ root.channel::<IntChannel>().do_fire_all();
|
|
|
assert_eq!(recv.int_count.get(), 1);
|
|
|
}
|
|
|
|
|
@@ -420,7 +418,7 @@ mod tests {
|
|
|
);
|
|
|
root.channel::<IntPriorityChannel>().queue(0i32);
|
|
|
assert_eq!(order.borrow().deref(), &vec![]);
|
|
|
- root.channel::<IntPriorityChannel>().do_fire_all(&());
|
|
|
+ root.channel::<IntPriorityChannel>().do_fire_all();
|
|
|
assert_eq!(order.borrow().deref(), &vec![1, 2, 3]);
|
|
|
}
|
|
|
}
|