From e022b2b77e3e98f0f444f637f96e74e6a6f990cf Mon Sep 17 00:00:00 2001 From: hozan23 Date: Sat, 25 May 2024 07:15:02 +0200 Subject: p2p: rename connection.rs to conn_queue.rs --- p2p/src/conn_queue.rs | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 p2p/src/conn_queue.rs (limited to 'p2p/src/conn_queue.rs') diff --git a/p2p/src/conn_queue.rs b/p2p/src/conn_queue.rs new file mode 100644 index 0000000..9a153f3 --- /dev/null +++ b/p2p/src/conn_queue.rs @@ -0,0 +1,70 @@ +use std::{collections::VecDeque, fmt, sync::Arc}; + +use async_channel::Sender; + +use karyon_core::{async_runtime::lock::Mutex, async_util::CondVar}; +use karyon_net::Conn; + +use crate::{message::NetMsg, Result}; + +/// Defines the direction of a network connection. +#[derive(Clone, Debug)] +pub enum ConnDirection { + Inbound, + Outbound, +} + +impl fmt::Display for ConnDirection { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match self { + ConnDirection::Inbound => write!(f, "Inbound"), + ConnDirection::Outbound => write!(f, "Outbound"), + } + } +} + +pub struct NewConn { + pub direction: ConnDirection, + pub conn: Conn, + pub disconnect_signal: Sender>, +} + +/// Connection queue +pub struct ConnQueue { + queue: Mutex>, + conn_available: CondVar, +} + +impl ConnQueue { + pub fn new() -> Arc { + Arc::new(Self { + queue: Mutex::new(VecDeque::new()), + conn_available: CondVar::new(), + }) + } + + /// Push a connection into the queue and wait for the disconnect signal + pub async fn handle(&self, conn: Conn, direction: ConnDirection) -> Result<()> { + let (disconnect_signal, chan) = async_channel::bounded(1); + let new_conn = NewConn { + direction, + conn, + disconnect_signal, + }; + self.queue.lock().await.push_back(new_conn); + self.conn_available.signal(); + if let Ok(result) = chan.recv().await { + return result; + } + Ok(()) + } + + /// Receive the next connection in the queue + pub async fn next(&self) -> NewConn { + let mut queue = self.queue.lock().await; + while queue.is_empty() { + queue = self.conn_available.wait(queue).await; + } + queue.pop_front().unwrap() + } +} -- cgit v1.2.3