aboutsummaryrefslogtreecommitdiff
path: root/net/src/transports/unix.rs
blob: bafebafe1225abf26bffa7f203b336ddd347b5ee (plain)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
use async_trait::async_trait;
use futures_util::SinkExt;

use karyon_core::async_runtime::{
    io::{split, ReadHalf, WriteHalf},
    lock::Mutex,
    net::{UnixListener as AsyncUnixListener, UnixStream},
};

use crate::{
    codec::Codec,
    connection::{Conn, Connection, ToConn},
    endpoint::Endpoint,
    listener::{ConnListener, Listener, ToListener},
    stream::{ReadStream, WriteStream},
    Error, Result,
};

/// Unix Conn config
#[derive(Clone, Default)]
pub struct UnixConfig {}

/// Unix domain socket implementation of the [`Connection`] trait.
pub struct UnixConn<C> {
    read_stream: Mutex<ReadStream<ReadHalf<UnixStream>, C>>,
    write_stream: Mutex<WriteStream<WriteHalf<UnixStream>, C>>,
    peer_endpoint: Option<Endpoint>,
    local_endpoint: Option<Endpoint>,
}

impl<C> UnixConn<C>
where
    C: Codec + Clone,
{
    /// Creates a new TcpConn
    pub fn new(conn: UnixStream, codec: C) -> Self {
        let peer_endpoint = conn
            .peer_addr()
            .and_then(|a| {
                Ok(Endpoint::new_unix_addr(
                    a.as_pathname()
                        .ok_or(std::io::ErrorKind::AddrNotAvailable)?,
                ))
            })
            .ok();
        let local_endpoint = conn
            .local_addr()
            .and_then(|a| {
                Ok(Endpoint::new_unix_addr(
                    a.as_pathname()
                        .ok_or(std::io::ErrorKind::AddrNotAvailable)?,
                ))
            })
            .ok();

        let (read, write) = split(conn);
        let read_stream = Mutex::new(ReadStream::new(read, codec.clone()));
        let write_stream = Mutex::new(WriteStream::new(write, codec));
        Self {
            read_stream,
            write_stream,
            peer_endpoint,
            local_endpoint,
        }
    }
}

#[async_trait]
impl<C> Connection for UnixConn<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn peer_endpoint(&self) -> Result<Endpoint> {
        self.peer_endpoint
            .clone()
            .ok_or(Error::IO(std::io::ErrorKind::AddrNotAvailable.into()))
    }

    fn local_endpoint(&self) -> Result<Endpoint> {
        self.local_endpoint
            .clone()
            .ok_or(Error::IO(std::io::ErrorKind::AddrNotAvailable.into()))
    }

    async fn recv(&self) -> Result<Self::Item> {
        self.read_stream.lock().await.recv().await
    }

    async fn send(&self, msg: Self::Item) -> Result<()> {
        self.write_stream.lock().await.send(msg).await
    }
}

#[allow(dead_code)]
pub struct UnixListener<C> {
    inner: AsyncUnixListener,
    config: UnixConfig,
    codec: C,
}

impl<C> UnixListener<C>
where
    C: Codec + Clone,
{
    pub fn new(listener: AsyncUnixListener, config: UnixConfig, codec: C) -> Self {
        Self {
            inner: listener,
            config,
            codec,
        }
    }
}

#[async_trait]
impl<C> ConnListener for UnixListener<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn local_endpoint(&self) -> Result<Endpoint> {
        self.inner
            .local_addr()
            .and_then(|a| {
                Ok(Endpoint::new_unix_addr(
                    a.as_pathname()
                        .ok_or(std::io::ErrorKind::AddrNotAvailable)?,
                ))
            })
            .map_err(Error::from)
    }

    async fn accept(&self) -> Result<Conn<C::Item>> {
        let (conn, _) = self.inner.accept().await?;
        Ok(Box::new(UnixConn::new(conn, self.codec.clone())))
    }
}

/// Connects to the given Unix socket path.
pub async fn dial<C>(endpoint: &Endpoint, _config: UnixConfig, codec: C) -> Result<UnixConn<C>>
where
    C: Codec + Clone,
{
    let path: std::path::PathBuf = endpoint.clone().try_into()?;
    let conn = UnixStream::connect(path).await?;
    Ok(UnixConn::new(conn, codec))
}

/// Listens on the given Unix socket path.
pub fn listen<C>(endpoint: &Endpoint, config: UnixConfig, codec: C) -> Result<UnixListener<C>>
where
    C: Codec + Clone,
{
    let path: std::path::PathBuf = endpoint.clone().try_into()?;
    let listener = AsyncUnixListener::bind(path)?;
    Ok(UnixListener::new(listener, config, codec))
}

// impl From<UnixStream> for Box<dyn Connection> {
//     fn from(conn: UnixStream) -> Self {
//         Box::new(UnixConn::new(conn))
//     }
// }

impl<C> From<UnixListener<C>> for Listener<C::Item>
where
    C: Codec + Clone,
{
    fn from(listener: UnixListener<C>) -> Self {
        Box::new(listener)
    }
}

impl<C> ToConn for UnixConn<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn to_conn(self) -> Conn<Self::Item> {
        Box::new(self)
    }
}

impl<C> ToListener for UnixListener<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn to_listener(self) -> Listener<Self::Item> {
        self.into()
    }
}