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
// Copyright 2018 Marco Napetti
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

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

use lock_api::{RwLock, RawRwLock, RwLockReadGuard};

use super::FutureRawRwLock;

/// Wrapper to read from RwLock in Future-style
pub struct FutureRead<'a, R, T>
where
    R: RawRwLock + 'a,
    T: 'a,
{
    lock: &'a RwLock<FutureRawRwLock<R>, T>,
    _contents: PhantomData<T>,
    _locktype: PhantomData<R>,
}

impl<'a, R, T> FutureRead<'a, R, T>
where
    R: RawRwLock + 'a,
    T: 'a,
{
    fn new(lock: &'a RwLock<FutureRawRwLock<R>, T>) -> Self {
        FutureRead {
            lock,
            _locktype: PhantomData,
            _contents: PhantomData,
        }
    }
}

impl<'a, R, T> Future for FutureRead<'a, R, T>
where
    R: RawRwLock + 'a,
    T: 'a,
{
    type Output = RwLockReadGuard<'a, FutureRawRwLock<R>, T>;

    fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
        match self.lock.try_read() {
            Some(read_lock) => Poll::Ready(read_lock),
            None => {
                // Register Waker so we can notified when we can be polled again
                unsafe { self.lock.raw().register_waker(cx.waker()); }
                Poll::Pending
            },
        }
    }
}

/// Trait to permit FutureRead implementation on wrapped RwLock (not RwLock itself)
pub trait FutureReadable<R: RawRwLock, T> {
    /// Returns the read-lock without blocking
    fn future_read(&self) -> FutureRead<R, T>;
}

impl<R: RawRwLock, T> FutureReadable<R, T> for RwLock<FutureRawRwLock<R>, T> {
    fn future_read(&self) -> FutureRead<R, T> {
        FutureRead::new(self)
    }
}