aboutsummaryrefslogtreecommitdiff
path: root/net/src/transports/tcp.rs
blob: 03c8ab2b8d2059617a82776b0e6a98718b520f21 (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
use std::net::SocketAddr;

use async_trait::async_trait;
use futures_util::SinkExt;

use karyon_core::async_runtime::{
    io::{split, ReadHalf, WriteHalf},
    lock::Mutex,
    net::{TcpListener as AsyncTcpListener, TcpStream},
};

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

/// TCP configuration
#[derive(Clone)]
pub struct TcpConfig {
    pub nodelay: bool,
}

impl Default for TcpConfig {
    fn default() -> Self {
        Self { nodelay: true }
    }
}

/// TCP connection implementation of the [`Connection`] trait.
pub struct TcpConn<C> {
    read_stream: Mutex<ReadStream<ReadHalf<TcpStream>, C>>,
    write_stream: Mutex<WriteStream<WriteHalf<TcpStream>, C>>,
    peer_endpoint: Endpoint,
    local_endpoint: Endpoint,
}

impl<C> TcpConn<C>
where
    C: Codec + Clone,
{
    /// Creates a new TcpConn
    pub fn new(
        socket: TcpStream,
        codec: C,
        peer_endpoint: Endpoint,
        local_endpoint: Endpoint,
    ) -> Self {
        let (read, write) = split(socket);
        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 TcpConn<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn peer_endpoint(&self) -> Result<Endpoint> {
        Ok(self.peer_endpoint.clone())
    }

    fn local_endpoint(&self) -> Result<Endpoint> {
        Ok(self.local_endpoint.clone())
    }

    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
    }
}

pub struct TcpListener<C> {
    inner: AsyncTcpListener,
    config: TcpConfig,
    codec: C,
}

impl<C> TcpListener<C>
where
    C: Codec,
{
    pub fn new(listener: AsyncTcpListener, config: TcpConfig, codec: C) -> Self {
        Self {
            inner: listener,
            config: config.clone(),
            codec,
        }
    }
}

#[async_trait]
impl<C> ConnListener for TcpListener<C>
where
    C: Codec + Clone,
{
    type Item = C::Item;
    fn local_endpoint(&self) -> Result<Endpoint> {
        Ok(Endpoint::new_tcp_addr(self.inner.local_addr()?))
    }

    async fn accept(&self) -> Result<Conn<C::Item>> {
        let (socket, _) = self.inner.accept().await?;
        socket.set_nodelay(self.config.nodelay)?;

        let peer_endpoint = socket.peer_addr().map(Endpoint::new_tcp_addr)?;
        let local_endpoint = socket.local_addr().map(Endpoint::new_tcp_addr)?;

        Ok(Box::new(TcpConn::new(
            socket,
            self.codec.clone(),
            peer_endpoint,
            local_endpoint,
        )))
    }
}

/// Connects to the given TCP address and port.
pub async fn dial<C>(endpoint: &Endpoint, config: TcpConfig, codec: C) -> Result<TcpConn<C>>
where
    C: Codec + Clone,
{
    let addr = SocketAddr::try_from(endpoint.clone())?;
    let socket = TcpStream::connect(addr).await?;
    socket.set_nodelay(config.nodelay)?;

    let peer_endpoint = socket.peer_addr().map(Endpoint::new_tcp_addr)?;
    let local_endpoint = socket.local_addr().map(Endpoint::new_tcp_addr)?;

    Ok(TcpConn::new(socket, codec, peer_endpoint, local_endpoint))
}

/// Listens on the given TCP address and port.
pub async fn listen<C>(endpoint: &Endpoint, config: TcpConfig, codec: C) -> Result<TcpListener<C>>
where
    C: Codec,
{
    let addr = SocketAddr::try_from(endpoint.clone())?;
    let listener = AsyncTcpListener::bind(addr).await?;
    Ok(TcpListener::new(listener, config, codec))
}

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

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

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