serial_core/
serial_io.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Types to help in the implementation and use [`SerialIo`].

use crate::SerialIo;
use futures::io::AsyncRead;
use futures::io::AsyncWrite;
use inspect::InspectMut;
use parking_lot::Mutex;
use std::fmt::Debug;
use std::io;
use std::io::IoSliceMut;
use std::pin::Pin;
use std::sync::Arc;
use std::task::Context;
use std::task::Poll;

/// An implementation of [`SerialIo`] for a connected serial port wrapping an
/// implementation of [`AsyncRead`] and [`AsyncWrite`].
pub struct Connected<T>(T);

impl<T> InspectMut for Connected<T> {
    fn inspect_mut(&mut self, req: inspect::Request<'_>) {
        req.respond();
    }
}

impl<T: AsyncRead + AsyncWrite + Send> Connected<T> {
    /// Returns a new instance wrapping `t`.
    pub fn new(t: T) -> Self {
        Self(t)
    }

    /// Returns the wrapped value.
    pub fn into_inner(self) -> T {
        self.0
    }
}

impl<T: AsyncRead + AsyncWrite + Send + Unpin> SerialIo for Connected<T> {
    fn is_connected(&self) -> bool {
        true
    }

    fn poll_connect(&mut self, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        Poll::Ready(Ok(()))
    }

    fn poll_disconnect(&mut self, _cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        Poll::Pending
    }
}

impl<T: AsyncRead + Unpin> AsyncRead for Connected<T> {
    fn poll_read(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut [u8],
    ) -> Poll<io::Result<usize>> {
        let r = Pin::new(&mut self.get_mut().0).poll_read(cx, buf);
        if matches!(r, Poll::Ready(Ok(0))) {
            Poll::Pending
        } else {
            r
        }
    }

    fn poll_read_vectored(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        bufs: &mut [IoSliceMut<'_>],
    ) -> Poll<io::Result<usize>> {
        let r = Pin::new(&mut self.get_mut().0).poll_read_vectored(cx, bufs);
        if matches!(r, Poll::Ready(Ok(0))) {
            Poll::Pending
        } else {
            r
        }
    }
}

impl<T: AsyncWrite + Unpin> AsyncWrite for Connected<T> {
    fn poll_write(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<io::Result<usize>> {
        Pin::new(&mut self.get_mut().0).poll_write(cx, buf)
    }

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

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

    fn poll_write_vectored(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        bufs: &[io::IoSlice<'_>],
    ) -> Poll<io::Result<usize>> {
        Pin::new(&mut self.get_mut().0).poll_write_vectored(cx, bufs)
    }
}

/// Returns a new implementation of [`SerialIo`] wrapping `t`, plus a handle to
/// detach `t` and get it back.
pub fn detachable<T: SerialIo + Unpin>(t: T) -> (DetachableIo<T>, IoDetacher<T>) {
    let inner = Arc::new(Mutex::new(Some(t)));
    (
        DetachableIo {
            inner: inner.clone(),
        },
        IoDetacher { inner },
    )
}

/// An object implementing [`AsyncRead`] or [`AsyncWrite`] whose underlying
/// object can be detached.
///
/// Once the object is detached (via [`IoDetacher::detach`]), reads will return
/// `Ok(0)` (indicating EOF), and writes will fail with
/// [`std::io::ErrorKind::BrokenPipe`].
#[derive(Debug)]
pub struct DetachableIo<T> {
    inner: Arc<Mutex<Option<T>>>,
}

impl<T: InspectMut> InspectMut for DetachableIo<T> {
    fn inspect_mut(&mut self, req: inspect::Request<'_>) {
        self.inner.lock().inspect_mut(req)
    }
}

impl<T> DetachableIo<T> {
    /// Makes an object that's already in the detached state.
    pub fn detached() -> Self {
        Self {
            inner: Arc::new(Mutex::new(None)),
        }
    }
}

/// A handle used to detach the object from a [`DetachableIo`].
pub struct IoDetacher<T> {
    inner: Arc<Mutex<Option<T>>>,
}

impl<T: SerialIo + Unpin> IoDetacher<T> {
    /// Takes the underlying IO object from the associated [`DetachableIo`].
    pub fn detach(self) -> T {
        self.inner.lock().take().unwrap()
    }
}

impl<T: SerialIo + Unpin> SerialIo for DetachableIo<T> {
    fn is_connected(&self) -> bool {
        self.inner.lock().as_ref().is_some_and(|s| s.is_connected())
    }

    fn poll_connect(&mut self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        let mut inner = self.inner.lock();
        if let Some(serial) = &mut *inner {
            serial.poll_connect(cx)
        } else {
            Poll::Pending
        }
    }

    fn poll_disconnect(&mut self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        let mut inner = self.inner.lock();
        if let Some(serial) = &mut *inner {
            serial.poll_disconnect(cx)
        } else {
            Poll::Ready(Ok(()))
        }
    }
}

impl<T: AsyncRead + Unpin> AsyncRead for DetachableIo<T> {
    fn poll_read(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut [u8],
    ) -> Poll<io::Result<usize>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_read(cx, buf)
        } else {
            Poll::Ready(Ok(0))
        }
    }

    fn poll_read_vectored(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        bufs: &mut [IoSliceMut<'_>],
    ) -> Poll<io::Result<usize>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_read_vectored(cx, bufs)
        } else {
            Poll::Ready(Ok(0))
        }
    }
}

impl<T: AsyncWrite + Unpin> AsyncWrite for DetachableIo<T> {
    fn poll_write(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<io::Result<usize>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_write(cx, buf)
        } else {
            Poll::Ready(Err(io::ErrorKind::BrokenPipe.into()))
        }
    }

    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_flush(cx)
        } else {
            Poll::Ready(Err(io::ErrorKind::BrokenPipe.into()))
        }
    }

    fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_close(cx)
        } else {
            Poll::Ready(Err(io::ErrorKind::BrokenPipe.into()))
        }
    }

    fn poll_write_vectored(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        bufs: &[io::IoSlice<'_>],
    ) -> Poll<io::Result<usize>> {
        let mut inner = self.inner.lock();
        if let Some(inner) = &mut *inner {
            Pin::new(inner).poll_write_vectored(cx, bufs)
        } else {
            Poll::Ready(Err(io::ErrorKind::BrokenPipe.into()))
        }
    }
}