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
use futures::task::Context;
use futures::FutureExt;
use std::future::Future;
use std::pin::Pin;
use std::task;
use tokio::sync::oneshot;

pub struct FutureReply<T>(oneshot::Receiver<T>);

impl<T> FutureReply<T> {
  pub fn channel() -> (FutureReplySender<T>, FutureReply<T>) {
    let (tx, rx) = oneshot::channel();
    (FutureReplySender(tx), FutureReply(rx))
  }
}

pub struct FutureReplySender<T>(oneshot::Sender<T>);
impl<T> FutureReplySender<T> {
  pub fn send(self, value: T) -> Result<(), T> {
    self.0.send(value)
  }
}

impl<T> Future for FutureReply<T> {
  type Output = Option<T>;

  fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> task::Poll<Self::Output> {
    self.0.poll_unpin(cx).map(|res| res.ok())
  }
}