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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
//! Branch an asynchronous stream into two, pushing all items to both halves.
//!
//! The resulting branches can be polled independently from each other and will
//! receive all items from the underlying stream (which must be `Clone`).
//!
//! As long as both halves are alive, one half will never outpace the other by more
//! than a fixed number of items.
//!
//! This library is runtime agnostic. It is verified to work on both `async_std`
//! and `tokio`.
//!
//! # Example
//!
//! ```rust
//! # #[tokio::main]
//! # async fn main() {
//! use futures::{stream, prelude::*};
//!
//! let (mut left, mut right) = gabelung::new(stream::repeat(1u8));
//!
//! assert_eq!(left.next().await, Some(1u8));
//! assert_eq!(right.next().await, Some(1u8));
//! # }
//! ```

#![deny(missing_docs)]

use futures_util::{
    ready,
    stream::{FusedStream, Stream},
};
use parking_lot::Mutex;
use std::{
    pin::Pin,
    sync::Arc,
    task::{Context, Poll, Waker},
};

/// A branch of the forked stream.
///
/// As long as both halves are alive, one half will never outpace the other by more
/// than a fixed number of items.
///
/// See [`fn new(stream)`](fn.new.html) for more information.
#[must_use = "streams do nothing unless polled"]
#[derive(Debug)]
pub struct Branch<S, I> {
    direction: Direction,
    inner: Arc<Mutex<Inner<S, I>>>,
}

#[derive(Debug)]
struct Inner<S, I> {
    left: State<I>,
    right: State<I>,
    stream: S,
}

#[derive(Debug)]
enum State<I> {
    Live(Option<I>, Option<Waker>),
    Dropped,
}

#[derive(Copy, Clone, Debug, Eq, PartialEq)]
enum Direction {
    Left,
    Right,
}

/// Branch the given stream into two.
///
/// This creates two handles which can be polled independently from each other and
/// will receive all items from the underlying stream (which must be `Clone`).
///
/// As long as both halves are alive, one half will never outpace the other by more
/// than a fixed number of items.
///
/// # Example
///
/// ```rust
/// # #[tokio::main]
/// # async fn main() {
/// use futures::{stream, prelude::*};
///
/// let (mut left, mut right) = gabelung::new(stream::repeat(1u8));
///
/// assert_eq!(left.next().await, Some(1u8));
/// assert_eq!(right.next().await, Some(1u8));
/// # }
/// ```
pub fn new<S: Stream>(stream: S) -> (Branch<S, S::Item>, Branch<S, S::Item>) {
    let inner = Arc::new(Mutex::new(Inner {
        left: State::Live(None, None),
        right: State::Live(None, None),
        stream,
    }));

    let left = Branch {
        direction: Direction::Left,
        inner: inner.clone(),
    };
    let right = Branch {
        direction: Direction::Right,
        inner: inner,
    };

    (left, right)
}

impl<S, I> Drop for Branch<S, I> {
    fn drop(&mut self) {
        let mut inner = self.inner.lock();
        let Inner { left, right, .. } = &mut *inner;

        let (own_state, other_state) = match self.direction {
            Direction::Left => (left, right),
            Direction::Right => (right, left),
        };

        *own_state = State::Dropped;

        // Wake up the other half to hand off the responsibility for polling.
        //
        // If this half was the last one to poll the underlying stream and received
        // Poll::Pending, the other half is waiting for us to wake to take the next
        // action. If we're being dropped though, no further action will be taken
        // and the other half needs to be notified about that.
        other_state.wake();
    }
}

