tokio-uni-stream 0.0.0

Combines both `TcpStream` and `UnixStream` into a single `Stream` type, and provide a fallback type for non-Unix platforms.
Documentation
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
//! A unified stream type for both TCP and Unix domain sockets.

use std::io::Write as _;
use std::mem::MaybeUninit;
use std::os::fd::{AsFd, AsRawFd, BorrowedFd, RawFd};
use std::pin::Pin;
use std::task::{ready, Context, Poll};
use std::{fmt, io};

use socket2::Socket;
use tokio::io::unix::AsyncFd;
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
use uni_addr::UniAddr;

wrapper_lite::wrapper!(
    #[wrapper_impl(AsRef)]
    #[wrapper_impl(AsMut)]
    #[wrapper_impl(BorrowMut)]
    #[wrapper_impl(DerefMut)]
    /// A unified stream type that can represent either a TCP or Unix domain
    /// socket stream.
    pub struct Stream {
        inner: AsyncFd<Socket>,
        local_addr: UniAddr,
        peer_addr: UniAddr,
    }
);

impl fmt::Debug for Stream {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Stream")
            .field("local_addr", &self.local_addr)
            .field("peer_addr", &self.peer_addr)
            .finish()
    }
}

impl AsFd for Stream {
    fn as_fd(&self) -> BorrowedFd<'_> {
        self.inner.as_fd()
    }
}

impl AsRawFd for Stream {
    fn as_raw_fd(&self) -> RawFd {
        self.inner.as_raw_fd()
    }
}

impl TryFrom<tokio::net::TcpStream> for Stream {
    type Error = io::Error;

    /// Converts a Tokio TCP stream into a unified [`Stream`].
    ///
    /// # Panics
    ///
    /// This function panics if there is no current Tokio reactor set, or if
    /// the `rt` feature flag is not enabled.
    fn try_from(stream: tokio::net::TcpStream) -> Result<Self, Self::Error> {
        let peer_addr = UniAddr::from(stream.peer_addr()?);
        let local_addr = UniAddr::from(stream.local_addr()?);

        stream
            .into_std()
            .map(Into::into)
            .and_then(AsyncFd::new)
            .map(|inner| Self {
                inner,
                local_addr,
                peer_addr,
            })
    }
}

impl TryFrom<tokio::net::UnixStream> for Stream {
    type Error = io::Error;

    /// Converts a Tokio Unix stream into a unified [`Stream`].
    ///
    /// # Panics
    ///
    /// This function panics if there is no current Tokio reactor set, or if
    /// the `rt` feature flag is not enabled.
    fn try_from(stream: tokio::net::UnixStream) -> Result<Self, Self::Error> {
        let peer_addr = UniAddr::from(stream.peer_addr()?);
        let local_addr = UniAddr::from(stream.local_addr()?);

        stream
            .into_std()
            .map(Into::into)
            .and_then(AsyncFd::new)
            .map(|inner| Self {
                inner,
                local_addr,
                peer_addr,
            })
    }
}

impl TryFrom<std::net::TcpStream> for Stream {
    type Error = io::Error;

    /// Converts a standard library TCP stream into a unified [`Stream`].
    ///
    /// # Panics
    ///
    /// This function panics if there is no current Tokio reactor set, or if
    /// the `rt` feature flag is not enabled.
    fn try_from(stream: std::net::TcpStream) -> Result<Self, Self::Error> {
        stream.set_nonblocking(true)?;

        let peer_addr = UniAddr::from(stream.peer_addr()?);
        let local_addr = UniAddr::from(stream.local_addr()?);

        AsyncFd::new(stream.into()).map(|inner| Self {
            inner,
            local_addr,
            peer_addr,
        })
    }
}

impl TryFrom<std::os::unix::net::UnixStream> for Stream {
    type Error = io::Error;

