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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
use parking_lot::Mutex as RegularMutex;
use parking_lot::RwLock as RegularRwLock;
use parking_lot::RwLockReadGuard as RegularRwLockReadGuard;
use parking_lot::RwLockWriteGuard as RegularRwLockWriteGuard;
use slab::Slab;
use stable_deref_trait::StableDeref;
use std::cell::UnsafeCell;
use std::future::Future;
use std::mem;
use std::ops::{Deref, DerefMut};
use std::pin::Pin;
use std::task::{Context, Poll, Waker};
use std::time::Duration;

const WAIT_KEY_NONE: usize = std::usize::MAX;

enum Waiter {
    Waiting(Waker),
    Woken,
}

impl Waiter {
    #[inline]
    fn register(&mut self, w: &Waker) {
        match self {
            Waiter::Waiting(waker) if w.will_wake(waker) => {}
            _ => *self = Waiter::Waiting(w.clone()),
        }
    }

    #[inline]
    fn wake(&mut self) {
        match mem::replace(self, Waiter::Woken) {
            Waiter::Waiting(waker) => waker.wake(),
            Waiter::Woken => {}
        }
    }
}

pub struct RwLockReadGuard<'a, T> {
    _inner_guard: Option<RegularRwLockReadGuard<'a, ()>>,
    lock: &'a RwLock<T>,
}

impl<'a, T> Deref for RwLockReadGuard<'a, T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        unsafe { &*self.lock.data.get() }
    }
}

impl<'a, T> Drop for RwLockReadGuard<'a, T> {
    #[inline]
    fn drop(&mut self) {
        drop(self._inner_guard.take());
        let mut waiters = self.lock.waiters.lock();
        if let Some((_i, waiter)) = waiters.iter_mut().next() {
            waiter.wake();
        }
    }
}

pub struct RwLockWriteGuard<'a, T> {
    _inner_guard: Option<RegularRwLockWriteGuard<'a, ()>>,
    lock: &'a RwLock<T>,
}

impl<'a, T> Deref for RwLockWriteGuard<'a, T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        unsafe { &*self.lock.data.get() }
    }
}

impl<'a, T> DerefMut for RwLockWriteGuard<'a, T> {
    #[inline]
    fn deref_mut(&mut self) -> &mut Self::Target {
        unsafe { &mut *self.lock.data.get() }
    }
}

impl<'a, T> Drop for RwLockWriteGuard<'a, T> {
    #[inline]
    fn drop(&mut self) {
        drop(self._inner_guard.take());
        let mut waiters = self.lock.waiters.lock();
        if let Some((_i, waiter)) = waiters.iter_mut().next() {
            waiter.wake();
        }
    }
}

pub struct RwLock<T> {
    lock: RegularRwLock<()>,
    waiters: RegularMutex<Slab<Waiter>>,
    data: UnsafeCell<T>,
}

impl<T> RwLock<T> {
    fn remove_waker(&self, wait_key: usize, wake_another: bool) {
        if wait_key != WAIT_KEY_NONE {
            let mut waiters = self.waiters.lock();
            match waiters.remove(wait_key) {
                Waiter::Waiting(_) => {}
                Waiter::Woken => {
                    // We were awoken, but then dropped before we could
                    // wake up to acquire the lock. Wake up another
                    // waiter.
                    if wake_another {
                        if let Some((_i, waiter)) = waiters.iter_mut().next() {
                            waiter.wake();
                        }
                    }
                }
            }
        }
    }

    pub fn new(data: T) -> Self {
        Self {
            lock: RegularRwLock::new(()),
            waiters: RegularMutex::new(Slab::new()),
            data: UnsafeCell::new(data),
        }
    }

