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
193
194
195
196
197
198
199
200
201
202
203
204
205
use crate::Transport;
use futures_lite::{AsyncRead, AsyncWrite, Stream};
use std::{
    convert::{TryFrom, TryInto},
    io::Result,
    pin::Pin,
    task::{Context, Poll},
};

/// A wrapper enum that has blanket implementations for common traits
/// like TryFrom, Stream, AsyncRead, and AsyncWrite. This can contain
/// listeners (like TcpListener), Streams (like Incoming), or
/// bytestreams (like TcpStream).
#[derive(Debug, Clone)]
pub enum Binding<T, U> {
    /// a tcp type (listener or incoming or stream)
    Tcp(T),

    /// a unix type (listener or incoming or stream)
    Unix(U),
}

use Binding::{Tcp, Unix};

impl<T, U> Binding<T, U> {
    /// borrows the tcp stream or listener, if this is a tcp variant
    pub fn get_tcp(&self) -> Option<&T> {
        if let Tcp(t) = self {
            Some(t)
        } else {
            None
        }
    }

    /// borrows the unix stream or listener, if this is unix variant
    pub fn get_unix(&self) -> Option<&U> {
        if let Unix(u) = self {
            Some(u)
        } else {
            None
        }
    }

    /// mutably borrows the tcp stream or listener, if this is tcp variant
    pub fn get_tcp_mut(&mut self) -> Option<&mut T> {
        if let Tcp(t) = self {
            Some(t)
        } else {
            None
        }
    }

    /// mutably borrows the unix stream or listener, if this is unix variant
    pub fn get_unix_mut(&mut self) -> Option<&mut U> {
        if let Unix(u) = self {
            Some(u)
        } else {
            None
        }
    }
}

impl<T: TryFrom<std::net::TcpListener>, U> TryFrom<std::net::TcpListener> for Binding<T, U> {
    type Error = <T as TryFrom<std::net::TcpListener>>::Error;

    fn try_from(value: std::net::TcpListener) -> std::result::Result<Self, Self::Error> {
        Ok(Self::Tcp(value.try_into()?))
    }
}

#[cfg(unix)]
impl<T, U: TryFrom<std::os::unix::net::UnixListener>> TryFrom<std::os::unix::net::UnixListener>
    for Binding<T, U>
{
    type Error = <U as TryFrom<std::os::unix::net::UnixListener>>::Error;

    fn try_from(value: std::os::unix::net::UnixListener) -> std::result::Result<Self, Self::Error> {
        Ok(Self::Unix(value.try_into()?))
    }
}

impl<T, U, TI, UI> Stream for Binding<T, U>
where
    T: Stream<Item = Result<TI>> + Unpin,
    U: Stream<Item = Result<UI>> + Unpin,
{
    type Item = Result<Binding<TI, UI>>;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        match &mut *self {
            Tcp(t) => Pin::new(t).poll_next(cx).map(|i| i.map(|x| x.map(Tcp))),
            Unix(u) => Pin::new(u).poll_next(cx).map(|i| i.map(|x| x.map(Unix))),
        }
    }
}

impl<T, U> Binding<T, U>
where
    T: AsyncRead + Unpin,
    U: AsyncRead + Unpin,
{
    fn as_async_read(&mut self) -> Pin<&mut (dyn AsyncRead + Unpin)> {
        Pin::new(match self {
            Tcp(t) => t as &mut (dyn AsyncRead + Unpin),
            Unix(u) => u as &mut (dyn AsyncRead + Unpin),
        })
    }
}

impl<T, U> Binding<T, U>
where
    T: AsyncWrite + Unpin,
    U: AsyncWrite + Unpin,
{
    fn as_async_write(&mut self) -> Pin<&mut (dyn AsyncWrite + Unpin)> {
        Pin::new(match self {
            Tcp(t) => t as &mut (dyn AsyncWrite + Unpin),
            Unix(u) => u as &mut (dyn AsyncWrite + Unpin),
        })
    }
}

impl<T, U> Binding<T, U>
where
    T: AsyncWrite + Unpin,
    U: AsyncWrite + Unpin,
{
}

impl<T, U> AsyncRead for Binding<T, U>
where
    T: AsyncRead + Unpin,
    U: AsyncRead + Unpin,
{
    fn poll_read(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut [u8],
    ) -> Poll<Result<usize>> {
        self.as_async_read().poll_read(cx, buf)
    }
}

impl<T, U> AsyncWrite for Binding<T, U>
where
    T: AsyncWrite + Unpin,
    U: AsyncWrite + Unpin,
{
    fn poll_write(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<Result<usize>> {
        self.as_async_write().poll_write(cx, buf)
    }

    fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
        self.as_async_write().poll_flush(cx)
    }

    fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
        self.as_async_write().poll_close(cx)
    }
}

impl<T, U> Binding<T, U>
where
    T: Transport,
    U: Transport,
{
    fn as_server_transport_mut(&mut self) -> &mut dyn Transport {
        match self {
            Tcp(t) => t as &mut dyn Transport,
            Unix(u) => u as &mut dyn Transport,
        }
    }
    fn as_server_transport(&self) -> &dyn Transport {
        match self {
            Tcp(t) => t as &dyn Transport,
            Unix(u) => u as &dyn Transport,
        }
    }
}

impl<T, U> Transport for Binding<T, U>
where
    T: Transport,
    U: Transport,
{
    fn set_linger(&mut self, linger: Option<std::time::Duration>) -> Result<()> {
        self.as_server_transport_mut().set_linger(linger)
    }

    fn set_nodelay(&mut self, nodelay: bool) -> Result<()> {
        self.as_server_transport_mut().set_nodelay(nodelay)
    }

    fn set_ip_ttl(&mut self, ttl: u32) -> Result<()> {
        self.as_server_transport_mut().set_ip_ttl(ttl)
    }

    fn peer_addr(&self) -> Result<Option<std::net::SocketAddr>> {
        self.as_server_transport().peer_addr()
    }
}