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
/// Returns a result of the future. Should be used inside [`AsyncFuture`]
/// context.
///
/// [`AsyncFuture`]: struct.AsyncFuture.html
#[macro_export]
macro_rules! await {
  ($future:expr) => {
    {
      let mut future = $future;
      loop {
        let result = future.poll();
        #[allow(unreachable_patterns, unreachable_code)]
        match result {
          Ok(Async::NotReady) => {
            yield;
          }
          Ok(Async::Ready(ready)) => {
            break Ok(ready);
          }
          Err(err) => {
            break Err(err);
          }
        }
      }
    }
  }
}

/// Asynchronously iterates over a stream. Should be used inside [`AsyncFuture`]
/// context.
///
/// [`AsyncFuture`]: struct.AsyncFuture.html
#[macro_export]
macro_rules! await_for {
  ($pat:pat in $expr:expr; $block:block) => {
    {
      let mut stream = $expr;
      loop {
        let $pat = {
          let result = stream.poll()?;
          match result {
            Async::NotReady => {
              yield;
              continue;
            }
            Async::Ready(Some(value)) => {
              value
            }
            Async::Ready(None) => {
              break;
            }
          }
        };
        $block
      }
    }
  }
}