impl<S> Stream for Branch<S, S::Item>
where
    S: Stream,
    S::Item: Clone,
{
    type Item = S::Item;

    fn poll_next(
        self: Pin<&mut Self>,
        cx: &mut Context,
    ) -> Poll<Option<Self::Item>> {
        let mut inner = self.inner.lock();
        let Inner {
            left,
            right,
            stream,
        } = &mut *inner;

        // SAFETY: From my limited understanding this should be safe. The code never
        // moves the stream, and since it is behind Arc<Mutex> it should also never
        // move on its own.
        let stream = unsafe { Pin::new_unchecked(stream) };
        let (own_branch, other_branch) = match self.direction {
            Direction::Left => (left, right),
            Direction::Right => (right, left),
        };

        own_branch.ensure_waker(cx.waker());

        match own_branch.take_item() {
            Some(it) => {
                // Wake up other branch since we have progressed and it's free to
                // move further now.
                other_branch.wake();

                return Poll::Ready(Some(it));
            }
            None => {
                // Other branch may still have to consume its item, wait for that to
                // happen until progressing any further. The other branch will wake
                // us up.
                if other_branch.has_item() {
                    return Poll::Pending;
                }

                match ready!(stream.poll_next(cx)) {
                    Some(it) => {
                        other_branch.put_item(&it);
                        other_branch.wake();

                        return Poll::Ready(Some(it));
                    }
                    None => {
                        return Poll::Ready(None);
                    }
                }
            }
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        let inner = self.inner.lock();
        let own_state = match self.direction {
            Direction::Left => &inner.left,
            Direction::Right => &inner.right,
        };

        let (inner_low, inner_high) = inner.stream.size_hint();
        let adjust_for_self = if own_state.has_item() { 1 } else { 0 };

        (
            inner_low + adjust_for_self,
            inner_high.map(|c| c + adjust_for_self),
        )
    }
}

impl<S> FusedStream for Branch<S, S::Item>
where
    S: FusedStream,
    S::Item: Clone,
{
    fn is_terminated(&self) -> bool {
        let inner = self.inner.lock();
        let own_state = match self.direction {
            Direction::Left => &inner.left,
            Direction::Right => &inner.right,
        };

        !own_state.has_item() && inner.stream.is_terminated()
    }
}

// The stream itself is behind the Arc, so it won't move if the branch is moved
impl<S, I> Unpin for Branch<S, I> {}

impl<I> State<I> {
    pub fn ensure_waker(&mut self, w: &Waker) {
        match self {
            State::Live(_, waker) => *waker = Some(w.clone()),
            State::Dropped => unreachable!("poll on dropped branch half"),
        }
    }

    pub fn has_item(&self) -> bool {
        match self {
            State::Live(Some(_), _) => true,
            _ => false,
        }
    }

    pub fn put_item(&mut self, item: &I)
    where
        I: Clone,
    {
        match self {
            State::Live(it @ None, _) => *it = Some(item.clone()),
            State::Live(Some(_), _) => panic!("overwriting branch item"),
            _ => {}
        }
    }

    pub fn take_item(&mut self) -> Option<I> {
        match self {
            State::Live(it, _) => it.take(),
            _ => None,
        }
    }

    pub fn wake(&self) {
        if let State::Live(_, Some(w)) = self {
            w.wake_by_ref();
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use futures::prelude::*;

    fn get_stream() -> (
        Branch<stream::Repeat<()>, ()>,
        Branch<stream::Repeat<()>, ()>,
    ) {
        let base = stream::repeat(());
        crate::new(base)
    }

    fn branch_multiple(cx: &mut Context<'_>) -> Poll<()> {
        let (left, right) = get_stream();
        let (a_l, a_r) = crate::new(left);
        let (b_l, b_r) = crate::new(right);

        let mut a_l = Box::pin(a_l);
        let mut a_r = Box::pin(a_r);
        let mut b_l = Box::pin(b_l);
        let mut b_r = Box::pin(b_r);

        assert_eq!(a_l.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(a_r.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(b_l.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(b_r.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(b_r.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(b_r.as_mut().poll_next(cx), Poll::Pending);

        Poll::Ready(())
    }

    fn drop_one_half(cx: &mut Context<'_>) -> Poll<()> {
        let (left, right) = get_stream();
        let mut left = Box::pin(left);
        drop(right);

        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));

        Poll::Ready(())
    }

    fn lockstep(cx: &mut Context<'_>) -> Poll<()> {
        let (left, right) = get_stream();
        let mut left = Box::pin(left);
        let mut right = Box::pin(right);

        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));

        Poll::Ready(())
    }

    fn terminates(cx: &mut Context<'_>) -> Poll<()> {
        let (left, right) = crate::new(stream::once(future::ready(())));

        let mut left = Box::pin(left);
        let mut right = Box::pin(right);

        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(None));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(None));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(None));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(None));

        Poll::Ready(())
    }

    fn waits_for_other(cx: &mut Context<'_>) -> Poll<()> {
        let (left, right) = get_stream();
        let mut left = Box::pin(left);
        let mut right = Box::pin(right);

        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Pending);
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(right.as_mut().poll_next(cx), Poll::Pending);
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Ready(Some(())));
        assert_eq!(left.as_mut().poll_next(cx), Poll::Pending);

        Poll::Ready(())
    }

    async fn pull_items(s: impl Stream<Item = ()>, amt: usize) {
        s.take(amt).collect().await
    }

    mod a_std {
        use futures::{future, join};

        #[async_std::test]
        async fn branch_multiple() {
            future::poll_fn(super::branch_multiple).await;
        }

        #[async_std::test]
        async fn drop_one_half() {
            future::poll_fn(super::drop_one_half).await;
        }

        #[async_std::test]
        async fn lockstep() {
            future::poll_fn(super::lockstep).await;
        }

        #[async_std::test]
        async fn terminates() {
            future::poll_fn(super::terminates).await;
        }

        #[async_std::test]
        async fn waits_for_other() {
            future::poll_fn(super::waits_for_other).await;
        }

        #[async_std::test]
        async fn wakeup() {
            let (a, b) = super::get_stream();

            let fut_a = async_std::task::spawn(super::pull_items(a, 10));
            let fut_b = async_std::task::spawn(super::pull_items(b, 10));

            join!(fut_a, fut_b);
        }

        #[async_std::test]
        async fn wakeup_after_drop() {
            let (a, b) = super::get_stream();

            let fut_a = async_std::task::spawn(super::pull_items(a, 10));
            let fut_b = async_std::task::spawn(super::pull_items(b, 20));

            join!(fut_a, fut_b);
        }
    }

    mod tk {
        use futures::{future, join};

        #[tokio::test]
        async fn branch_multiple() {
            future::poll_fn(super::branch_multiple).await;
        }

        #[tokio::test]
        async fn drop_one_half() {
            future::poll_fn(super::drop_one_half).await;
        }

        #[tokio::test]
        async fn lockstep() {
            future::poll_fn(super::lockstep).await;
        }

        #[tokio::test]
        async fn terminates() {
            future::poll_fn(super::terminates).await;
        }

        #[tokio::test]
        async fn waits_for_other() {
            future::poll_fn(super::waits_for_other).await;
        }

        #[tokio::test]
        async fn wakeup() {
            let (a, b) = super::get_stream();

            let fut_a = tokio::spawn(super::pull_items(a, 10));
            let fut_b = tokio::spawn(super::pull_items(b, 10));

            let (a_res, b_res) = join!(fut_a, fut_b);
            a_res.and(b_res).expect("failed to spawn");
        }

        #[tokio::test]
        async fn wakeup_after_drop() {
            let (a, b) = super::get_stream();

            let fut_a = tokio::spawn(super::pull_items(a, 10));
            let fut_b = tokio::spawn(super::pull_items(b, 20));

            let (a_res, b_res) = join!(fut_a, fut_b);
            a_res.and(b_res).expect("failed to spawn");
        }
    }
}