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
#![no_std]
#![feature(generator_trait)]
use core::{
future::Future,
ops::{Generator, GeneratorState},
pin::Pin,
ptr::NonNull,
task::{Context, Poll},
};
use pin_project::pin_project;
pub use futures_core::Stream;
pub use stream_future_impl::stream;
#[doc(hidden)]
#[derive(Debug, Copy, Clone)]
pub struct ResumeTy(NonNull<Context<'static>>);
unsafe impl Send for ResumeTy {}
unsafe impl Sync for ResumeTy {}
impl ResumeTy {
pub fn get_context<'a, 'b>(self) -> &'a mut Context<'b> {
unsafe { &mut *self.0.as_ptr().cast() }
}
pub fn poll_future<F: Future>(self, f: Pin<&mut F>) -> Poll<F::Output> {
f.poll(self.get_context())
}
}
#[doc(hidden)]
#[pin_project]
pub struct GenStreamFuture<P, T: Generator<ResumeTy, Yield = Poll<P>>> {
#[pin]
gen: T,
ret: Option<T::Return>,
}
impl<P, T: Generator<ResumeTy, Yield = Poll<P>>> GenStreamFuture<P, T> {
pub const fn new(gen: T) -> Self {
Self { gen, ret: None }
}
}
impl<P, T: Generator<ResumeTy, Yield = Poll<P>>> Future for GenStreamFuture<P, T> {
type Output = T::Return;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let cx = NonNull::from(cx);
let this = self.project();
if let Some(x) = this.ret.take() {
Poll::Ready(x)
} else {
let gen = this.gen;
match gen.resume(ResumeTy(cx.cast())) {
GeneratorState::Yielded(p) => match p {
Poll::Pending => Poll::Pending,
Poll::Ready(_) => {
unsafe { cx.as_ref() }.waker().wake_by_ref();
Poll::Pending
}
},
GeneratorState::Complete(x) => Poll::Ready(x),
}
}
}
}
impl<P, T: Generator<ResumeTy, Yield = Poll<P>>> Stream for GenStreamFuture<P, T> {
type Item = P;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let this = self.project();
let gen = this.gen;
match gen.resume(ResumeTy(NonNull::from(cx).cast())) {
GeneratorState::Yielded(p) => match p {
Poll::Pending => Poll::Pending,
Poll::Ready(p) => Poll::Ready(Some(p)),
},
GeneratorState::Complete(x) => {
*this.ret = Some(x);
Poll::Ready(None)
}
}
}
}