twilight_standby/
future.rs1use futures_core::Stream;
6use std::{
7 error::Error,
8 fmt::{Display, Formatter, Result as FmtResult},
9 future::Future,
10 pin::Pin,
11 task::{Context, Poll},
12};
13use tokio::sync::{
14 mpsc::UnboundedReceiver as MpscReceiver,
15 oneshot::{error::RecvError, Receiver},
16};
17use twilight_model::{
18 application::interaction::Interaction,
19 gateway::{
20 event::Event,
21 payload::incoming::{MessageCreate, ReactionAdd},
22 },
23};
24
25#[derive(Debug)]
27pub struct Canceled(RecvError);
28
29impl Canceled {
30 pub fn into_source(self) -> Option<Box<dyn Error + Send + Sync>> {
32 Some(Box::new(self.0))
33 }
34}
35
36impl Display for Canceled {
37 fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
38 Display::fmt(&self.0, f)
39 }
40}
41
42impl Error for Canceled {
43 fn source(&self) -> Option<&(dyn Error + 'static)> {
44 Some(&self.0)
45 }
46}
47
48#[derive(Debug)]
52#[must_use = "futures do nothing unless you `.await` or poll them"]
53pub struct WaitForEventFuture {
54 pub(crate) rx: Receiver<Event>,
56}
57
58impl Future for WaitForEventFuture {
59 type Output = Result<Event, Canceled>;
60
61 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
62 Pin::new(&mut self.rx).poll(cx).map_err(Canceled)
63 }
64}
65
66#[derive(Debug)]
70#[must_use = "streams do nothing unless you poll them"]
71pub struct WaitForEventStream {
72 pub(crate) rx: MpscReceiver<Event>,
74}
75
76impl Stream for WaitForEventStream {
77 type Item = Event;
78
79 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
80 self.rx.poll_recv(cx)
81 }
82}
83
84#[derive(Debug)]
88#[must_use = "futures do nothing unless you `.await` or poll them"]
89pub struct WaitForGuildEventFuture {
90 pub(crate) rx: Receiver<Event>,
92}
93
94impl Future for WaitForGuildEventFuture {
95 type Output = Result<Event, Canceled>;
96
97 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
98 Pin::new(&mut self.rx).poll(cx).map_err(Canceled)
99 }
100}
101
102#[derive(Debug)]
106#[must_use = "streams do nothing unless you poll them"]
107pub struct WaitForGuildEventStream {
108 pub(crate) rx: MpscReceiver<Event>,
110}
111
112impl Stream for WaitForGuildEventStream {
113 type Item = Event;
114
115 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
116 self.rx.poll_recv(cx)
117 }
118}
119
120#[derive(Debug)]
124#[must_use = "futures do nothing unless you `.await` or poll them"]
125pub struct WaitForMessageFuture {
126 pub(crate) rx: Receiver<MessageCreate>,
128}
129
130impl Future for WaitForMessageFuture {
131 type Output = Result<MessageCreate, Canceled>;
132
133 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
134 Pin::new(&mut self.rx).poll(cx).map_err(Canceled)
135 }
136}
137
138#[derive(Debug)]
142#[must_use = "streams do nothing unless you poll them"]
143pub struct WaitForMessageStream {
144 pub(crate) rx: MpscReceiver<MessageCreate>,
146}
147
148impl Stream for WaitForMessageStream {
149 type Item = MessageCreate;
150
151 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
152 self.rx.poll_recv(cx)
153 }
154}
155
156#[derive(Debug)]
160#[must_use = "futures do nothing unless you `.await` or poll them"]
161pub struct WaitForReactionFuture {
162 pub(crate) rx: Receiver<ReactionAdd>,
164}
165
166impl Future for WaitForReactionFuture {
167 type Output = Result<ReactionAdd, Canceled>;
168
169 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
170 Pin::new(&mut self.rx).poll(cx).map_err(Canceled)
171 }
172}
173
174#[derive(Debug)]
178#[must_use = "streams do nothing unless you poll them"]
179pub struct WaitForReactionStream {
180 pub(crate) rx: MpscReceiver<ReactionAdd>,
182}
183
184impl Stream for WaitForReactionStream {
185 type Item = ReactionAdd;
186
187 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
188 self.rx.poll_recv(cx)
189 }
190}
191
192#[derive(Debug)]
196#[must_use = "futures do nothing unless you `.await` or poll them"]
197pub struct WaitForComponentFuture {
198 pub(crate) rx: Receiver<Interaction>,
200}
201
202impl Future for WaitForComponentFuture {
203 type Output = Result<Interaction, Canceled>;
204
205 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
206 Pin::new(&mut self.rx).poll(cx).map_err(Canceled)
207 }
208}
209
210#[derive(Debug)]
214#[must_use]
215pub struct WaitForComponentStream {
216 pub(crate) rx: MpscReceiver<Interaction>,
218}
219
220impl Stream for WaitForComponentStream {
221 type Item = Interaction;
222
223 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
224 self.rx.poll_recv(cx)
225 }
226}
227
228#[cfg(test)]
229mod tests {
230 use super::{
231 WaitForEventFuture, WaitForEventStream, WaitForGuildEventFuture, WaitForGuildEventStream,
232 WaitForMessageFuture, WaitForMessageStream, WaitForReactionFuture, WaitForReactionStream,
233 };
234 use futures_core::Stream;
235 use static_assertions::assert_impl_all;
236 use std::{fmt::Debug, future::Future};
237
238 assert_impl_all!(WaitForEventFuture: Debug, Future, Send, Sync);
239 assert_impl_all!(WaitForGuildEventFuture: Debug, Future, Send, Sync);
240 assert_impl_all!(WaitForMessageFuture: Debug, Future, Send, Sync);
241 assert_impl_all!(WaitForReactionFuture: Debug, Future, Send, Sync);
242 assert_impl_all!(WaitForEventStream: Debug, Stream, Send, Sync);
243 assert_impl_all!(WaitForGuildEventStream: Debug, Stream, Send, Sync);
244 assert_impl_all!(WaitForMessageStream: Debug, Stream, Send, Sync);
245 assert_impl_all!(WaitForReactionStream: Debug, Stream, Send, Sync);
246}