    /// Converts a standard library Unix stream into a unified [`Stream`].
    ///
    /// # Panics
    ///
    /// This function panics if there is no current Tokio reactor set, or if
    /// the `rt` feature flag is not enabled.
    fn try_from(stream: std::os::unix::net::UnixStream) -> Result<Self, Self::Error> {
        stream.set_nonblocking(true)?;

        let peer_addr = UniAddr::from(stream.peer_addr()?);
        let local_addr = UniAddr::from(stream.local_addr()?);

        AsyncFd::new(stream.into()).map(|inner| Self {
            inner,
            local_addr,
            peer_addr,
        })
    }
}

impl AsyncRead for Stream {
    fn poll_read(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut ReadBuf<'_>,
    ) -> Poll<io::Result<()>> {
        loop {
            let mut guard = ready!(self.inner.poll_read_ready(cx))?;

            #[allow(unsafe_code)]
            let unfilled = unsafe { buf.unfilled_mut() };

            match guard.try_io(|inner| inner.get_ref().recv(unfilled)) {
                Ok(Ok(len)) => {
                    // Advance initialized
                    #[allow(unsafe_code)]
                    unsafe {
                        buf.assume_init(len);
                    };

                    // Advance filled
                    buf.advance(len);

                    return Poll::Ready(Ok(()));
                }
                Ok(Err(err)) => return Poll::Ready(Err(err)),
                Err(_would_block) => continue,
            }
        }
    }
}

impl AsyncWrite for Stream {
    fn poll_write(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<io::Result<usize>> {
        loop {
            let mut guard = ready!(self.inner.poll_write_ready(cx))?;

            match guard.try_io(|inner| inner.get_ref().send(buf)) {
                Ok(result) => return Poll::Ready(result),
                Err(_would_block) => continue,
            }
        }
    }

    fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        Poll::Ready(self.get_ref().flush())
    }

    fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        self.inner.get_ref().shutdown(std::net::Shutdown::Write)?;

        Poll::Ready(Ok(()))
    }
}

impl Stream {
    #[inline]
    /// Returns the local address of this stream.
    pub const fn local_addr(&self) -> &UniAddr {
        &self.local_addr
    }

    #[inline]
    /// Returns the peer address of this stream.
    pub const fn peer_addr(&self) -> &UniAddr {
        &self.peer_addr
    }

    /// Receives data on the socket from the remote adress to which it is
    /// connected, without removing that data from the queue. On success,
    /// returns the number of bytes peeked.
    ///
    /// Successive calls return the same data. This is accomplished by passing
    /// `MSG_PEEK` as a flag to the underlying `recv` system call.
    pub async fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
        loop {
            let mut guard = self.inner.readable().await?;

            #[allow(unsafe_code)]
            let buf = unsafe { &mut *(buf as *mut [u8] as *mut [MaybeUninit<u8>]) };

            match guard.try_io(|inner| inner.get_ref().peek(buf)) {
                Ok(result) => return result,
                Err(_would_block) => continue,
            }
        }
    }

    /// Receives data on the socket from the remote adress to which it is
    /// connected, without removing that data from the queue. On success,
    /// returns the number of bytes peeked.
    ///
    /// Successive calls return the same data. This is accomplished by passing
    /// `MSG_PEEK` as a flag to the underlying `recv` system call.
    pub fn poll_peek(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut ReadBuf<'_>,
    ) -> Poll<io::Result<usize>> {
        loop {
            let mut guard = ready!(self.inner.poll_read_ready(cx))?;

            #[allow(unsafe_code)]
            let unfilled = unsafe { buf.unfilled_mut() };

            match guard.try_io(|inner| inner.get_ref().peek(unfilled)) {
                Ok(Ok(len)) => {
                    // Advance initialized
                    #[allow(unsafe_code)]
                    unsafe {
                        buf.assume_init(len);
                    };

                    // Advance filled
                    buf.advance(len);

                    return Poll::Ready(Ok(len));
                }
                Ok(Err(err)) => return Poll::Ready(Err(err)),
                Err(_would_block) => continue,
            }
        }
    }
}

// #[cfg(all(test, any(target_os = "linux", target_os = "android")))]
// mod smoking {
//     use std::net::SocketAddr;
//     use std::os::linux::net::SocketAddrExt as _;
//     use std::os::unix::net::{UnixListener, UnixStream};

