summaryrefslogtreecommitdiffstats
path: root/third_party/rust/tokio-io/src/split.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/tokio-io/src/split.rs
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/tokio-io/src/split.rs')
-rw-r--r--third_party/rust/tokio-io/src/split.rs80
1 files changed, 80 insertions, 0 deletions
diff --git a/third_party/rust/tokio-io/src/split.rs b/third_party/rust/tokio-io/src/split.rs
new file mode 100644
index 0000000000..8993c4f77e
--- /dev/null
+++ b/third_party/rust/tokio-io/src/split.rs
@@ -0,0 +1,80 @@
+use std::io::{self, Read, Write};
+
+use futures::{Async, Poll};
+use futures::sync::BiLock;
+use bytes::{Buf, BufMut};
+
+use {AsyncRead, AsyncWrite};
+
+/// The readable half of an object returned from `AsyncRead::split`.
+#[derive(Debug)]
+pub struct ReadHalf<T> {
+ handle: BiLock<T>,
+}
+
+/// The writable half of an object returned from `AsyncRead::split`.
+#[derive(Debug)]
+pub struct WriteHalf<T> {
+ handle: BiLock<T>,
+}
+
+pub fn split<T: AsyncRead + AsyncWrite>(t: T) -> (ReadHalf<T>, WriteHalf<T>) {
+ let (a, b) = BiLock::new(t);
+ (ReadHalf { handle: a }, WriteHalf { handle: b })
+}
+
+fn would_block() -> io::Error {
+ io::Error::new(io::ErrorKind::WouldBlock, "would block")
+}
+
+impl<T: AsyncRead> Read for ReadHalf<T> {
+ fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.read(buf),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+}
+
+impl<T: AsyncRead> AsyncRead for ReadHalf<T> {
+ fn read_buf<B: BufMut>(&mut self, buf: &mut B) -> Poll<usize, io::Error> {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.read_buf(buf),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+}
+
+impl<T: AsyncWrite> Write for WriteHalf<T> {
+ fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.write(buf),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+
+ fn flush(&mut self) -> io::Result<()> {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.flush(),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+}
+
+impl<T: AsyncWrite> AsyncWrite for WriteHalf<T> {
+ fn shutdown(&mut self) -> Poll<(), io::Error> {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.shutdown(),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+
+ fn write_buf<B: Buf>(&mut self, buf: &mut B) -> Poll<usize, io::Error>
+ where Self: Sized,
+ {
+ match self.handle.poll_lock() {
+ Async::Ready(mut l) => l.write_buf(buf),
+ Async::NotReady => Err(would_block()),
+ }
+ }
+}