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
use crate::{DistantManagerClient, DistantManagerClientConfig};
use async_trait::async_trait;
use distant_net::{Codec, FramedTransport, UnixSocketTransport};
use std::{convert, path::Path};
use tokio::{io, time::Duration};

#[async_trait]
pub trait UnixSocketDistantManagerClientExt {
    /// Connect to a proxy unix socket
    async fn connect<P, C>(
        config: DistantManagerClientConfig,
        path: P,
        codec: C,
    ) -> io::Result<DistantManagerClient>
    where
        P: AsRef<Path> + Send,
        C: Codec + Send + 'static;

    /// Connect to a proxy unix socket, timing out after duration has passed
    async fn connect_timeout<P, C>(
        config: DistantManagerClientConfig,
        path: P,
        codec: C,
        duration: Duration,
    ) -> io::Result<DistantManagerClient>
    where
        P: AsRef<Path> + Send,
        C: Codec + Send + 'static,
    {
        tokio::time::timeout(duration, Self::connect(config, path, codec))
            .await
            .map_err(|x| io::Error::new(io::ErrorKind::TimedOut, x))
            .and_then(convert::identity)
    }
}

#[async_trait]
impl UnixSocketDistantManagerClientExt for DistantManagerClient {
    /// Connect to a proxy unix socket
    async fn connect<P, C>(
        config: DistantManagerClientConfig,
        path: P,
        codec: C,
    ) -> io::Result<DistantManagerClient>
    where
        P: AsRef<Path> + Send,
        C: Codec + Send + 'static,
    {
        let p = path.as_ref();
        let transport = UnixSocketTransport::connect(p).await?;
        let transport = FramedTransport::new(transport, codec);
        Ok(DistantManagerClient::new(config, transport)?)
    }
}