//     use anyhow::{Context as _, Result};
//     use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
//     use tokio::net::{TcpListener, UnixListener as TokioUnixListener};

//     use super::*;

//     async fn accept_loop(mut accepted: Stream) -> Result<()> {
//         loop {
//             let mut buf = [0u8; 1024];

//             let read = accepted.read(&mut buf).await?;

//             if read == 0 {
//                 break;
//             }

//             accepted.write_all(&buf[..read]).await?;
//         }

//         Ok(())
//     }

//     async fn echo_server_tcp() -> Result<SocketAddr> {
//         let listener = TcpListener::bind("127.0.0.1:0")
//             .await
//             .context("Failed to bind TCP listener")?;

//         let local_addr = listener
//             .local_addr()
//             .context("Failed to get local address")?;

//         tokio::spawn(async move {
//             loop {
//                 match listener.accept().await {
//                     Ok((stream, _)) => {
//                         let accepted = Stream::try_from(stream)?;

//                         tokio::spawn(async move {
//                             if let Err(err) = accept_loop(accepted).await {
//                                 eprintln!("Error in echo server: {}", err);
//                             }
//                         });
//                     }
//                     Err(err) => {
//                         eprintln!("Failed to accept connection: {}", err);
//                         return Err::<(), _>(err);
//                     }
//                 }
//             }
//         });

//         Ok(local_addr)
//     }

//     async fn echo_server_unix() -> Result<std::os::unix::net::SocketAddr> {
//         const DEFAULT_ABSTRACT_NAME: &str = "echo_server_unix";

//         let addr = format!("{DEFAULT_ABSTRACT_NAME}_{}",
// rand::random::<u64>());         let addr =
//             
// std::os::unix::net::SocketAddr::from_abstract_name(&addr).expect("Must be
// valid");

//         let listener = {
//             let listener =
//                 UnixListener::bind_addr(&addr).context("Failed to bind Unix
// listener")?;

//             listener
//                 .set_nonblocking(true)
//                 .context("Failed to set Unix listener non-blocking")?;

//             TokioUnixListener::from_std(listener).context("Failed to bind
// Unix listener")?         };

//         tokio::spawn(async move {
//             loop {
//                 match listener.accept().await {
//                     Ok((stream, _)) => {
//                         let accepted = Stream::try_from(stream)?;

//                         tokio::spawn(async move {
//                             if let Err(err) = accept_loop(accepted).await {
//                                 eprintln!("Error in echo server: {}", err);
//                             }
//                         });
//                     }
//                     Err(err) => {
//                         eprintln!("Failed to accept connection: {}", err);
//                         return Err::<(), _>(err);
//                     }
//                 }
//             }
//         });

//         Ok(addr)
//     }

//     #[tokio::test]
//     async fn test_tcp_echo() -> Result<()> {
//         let server_addr = echo_server_tcp().await?;

//         let mut stream =
// Stream::try_from(tokio::net::TcpStream::connect(server_addr).await?)
//             .context("Failed to connect to echo server")?;

//         let message = b"Hello, world!";
//         stream.write_all(message).await?;

//         let mut buf = Vec::new();
//         buf.resize(message.len(), 0);
//         stream.read_exact(&mut buf).await?;

//         assert_eq!(&buf, message);

//         Ok(())
//     }

//     #[tokio::test]
//     async fn test_unix_echo() -> Result<()> {
//         let server_addr = echo_server_unix().await?;

//         let mut stream = {
//             let stream = UnixStream::connect_addr(&server_addr)
//                 .context("Failed to connect to echo server")?;
//             Stream::try_from(stream).context("Failed to connect to echo
// server")?         };

//         let message = b"Hello, Unix domain socket!";
//         stream.write_all(message).await?;

//         let mut buf = Vec::new();
//         buf.resize(message.len(), 0);
//         stream.read_exact(&mut buf).await?;

//         assert_eq!(&buf, message);

//         Ok(())
//     }
// }