1use std::{
3 future::Future,
4 io::SeekFrom,
5 pin::Pin,
6 task::{Context, Poll},
7};
8use tokio::io::{AsyncBufRead, AsyncRead, AsyncSeek, AsyncWrite, ReadBuf, Result};
9
10#[allow(missing_docs)] #[derive(Debug, Clone)]
64pub enum Either<L, R> {
65 Left(L),
66 Right(R),
67}
68
69macro_rules! delegate_call {
73 ($self:ident.$method:ident($($args:ident),+)) => {
74 unsafe {
75 match $self.get_unchecked_mut() {
76 Self::Left(l) => Pin::new_unchecked(l).$method($($args),+),
77 Self::Right(r) => Pin::new_unchecked(r).$method($($args),+),
78 }
79 }
80 }
81}
82
83impl<L, R, O> Future for Either<L, R>
84where
85 L: Future<Output = O>,
86 R: Future<Output = O>,
87{
88 type Output = O;
89
90 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
91 delegate_call!(self.poll(cx))
92 }
93}
94
95impl<L, R> AsyncRead for Either<L, R>
96where
97 L: AsyncRead,
98 R: AsyncRead,
99{
100 fn poll_read(
101 self: Pin<&mut Self>,
102 cx: &mut Context<'_>,
103 buf: &mut ReadBuf<'_>,
104 ) -> Poll<Result<()>> {
105 delegate_call!(self.poll_read(cx, buf))
106 }
107}
108
109impl<L, R> AsyncBufRead for Either<L, R>
110where
111 L: AsyncBufRead,
112 R: AsyncBufRead,
113{
114 fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<&[u8]>> {
115 delegate_call!(self.poll_fill_buf(cx))
116 }
117
118 fn consume(self: Pin<&mut Self>, amt: usize) {
119 delegate_call!(self.consume(amt));
120 }
121}
122
123impl<L, R> AsyncSeek for Either<L, R>
124where
125 L: AsyncSeek,
126 R: AsyncSeek,
127{
128 fn start_seek(self: Pin<&mut Self>, position: SeekFrom) -> Result<()> {
129 delegate_call!(self.start_seek(position))
130 }
131
132 fn poll_complete(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<u64>> {
133 delegate_call!(self.poll_complete(cx))
134 }
135}
136
137impl<L, R> AsyncWrite for Either<L, R>
138where
139 L: AsyncWrite,
140 R: AsyncWrite,
141{
142 fn poll_write(self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>> {
143 delegate_call!(self.poll_write(cx, buf))
144 }
145
146 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<tokio::io::Result<()>> {
147 delegate_call!(self.poll_flush(cx))
148 }
149
150 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<tokio::io::Result<()>> {
151 delegate_call!(self.poll_shutdown(cx))
152 }
153}
154
155impl<L, R> futures_core::stream::Stream for Either<L, R>
156where
157 L: futures_core::stream::Stream,
158 R: futures_core::stream::Stream<Item = L::Item>,
159{
160 type Item = L::Item;
161
162 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
163 delegate_call!(self.poll_next(cx))
164 }
165}
166
167impl<L, R, Item, Error> futures_sink::Sink<Item> for Either<L, R>
168where
169 L: futures_sink::Sink<Item, Error = Error>,
170 R: futures_sink::Sink<Item, Error = Error>,
171{
172 type Error = Error;
173
174 fn poll_ready(
175 self: Pin<&mut Self>,
176 cx: &mut Context<'_>,
177 ) -> Poll<std::result::Result<(), Self::Error>> {
178 delegate_call!(self.poll_ready(cx))
179 }
180
181 fn start_send(self: Pin<&mut Self>, item: Item) -> std::result::Result<(), Self::Error> {
182 delegate_call!(self.start_send(item))
183 }
184
185 fn poll_flush(
186 self: Pin<&mut Self>,
187 cx: &mut Context<'_>,
188 ) -> Poll<std::result::Result<(), Self::Error>> {
189 delegate_call!(self.poll_flush(cx))
190 }
191
192 fn poll_close(
193 self: Pin<&mut Self>,
194 cx: &mut Context<'_>,
195 ) -> Poll<std::result::Result<(), Self::Error>> {
196 delegate_call!(self.poll_close(cx))
197 }
198}
199
200#[cfg(test)]
201mod tests {
202 use super::*;
203 use tokio::io::{repeat, AsyncReadExt, Repeat};
204 use tokio_stream::{once, Once, StreamExt};
205
206 #[tokio::test]
207 async fn either_is_stream() {
208 let mut either: Either<Once<u32>, Once<u32>> = Either::Left(once(1));
209
210 assert_eq!(Some(1u32), either.next().await);
211 }
212
213 #[tokio::test]
214 async fn either_is_async_read() {
215 let mut buffer = [0; 3];
216 let mut either: Either<Repeat, Repeat> = Either::Right(repeat(0b101));
217
218 either.read_exact(&mut buffer).await.unwrap();
219 assert_eq!(buffer, [0b101, 0b101, 0b101]);
220 }
221}