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
// 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, RawRwLockUpgrade, RwLockUpgradableReadGuard};

use super::FutureRawRwLock;

unsafe impl<R> RawRwLockUpgrade for FutureRawRwLock<R> where R: RawRwLockUpgrade {
    fn lock_upgradable(&self) {
        self.create_wakers_list();

        self.inner.lock_upgradable();
    }

    fn try_lock_upgradable(&self) -> bool {
        self.create_wakers_list();

        self.inner.try_lock_upgradable()
    }

    fn unlock_upgradable(&self)  {
        self.inner.unlock_upgradable();

        self.wake_all();
    }

    fn upgrade(&self) {
        self.create_wakers_list();

        self.inner.upgrade();
    }

    fn try_upgrade(&self) -> bool {
        self.create_wakers_list();

        self.inner.try_upgrade()
    }
}

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

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

impl<'a, R, T> Future for FutureUpgradableRead<'a, R, T>
where
    R: RawRwLockUpgrade + 'a,
    T: 'a,
{
    type Output = RwLockUpgradableReadGuard<'a, FutureRawRwLock<R>, T>;

    fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
        match self.lock.try_upgradable_read() {
            Some(upgradable_lock) => Poll::Ready(upgradable_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 FutureUpgradableRead implementation on wrapped RwLock (not RwLock itself)
pub trait FutureUpgradableReadable<R: RawRwLockUpgrade, T> {
    /// Returns the upgradable-read-lock without blocking
    fn future_upgradable_read(&self) -> FutureUpgradableRead<R, T>;
}

impl<R: RawRwLockUpgrade, T> FutureUpgradableReadable<R, T> for RwLock<FutureRawRwLock<R>, T> {
    fn future_upgradable_read(&self) -> FutureUpgradableRead<R, T> {
        FutureUpgradableRead::new(self)
    }
}