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
//! Non-blocking (async/await) APIs on top of the base radio traits
//! Note that this _requires_ (and will include) std
//!
//! 
//! 
//! ## https://github.com/ryankurte/rust-radio
//! ## Copyright 2020 Ryan Kurte

use core::future::Future;
use core::marker::PhantomData;
use core::task::{Context, Poll, Waker};
use core::pin::Pin;

// std required for async-trait
extern crate std;
use std::boxed::Box;
use async_trait::async_trait;

use crate::{Transmit, Receive, Power};

pub struct AsyncOptions {
    pub power: Option<i8>,
}

impl Default for AsyncOptions {
    fn default() -> Self {
        Self {            
            power: None,
        }
    }
}

/// Async transmit function implemented over `radio::Transmit` and `radio::Power` using the provided `AsyncOptions`
/// 
#[cfg_attr(feature = "mock", doc = r##"
```
extern crate async_std;
use async_std::task;

# use radio::*;
# use radio::mock::*;
use radio::nonblocking::{AsyncTransmit, AsyncOptions};

# let mut radio = MockRadio::new(&[
#    Transaction::start_transmit(vec![0xaa, 0xbb], None),
#    Transaction::check_transmit(Ok(false)),
#    Transaction::check_transmit(Ok(true)),
# ]);
# 
task::block_on(async {
    // Transmit using a future
    let res = radio.async_transmit(&[0xaa, 0xbb], AsyncOptions::default()).await;
    
    assert_eq!(res, Ok(()));
});

# radio.done();
```
"##)]
/// 
#[async_trait]
pub trait AsyncTransmit<E> {
    async fn async_transmit(&mut self, data: &[u8], tx_options: AsyncOptions) -> Result<(), E> where E: 'async_trait;
}

#[async_trait]
impl <T, E> AsyncTransmit<E> for T
where
    T: Transmit<Error = E> + Power<Error = E> + Send,
    E: core::fmt::Debug + Send + Unpin,
{
    async fn async_transmit(&mut self, data: &[u8], tx_options: AsyncOptions) -> Result<(), E> where E: 'async_trait,
    {
        // Set output power if specified
        if let Some(p) = tx_options.power {
            self.set_power(p)?;
        }

        // Start transmission
        self.start_transmit(data)?;

        // Create transmit future
        let f: TransmitFuture<_, E> = TransmitFuture{radio: self, waker: None, _err: PhantomData};

        // Await on transmission
        let res = f.await?;

        // Return result
        Ok(res)
    }
}

struct TransmitFuture<'a, T, E> {
    radio: &'a mut T,
    waker: Option<Waker>,
    _err: PhantomData<E>,
}

impl <'a, T, E> Future for TransmitFuture<'a, T, E> 
where 
    T: Transmit<Error = E> + Power<Error = E> + Send,
    E: core::fmt::Debug + Send + Unpin,
{
    type Output = Result<(), E>;

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let s = self.get_mut();

        // Check for completion
        if s.radio.check_transmit()? {
            return Poll::Ready(Ok(()))
        };
        
        // TODO: we don't _strictly_ need to wake every time?
        // but for now, we're going to
        cx.waker().clone().wake();

        // Store for later (probably not required with above)
        s.waker = Some(cx.waker().clone());

        // Indicate there is still work to be done
        Poll::Pending
    }
}

/// Async transmit function implemented over `radio::Transmit` and `radio::Power` using the provided `AsyncOptions`
/// 
#[cfg_attr(feature = "mock", doc = r##"
```
extern crate async_std;
use async_std::task;

# use radio::*;
# use radio::mock::*;
use radio::nonblocking::{AsyncReceive, AsyncOptions};

let data = [0xaa, 0xbb];
let info = BasicInfo::new(-81, 0);

# let mut radio = MockRadio::new(&[
#    Transaction::start_receive(None),
#    Transaction::check_receive(true, Ok(false)),
#    Transaction::check_receive(true, Ok(true)),
#    Transaction::get_received(Ok((data.to_vec(), info.clone()))),
# ]);
# 
task::block_on(async {
    // Setup buffer and receive info
    let mut buff = [0u8; 128];
    let mut i = BasicInfo::new(0, 0);

    // Receive using a future
    let res = radio.async_receive(&mut i, &mut buff, AsyncOptions::default()).await;
    
    assert_eq!(res, Ok(data.len()));
    assert_eq!(&buff[..data.len()], &data);
});

# radio.done();
```
"##)]
/// 
#[async_trait]
pub trait AsyncReceive<I, E> {
    async fn async_receive(&mut self, info: &mut I, buff: &mut [u8], rx_options: AsyncOptions) -> Result<usize, E> where E: 'async_trait;
}

#[async_trait]
impl <T, I, E> AsyncReceive<I, E> for T
where
    T: Receive<Error = E, Info = I> + Send,
    I: core::fmt::Debug + Send,
    E: core::fmt::Debug + Send + Unpin,
{
    async fn async_receive(&mut self, info: &mut I, buff: &mut [u8], _rx_options: AsyncOptions) -> Result<usize, E> where E: 'async_trait {
        // Start receive mode
        self.start_receive()?;

        // Create receive future
        let f: ReceiveFuture<_, I, E> = ReceiveFuture {
            radio: self, info, buff, waker: None, _err: PhantomData
        };

        // Await completion
        let r = f.await?;

        // Return result
        Ok(r)
    }
}

struct ReceiveFuture<'a, T, I, E> {
    radio: &'a mut T,
    info: &'a mut I,
    buff: &'a mut [u8],
    waker: Option<Waker>,
    _err: PhantomData<E>,
}

impl <'a, T, I, E> Future for ReceiveFuture<'a, T, I, E> 
where 
    T: Receive<Error = E, Info = I> + Send,
    I: core::fmt::Debug + Send,
    E: core::fmt::Debug + Send + Unpin,
{
    type Output = Result<usize, E>;

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let s = self.get_mut();

        // Check for completion
        if s.radio.check_receive(true)? {
            // Retrieve data
            let n = s.radio.get_received(s.info, s.buff)?;

            return Poll::Ready(Ok(n));
        }

        // TODO: we don't _strictly_ need to wake every time?
        // but for now, we're going to
        cx.waker().clone().wake();

        // Store for later (probably not required with above)
        s.waker = Some(cx.waker().clone());

        // Indicate there is still work to be done
        Poll::Pending
    }
}