| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- use async_std::sync::{Arc, Mutex};
- use async_executor::Executor;
- use async_trait::async_trait;
- use chrono::Utc;
- use fxhash::FxHashMap;
- use log::debug;
- use rand::{rngs::OsRng, RngCore};
- use crate::{net, util::serial::serialize, Result};
- use super::primitives::{NetMsg, NetMsgMethod, NodeId, NodeIdMsg};
- pub struct ProtocolRaft {
- id: NodeId,
- jobsman: net::ProtocolJobsManagerPtr,
- notify_queue_sender: async_channel::Sender<NetMsg>,
- msg_sub: net::MessageSubscription<NetMsg>,
- p2p: net::P2pPtr,
- seen_msgs: Arc<Mutex<FxHashMap<String, i64>>>,
- channel: net::ChannelPtr,
- }
- impl ProtocolRaft {
- pub async fn init(
- id: NodeId,
- channel: net::ChannelPtr,
- notify_queue_sender: async_channel::Sender<NetMsg>,
- p2p: net::P2pPtr,
- seen_msgs: Arc<Mutex<FxHashMap<String, i64>>>,
- ) -> net::ProtocolBasePtr {
- let message_subsytem = channel.get_message_subsystem();
- message_subsytem.add_dispatch::<NetMsg>().await;
- let msg_sub = channel.subscribe_msg::<NetMsg>().await.expect("Missing NetMsg dispatcher!");
- Arc::new(Self {
- id,
- notify_queue_sender,
- msg_sub,
- jobsman: net::ProtocolJobsManager::new("ProtocolRaft", channel.clone()),
- p2p,
- seen_msgs,
- channel,
- })
- }
- async fn handle_receive_msg(self: Arc<Self>) -> Result<()> {
- debug!(target: "protocol_raft", "ProtocolRaft::handle_receive_msg() [START]");
- // on initialization send a NodeIdMsg
- let random_id = OsRng.next_u64();
- let node_id_msg = serialize(&NodeIdMsg { id: self.id.clone() });
- let net_msg = NetMsg {
- id: random_id,
- recipient_id: None,
- payload: node_id_msg.to_vec(),
- method: NetMsgMethod::NodeIdMsg,
- };
- {
- self.seen_msgs.lock().await.insert(random_id.to_string(), Utc::now().timestamp());
- }
- self.channel.send(net_msg).await?;
- loop {
- let msg = self.msg_sub.receive().await?;
- debug!(
- target: "protocol_raft",
- "ProtocolRaft::handle_receive_msg() received id: {:?} method {:?}",
- &msg.id, &msg.method
- );
- {
- let mut msgs = self.seen_msgs.lock().await;
- if msgs.contains_key(&msg.id.to_string()) {
- continue
- }
- msgs.insert(msg.id.to_string(), chrono::Utc::now().timestamp());
- }
- let msg = (*msg).clone();
- self.p2p.broadcast(msg.clone()).await?;
- // check if the local node and recipient id are equal
- if let Some(recipient_id) = &msg.recipient_id {
- if &self.id != recipient_id {
- continue
- }
- }
- self.notify_queue_sender.send(msg).await?;
- }
- }
- }
- #[async_trait]
- impl net::ProtocolBase for ProtocolRaft {
- /// Starts ping-pong keep-alive messages exchange. Runs ping-pong in the
- /// protocol task manager, then queues the reply. Sends out a ping and
- /// waits for pong reply. Waits for ping and replies with a pong.
- async fn start(self: Arc<Self>, executor: Arc<Executor<'_>>) -> Result<()> {
- debug!(target: "protocol_raft", "ProtocolRaft::start() [START]");
- self.jobsman.clone().start(executor.clone());
- self.jobsman.clone().spawn(self.clone().handle_receive_msg(), executor.clone()).await;
- debug!(target: "protocol_raft", "ProtocolRaft::start() [END]");
- Ok(())
- }
- fn name(&self) -> &'static str {
- "ProtocolRaft"
- }
- }
- impl net::Message for NetMsg {
- fn name() -> &'static str {
- "netmsg"
- }
- }
|