|
@@ -1,7 +1,9 @@
|
|
|
use std::{
|
|
|
any::Any,
|
|
|
+ cell::RefCell,
|
|
|
collections::HashMap,
|
|
|
- hash::{Hash, Hasher}, cell::RefCell, rc::Rc,
|
|
|
+ hash::{Hash, Hasher},
|
|
|
+ rc::Rc,
|
|
|
};
|
|
|
|
|
|
use serde::{de::DeserializeOwned, Deserialize, Serialize};
|
|
@@ -64,6 +66,12 @@ pub struct Message {
|
|
|
pub(crate) peer: Option<super::peer::Peer>,
|
|
|
}
|
|
|
|
|
|
+#[derive(Default)]
|
|
|
+pub struct Metadata {
|
|
|
+ pub peer: Option<fleck_core::peer::Peer>,
|
|
|
+ pub node: Option<fleck_core::node::Node>,
|
|
|
+}
|
|
|
+
|
|
|
impl Message {
|
|
|
pub fn build<M: 'static + MessageParams + Serialize>(from: M) -> Self {
|
|
|
Self {
|
|
@@ -79,19 +87,23 @@ impl Message {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pub fn is_type<M: MessageParams + DeserializeOwned>(&self) -> bool {
|
|
|
- self.content.ty == message_type::<M>()
|
|
|
+ fn metadata(&self) -> Metadata {
|
|
|
+ Metadata {
|
|
|
+ peer: self.peer.clone(),
|
|
|
+ node: None,
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- pub fn downcast<M: MessageParams + DeserializeOwned>(&self) -> Option<&M> {
|
|
|
- self.parsed.as_ref()?.downcast_ref()
|
|
|
+ pub fn with_peer(mut self, peer: fleck_core::peer::Peer) -> Self {
|
|
|
+ self.peer = Some(peer);
|
|
|
+ self
|
|
|
}
|
|
|
}
|
|
|
|
|
|
pub struct MessageChannelTag;
|
|
|
-pub type MessageChannel<M> = (MessageChannelTag, M);
|
|
|
+pub type MessageChannel<M> = (MessageChannelTag, (Metadata, M));
|
|
|
|
|
|
-type Deserializer = dyn Fn(&[u8]) -> Option<Box<dyn std::any::Any>>;
|
|
|
+type Deserializer = dyn Fn(&crate::Fleck, &Message) -> ();
|
|
|
#[derive(Default)]
|
|
|
pub struct MessageService {
|
|
|
deser: RefCell<HashMap<u16, Box<Deserializer>>>,
|
|
@@ -99,67 +111,40 @@ pub struct MessageService {
|
|
|
|
|
|
impl Service for Rc<MessageService> {
|
|
|
fn setup(&self, api: &crate::Fleck) {
|
|
|
- api.channel::<fleck_core::ReceivePacketChannel>().sub_opt(fleck_core::ReceiveOrder::Parse, self, MessageService::parse);
|
|
|
+ api.channel::<fleck_core::ReceivePacketChannel>().sub_opt(
|
|
|
+ fleck_core::ReceiveOrder::Parse,
|
|
|
+ self,
|
|
|
+ MessageService::parse,
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
|
|
|
impl MessageService {
|
|
|
pub fn add_message_type<MT: std::fmt::Debug + MessageParams + Serialize + DeserializeOwned>(
|
|
|
- &self, api: &crate::Fleck
|
|
|
+ &self,
|
|
|
+ api: &crate::Fleck,
|
|
|
) {
|
|
|
let derived_typeid = message_type::<MT>();
|
|
|
self.deser.borrow_mut().insert(
|
|
|
derived_typeid,
|
|
|
- Box::new(|data| Some(Box::new(bincode::deserialize::<MT>(data).ok()?))),
|
|
|
+ Box::new(
|
|
|
+ |api, message| match bincode::deserialize::<MT>(&message.content.data) {
|
|
|
+ Ok(content) => {
|
|
|
+ api.queue::<MessageChannel<MT>>((message.metadata(), content));
|
|
|
+ }
|
|
|
+ Err(_) => {
|
|
|
+ log::trace!("Packet failed deserialization step?");
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ),
|
|
|
);
|
|
|
|
|
|
api.create_channel::<MessageChannel<MT>>();
|
|
|
}
|
|
|
|
|
|
- fn parse(&self, api: &crate::Fleck, mut msg: Message) -> Option<Message> {
|
|
|
+ fn parse(&self, api: &crate::Fleck, msg: Message) -> Option<Message> {
|
|
|
// try deserializing
|
|
|
- msg.parsed = Some(self.deserialize(&mut msg)?);
|
|
|
+ (self.deser.borrow().get(&msg.content.ty)?)(api, &msg);
|
|
|
None
|
|
|
}
|
|
|
-
|
|
|
- fn deserialize(&self, message: &mut Message) -> Option<Box<dyn std::any::Any>> {
|
|
|
- (self.deser.borrow().get(&message.content.ty)?)(&message.content.data)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(Default)]
|
|
|
-pub(crate) struct ParsePacket {}
|
|
|
-
|
|
|
-impl ParsePacket {}
|
|
|
-
|
|
|
-impl Service for std::rc::Rc<ParsePacket> {
|
|
|
- fn setup(&self, api: &crate::Fleck) {
|
|
|
- /*eroot
|
|
|
- .channel::<fleck_core::ReceivePacketChannel>()
|
|
|
- // .with::<order::Preprocessing>()
|
|
|
- .subscribe(fleck_core::ReceiveOrder::Parse, self, ParsePacket::process_incoming);*/
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ParsePacket {
|
|
|
- /*fn process_incoming(&self, api: &crate::Fleck, event: &mut FleckEvent<FleckPacket>) {
|
|
|
- // try deserializing
|
|
|
- let message: Option<crate::msg::Message> =
|
|
|
- bincode::deserialize(event.data.data.as_ref().unwrap()).ok();
|
|
|
- if message.is_none() {
|
|
|
- return;
|
|
|
- }
|
|
|
- let mut message = message.unwrap();
|
|
|
- // get message registry from api and add parsed Message
|
|
|
- message.parsed = api.services().message_registry().deserialize(&mut message);
|
|
|
- // if the parse failed, stop processing this packet.
|
|
|
- if message.parsed.is_none() {
|
|
|
- event.emptied = true;
|
|
|
- return;
|
|
|
- }
|
|
|
- // remove raw data from packet
|
|
|
- event.data.data.take();
|
|
|
-
|
|
|
- event.data.msg = Some(message);
|
|
|
- }*/
|
|
|
}
|