From 1e4d5eb8f1fe1d7abe726572b9ee063d91f72a98 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Thu, 9 Jun 2022 10:43:38 +0200 Subject: Compiling with a MPSC channel --- src/service.rs | 53 ++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 40 insertions(+), 13 deletions(-) (limited to 'src/service.rs') diff --git a/src/service.rs b/src/service.rs index a2fca4d..051e065 100644 --- a/src/service.rs +++ b/src/service.rs @@ -6,7 +6,10 @@ use boitalettres::server::accept::addr::AddrStream; use boitalettres::errors::Error as BalError; use boitalettres::proto::{Request, Response}; use futures::future::BoxFuture; +use futures::future::FutureExt; use imap_codec::types::command::CommandBody; +use tokio::sync::mpsc; +use tokio::sync::mpsc::error::TrySendError; use tower::Service; use crate::command; @@ -14,6 +17,8 @@ use crate::login::Credentials; use crate::mailstore::Mailstore; use crate::mailbox::Mailbox; +const MAX_PIPELINED_COMMANDS: usize = 10; + pub struct Instance { pub mailstore: Arc, } @@ -38,18 +43,17 @@ impl<'a> Service<&'a AddrStream> for Instance { } } -pub struct Session { - pub creds: Option, - pub selected: Option, -} - pub struct Connection { - pub mailstore: Arc, - pub session: Arc>, + pub tx: mpsc::Sender, } impl Connection { pub fn new(mailstore: Arc) -> Self { - Self { mailstore, session: Arc::new(Mutex::new(Session { creds: None, selected: None, })) } + let (tx, mut rx) = mpsc::channel(MAX_PIPELINED_COMMANDS); + tokio::spawn(async move { + let mut session = Session::new(mailstore, rx); + session.run().await; + }); + Self { tx } } } impl Service for Connection { @@ -63,9 +67,32 @@ impl Service for Connection { fn call(&mut self, req: Request) -> Self::Future { tracing::debug!("Got request: {:#?}", req); - let cmd = command::Command::new(req.tag, self.mailstore.clone(), self.session.clone()); - Box::pin(async move { - match req.body { + match self.tx.try_send(req) { + Ok(()) => return async { Response::ok("Ok") }.boxed(), + Err(TrySendError::Full(_)) => return async { Response::bad("Too fast! Send less pipelined requests!") }.boxed(), + Err(TrySendError::Closed(_)) => return async { Response::bad("The session task has exited") }.boxed(), + } + + // send a future that await here later a oneshot command + } +} + +pub struct Session { + pub mailstore: Arc, + pub creds: Option, + pub selected: Option, + rx: mpsc::Receiver, +} + +impl Session { + pub fn new(mailstore: Arc, rx: mpsc::Receiver) -> Self { + Self { mailstore, rx, creds: None, selected: None, } + } + + pub async fn run(&mut self) { + while let Some(req) = self.rx.recv().await { + let mut cmd = command::Command::new(req.tag, self); + let _ = match req.body { CommandBody::Capability => cmd.capability().await, CommandBody::Login { username, password } => cmd.login(username, password).await, CommandBody::Lsub { reference, mailbox_wildcard } => cmd.lsub(reference, mailbox_wildcard).await, @@ -73,8 +100,8 @@ impl Service for Connection { CommandBody::Select { mailbox } => cmd.select(mailbox).await, CommandBody::Fetch { sequence_set, attributes, uid } => cmd.fetch(sequence_set, attributes, uid).await, _ => Response::bad("Error in IMAP command received by server."), - } - }) + }; + } } } -- cgit v1.2.3