aboutsummaryrefslogtreecommitdiff
path: root/src/imap/mod.rs
blob: 7e042d530ea689b085a27bda49265e037fdfef34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
mod session;
mod flow;
mod command;

use std::task::{Context, Poll};

use anyhow::Result;
use boitalettres::errors::Error as BalError;
use boitalettres::proto::{Request, Response};
use boitalettres::server::accept::addr::AddrIncoming;
use boitalettres::server::accept::addr::AddrStream;
use boitalettres::server::Server as ImapServer;
use futures::future::BoxFuture;
use futures::future::FutureExt;
use tokio::sync::watch;
use tower::Service;

use crate::login::ArcLoginProvider;
use crate::config::ImapConfig;

/// Server is a thin wrapper to register our Services in BàL
pub struct Server(ImapServer<AddrIncoming, Instance>);
pub async fn new(
    config: ImapConfig,
    login: ArcLoginProvider,
) -> Result<Server> {

    //@FIXME add a configuration parameter
    let incoming = AddrIncoming::new(config.bind_addr).await?;
    tracing::info!("IMAP activated, will listen on {:#}", imap.incoming.local_addr);

    let imap = ImapServer::new(incoming).serve(Instance::new(login.clone()));
    Ok(Server(imap))
}
impl Server {
    pub async fn run(self, mut must_exit: watch::Receiver<bool>) -> Result<()> {
        tracing::info!("IMAP started!");
        tokio::select! {
            s = self.0 => s?,
            _ = must_exit.changed() => tracing::info!("Stopped IMAP server"),
        }

        Ok(())
    }
}

//---

/// Instance is the main Tokio Tower service that we register in BàL.
/// It receives new connection demands and spawn a dedicated service.
struct Instance {
    login_provider: ArcLoginProvider,
}
impl Instance {
    pub fn new(login_provider: ArcLoginProvider) -> Self {
        Self { login_provider }
    }
}
impl<'a> Service<&'a AddrStream> for Instance {
    type Response = Connection;
    type Error = anyhow::Error;
    type Future = BoxFuture<'static, Result<Self::Response>>;

    fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, addr: &'a AddrStream) -> Self::Future {
        tracing::info!(remote_addr = %addr.remote_addr, local_addr = %addr.local_addr, "accept");
        let lp = self.login_provider.clone();
        async { Ok(Connection::new(lp)) }.boxed()
    }
}

//---

/// Connection is the per-connection Tokio Tower service we register in BàL.
/// It handles a single TCP connection, and thus has a business logic.
struct Connection {
    session: session::Manager,
}
impl Connection {
    pub fn new(login_provider: ArcLoginProvider) -> Self {
        Self {
            session: session::Manager::new(login_provider),
        }
    }
}
impl Service<Request> for Connection {
    type Response = Response;
    type Error = BalError;
    type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>;

    fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, req: Request) -> Self::Future {
        tracing::debug!("Got request: {:#?}", req);
        self.session.process(req)
    }
}