|
| 1 | +use core::cell::RefCell; |
| 2 | +use core::future::{poll_fn, Future}; |
| 3 | +use core::ops::{Deref, DerefMut}; |
| 4 | +use core::task::Poll; |
| 5 | + |
| 6 | +use crate::blocking_mutex::raw::RawMutex; |
| 7 | +use crate::blocking_mutex::Mutex as BlockingMutex; |
| 8 | +use crate::waitqueue::MultiWakerRegistration; |
| 9 | + |
| 10 | +/// Error returned by [`RwLock::try_read`] and [`RwLock::try_write`] |
| 11 | +#[derive(PartialEq, Eq, Clone, Copy, Debug)] |
| 12 | +#[cfg_attr(feature = "defmt", derive(defmt::Format))] |
| 13 | +pub struct TryLockError; |
| 14 | + |
| 15 | +/// Async read-write lock. |
| 16 | +/// |
| 17 | +/// The lock is generic over a blocking [`RawMutex`](crate::blocking_mutex::raw::RawMutex). |
| 18 | +/// The raw mutex is used to guard access to the internal state. It |
| 19 | +/// is held for very short periods only, while locking and unlocking. It is *not* held |
| 20 | +/// for the entire time the async RwLock is locked. |
| 21 | +/// |
| 22 | +/// Which implementation you select depends on the context in which you're using the lock. |
| 23 | +/// |
| 24 | +/// Use [`CriticalSectionRawMutex`](crate::blocking_mutex::raw::CriticalSectionRawMutex) when data can be shared between threads and interrupts. |
| 25 | +/// |
| 26 | +/// Use [`NoopRawMutex`](crate::blocking_mutex::raw::NoopRawMutex) when data is only shared between tasks running on the same executor. |
| 27 | +/// |
| 28 | +/// Use [`ThreadModeRawMutex`](crate::blocking_mutex::raw::ThreadModeRawMutex) when data is shared between tasks running on the same executor but you want a singleton. |
| 29 | +/// |
| 30 | +pub struct RwLock<M, T> |
| 31 | +where |
| 32 | + M: RawMutex, |
| 33 | + T: ?Sized, |
| 34 | +{ |
| 35 | + state: BlockingMutex<M, RefCell<State>>, |
| 36 | + inner: RefCell<T>, |
| 37 | +} |
| 38 | + |
| 39 | +struct State { |
| 40 | + readers: usize, |
| 41 | + writer: bool, |
| 42 | + writer_waker: MultiWakerRegistration<1>, |
| 43 | + reader_wakers: MultiWakerRegistration<8>, |
| 44 | +} |
| 45 | + |
| 46 | +impl State { |
| 47 | + fn new() -> Self { |
| 48 | + Self { |
| 49 | + readers: 0, |
| 50 | + writer: false, |
| 51 | + writer_waker: MultiWakerRegistration::new(), |
| 52 | + reader_wakers: MultiWakerRegistration::new(), |
| 53 | + } |
| 54 | + } |
| 55 | +} |
| 56 | + |
| 57 | +impl<M, T> RwLock<M, T> |
| 58 | +where |
| 59 | + M: RawMutex, |
| 60 | +{ |
| 61 | + /// Create a new read-write lock with the given value. |
| 62 | + pub const fn new(value: T) -> Self { |
| 63 | + Self { |
| 64 | + inner: RefCell::new(value), |
| 65 | + state: BlockingMutex::new(RefCell::new(State::new())), |
| 66 | + } |
| 67 | + } |
| 68 | +} |
| 69 | + |
| 70 | +impl<M, T> RwLock<M, T> |
| 71 | +where |
| 72 | + M: RawMutex, |
| 73 | + T: ?Sized, |
| 74 | +{ |
| 75 | + /// Acquire a read lock. |
| 76 | + /// |
| 77 | + /// This will wait for the lock to be available if it's already locked for writing. |
| 78 | + pub fn read(&self) -> impl Future<Output = RwLockReadGuard<'_, M, T>> { |
| 79 | + poll_fn(|cx| { |
| 80 | + let mut state = self.state.lock(|s| s.borrow_mut()); |
| 81 | + if state.writer { |
| 82 | + state.reader_wakers.register(cx.waker()); |
| 83 | + Poll::Pending |
| 84 | + } else { |
| 85 | + state.readers += 1; |
| 86 | + Poll::Ready(RwLockReadGuard { lock: self }) |
| 87 | + } |
| 88 | + }) |
| 89 | + } |
| 90 | + |
| 91 | + /// Acquire a write lock. |
| 92 | + /// |
| 93 | + /// This will wait for the lock to be available if it's already locked for reading or writing. |
| 94 | + pub fn write(&self) -> impl Future<Output = RwLockWriteGuard<'_, M, T>> { |
| 95 | + poll_fn(|cx| { |
| 96 | + let mut state = self.state.lock(|s| s.borrow_mut()); |
| 97 | + if state.writer || state.readers > 0 { |
| 98 | + state.writer_waker.register(cx.waker()); |
| 99 | + Poll::Pending |
| 100 | + } else { |
| 101 | + state.writer = true; |
| 102 | + Poll::Ready(RwLockWriteGuard { lock: self }) |
| 103 | + } |
| 104 | + }) |
| 105 | + } |
| 106 | + |
| 107 | + /// Attempt to immediately acquire a read lock. |
| 108 | + /// |
| 109 | + /// If the lock is already locked for writing, this will return an error instead of waiting. |
| 110 | + pub fn try_read(&self) -> Result<RwLockReadGuard<'_, M, T>, TryLockError> { |
| 111 | + let mut state = self.state.lock(|s| s.borrow_mut()); |
| 112 | + if state.writer { |
| 113 | + Err(TryLockError) |
| 114 | + } else { |
| 115 | + state.readers += 1; |
| 116 | + Ok(RwLockReadGuard { lock: self }) |
| 117 | + } |
| 118 | + } |
| 119 | + |
| 120 | + /// Attempt to immediately acquire a write lock. |
| 121 | + /// |
| 122 | + /// If the lock is already locked for reading or writing, this will return an error instead of waiting. |
| 123 | + pub fn try_write(&self) -> Result<RwLockWriteGuard<'_, M, T>, TryLockError> { |
| 124 | + let mut state = self.state.lock(|s| s.borrow_mut()); |
| 125 | + if state.writer || state.readers > 0 { |
| 126 | + Err(TryLockError) |
| 127 | + } else { |
| 128 | + state.writer = true; |
| 129 | + Ok(RwLockWriteGuard { lock: self }) |
| 130 | + } |
| 131 | + } |
| 132 | + |
| 133 | + /// Consumes this lock, returning the underlying data. |
| 134 | + pub fn into_inner(self) -> T |
| 135 | + where |
| 136 | + T: Sized, |
| 137 | + { |
| 138 | + self.inner.into_inner() |
| 139 | + } |
| 140 | + |
| 141 | + /// Returns a mutable reference to the underlying data. |
| 142 | + /// |
| 143 | + /// Since this call borrows the RwLock mutably, no actual locking needs to |
| 144 | + /// take place -- the mutable borrow statically guarantees no locks exist. |
| 145 | + pub fn get_mut(&mut self) -> &mut T { |
| 146 | + self.inner.get_mut() |
| 147 | + } |
| 148 | +} |
| 149 | + |
| 150 | +impl<M, T> From<T> for RwLock<M, T> |
| 151 | +where |
| 152 | + M: RawMutex, |
| 153 | +{ |
| 154 | + fn from(from: T) -> Self { |
| 155 | + Self::new(from) |
| 156 | + } |
| 157 | +} |
| 158 | + |
| 159 | +impl<M, T> Default for RwLock<M, T> |
| 160 | +where |
| 161 | + M: RawMutex, |
| 162 | + T: Default, |
| 163 | +{ |
| 164 | + fn default() -> Self { |
| 165 | + Self::new(Default::default()) |
| 166 | + } |
| 167 | +} |
| 168 | + |
| 169 | +/// Async read lock guard. |
| 170 | +/// |
| 171 | +/// Owning an instance of this type indicates having |
| 172 | +/// successfully locked the RwLock for reading, and grants access to the contents. |
| 173 | +/// |
| 174 | +/// Dropping it unlocks the RwLock. |
| 175 | +#[must_use = "if unused the RwLock will immediately unlock"] |
| 176 | +pub struct RwLockReadGuard<'a, M, T> |
| 177 | +where |
| 178 | + M: RawMutex, |
| 179 | + T: ?Sized, |
| 180 | +{ |
| 181 | + lock: &'a RwLock<M, T>, |
| 182 | +} |
| 183 | + |
| 184 | +impl<'a, M, T> Drop for RwLockReadGuard<'a, M, T> |
| 185 | +where |
| 186 | + M: RawMutex, |
| 187 | + T: ?Sized, |
| 188 | +{ |
| 189 | + fn drop(&mut self) { |
| 190 | + let mut state = self.lock.state.lock(|s| s.borrow_mut()); |
| 191 | + state.readers -= 1; |
| 192 | + if state.readers == 0 { |
| 193 | + state.writer_waker.wake(); |
| 194 | + } |
| 195 | + } |
| 196 | +} |
| 197 | + |
| 198 | +impl<'a, M, T> Deref for RwLockReadGuard<'a, M, T> |
| 199 | +where |
| 200 | + M: RawMutex, |
| 201 | + T: ?Sized, |
| 202 | +{ |
| 203 | + type Target = T; |
| 204 | + fn deref(&self) -> &Self::Target { |
| 205 | + self.lock.inner.borrow() |
| 206 | + } |
| 207 | +} |
| 208 | + |
| 209 | +/// Async write lock guard. |
| 210 | +/// |
| 211 | +/// Owning an instance of this type indicates having |
| 212 | +/// successfully locked the RwLock for writing, and grants access to the contents. |
| 213 | +/// |
| 214 | +/// Dropping it unlocks the RwLock. |
| 215 | +#[must_use = "if unused the RwLock will immediately unlock"] |
| 216 | +pub struct RwLockWriteGuard<'a, M, T> |
| 217 | +where |
| 218 | + M: RawMutex, |
| 219 | + T: ?Sized, |
| 220 | +{ |
| 221 | + lock: &'a RwLock<M, T>, |
| 222 | +} |
| 223 | + |
| 224 | +impl<'a, M, T> Drop for RwLockWriteGuard<'a, M, T> |
| 225 | +where |
| 226 | + M: RawMutex, |
| 227 | + T: ?Sized, |
| 228 | +{ |
| 229 | + fn drop(&mut self) { |
| 230 | + let mut state = self.lock.state.lock(|s| s.borrow_mut()); |
| 231 | + state.writer = false; |
| 232 | + state.reader_wakers.wake(); |
| 233 | + state.writer_waker.wake(); |
| 234 | + } |
| 235 | +} |
| 236 | + |
| 237 | +impl<'a, M, T> Deref for RwLockWriteGuard<'a, M, T> |
| 238 | +where |
| 239 | + M: RawMutex, |
| 240 | + T: ?Sized, |
| 241 | +{ |
| 242 | + type Target = T; |
| 243 | + fn deref(&self) -> &Self::Target { |
| 244 | + self.lock.inner.borrow() |
| 245 | + } |
| 246 | +} |
| 247 | + |
| 248 | +impl<'a, M, T> DerefMut for RwLockWriteGuard<'a, M, T> |
| 249 | +where |
| 250 | + M: RawMutex, |
| 251 | + T: ?Sized, |
| 252 | +{ |
| 253 | + fn deref_mut(&mut self) -> &mut Self::Target { |
| 254 | + self.lock.inner.borrow_mut() |
| 255 | + } |
| 256 | +} |
0 commit comments