    #[inline]
    pub fn try_read(&self) -> Option<RwLockReadGuard<'_, T>> {
        self.lock.try_read().map(|guard| RwLockReadGuard {
            _inner_guard: Some(guard),
            lock: self,
        })
    }

    #[inline]
    pub fn try_read_for(&self, d: Duration) -> Option<RwLockReadGuard<'_, T>> {
        self.lock.try_read_for(d).map(|guard| RwLockReadGuard {
            _inner_guard: Some(guard),
            lock: self,
        })
    }

    #[inline]
    pub fn try_write(&self) -> Option<RwLockWriteGuard<'_, T>> {
        self.lock.try_write().map(|guard| RwLockWriteGuard {
            _inner_guard: Some(guard),
            lock: self,
        })
    }

    #[inline]
    pub fn try_write_for(&self, d: Duration) -> Option<RwLockWriteGuard<'_, T>> {
        self.lock.try_write_for(d).map(|guard| RwLockWriteGuard {
            _inner_guard: Some(guard),
            lock: self,
        })
    }

    #[inline]
    pub fn read(&self) -> RwLockReadGuard<'_, T> {
        RwLockReadGuard {
            _inner_guard: Some(self.lock.read()),
            lock: self,
        }
    }

    #[inline]
    pub fn write(&self) -> RwLockWriteGuard<'_, T> {
        RwLockWriteGuard {
            _inner_guard: Some(self.lock.write()),
            lock: self,
        }
    }

    #[inline]
    pub fn async_read(&self) -> RwLockReadFuture<'_, T> {
        RwLockReadFuture {
            lock: Some(self),
            wait_key: WAIT_KEY_NONE,
        }
    }

    #[inline]
    pub fn async_write(&self) -> RwLockWriteFuture<'_, T> {
        RwLockWriteFuture {
            lock: Some(self),
            wait_key: WAIT_KEY_NONE,
        }
    }
}

pub struct RwLockReadFuture<'a, T> {
    lock: Option<&'a RwLock<T>>,
    wait_key: usize,
}

impl<'a, T> Drop for RwLockReadFuture<'a, T> {
    #[inline]
    fn drop(&mut self) {
        if let Some(lock) = self.lock {
            lock.remove_waker(self.wait_key, true);
        }
    }
}

impl<'a, T> Future for RwLockReadFuture<'a, T> {
    type Output = RwLockReadGuard<'a, T>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
        let lock = self.lock.expect("polled after completion");

        if let Some(guard) = lock.try_read() {
            lock.remove_waker(self.wait_key, false);
            self.lock = None;
            return Poll::Ready(guard);
        }

        {
            let mut waiters = lock.waiters.lock();
            if self.wait_key == WAIT_KEY_NONE {
                self.wait_key = waiters.insert(Waiter::Waiting(cx.waker().clone()));
            } else {
                waiters[self.wait_key].register(cx.waker())
            }
        }

        if let Some(guard) = lock.try_read() {
            lock.remove_waker(self.wait_key, false);
            self.lock = None;
            return Poll::Ready(guard);
        }

        Poll::Pending
    }
}

pub struct RwLockWriteFuture<'a, T> {
    lock: Option<&'a RwLock<T>>,
    wait_key: usize,
}

impl<'a, T> Drop for RwLockWriteFuture<'a, T> {
    #[inline]
    fn drop(&mut self) {
        if let Some(lock) = self.lock {
            lock.remove_waker(self.wait_key, true);
        }
    }
}

impl<'a, T> Future for RwLockWriteFuture<'a, T> {
    type Output = RwLockWriteGuard<'a, T>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
        let lock = self.lock.expect("polled after completion");

        if let Some(guard) = lock.try_write() {
            lock.remove_waker(self.wait_key, false);
            self.lock = None;
            return Poll::Ready(guard);
        }

        {
            let mut waiters = lock.waiters.lock();
            if self.wait_key == WAIT_KEY_NONE {
                self.wait_key = waiters.insert(Waiter::Waiting(cx.waker().clone()));
            } else {
                waiters[self.wait_key].register(cx.waker())
            }
        }

        if let Some(guard) = lock.try_write() {
            lock.remove_waker(self.wait_key, false);
            self.lock = None;
            return Poll::Ready(guard);
        }

        Poll::Pending
    }
}

unsafe impl<T: Send> Send for RwLock<T> {}
unsafe impl<T: Sync> Sync for RwLock<T> {}

unsafe impl<T: Send> Send for RwLockReadFuture<'_, T> {}
unsafe impl<T: Send> Sync for RwLockReadFuture<'_, T> {}

unsafe impl<T: Send> Send for RwLockWriteFuture<'_, T> {}
unsafe impl<T: Send> Sync for RwLockWriteFuture<'_, T> {}

unsafe impl<T: Send> Send for RwLockReadGuard<'_, T> {}
unsafe impl<T: Sync> Sync for RwLockReadGuard<'_, T> {}

unsafe impl<T: Send> Send for RwLockWriteGuard<'_, T> {}
unsafe impl<T: Sync> Sync for RwLockWriteGuard<'_, T> {}

unsafe impl<T> StableDeref for RwLockReadGuard<'_, T> {}
unsafe impl<T> StableDeref for RwLockWriteGuard<'_, T> {}