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
use std::cell::UnsafeCell;
use std::ops::{Deref, DerefMut};
use std::sync::atomic::{AtomicBool, Ordering};
pub struct SpinLock<T> {
handle: UnsafeCell<T>,
lock: AtomicBool,
}
unsafe impl<T: Send> Sync for SpinLock<T> {}
unsafe impl<T: Send> Send for SpinLock<T> {}
impl<T> SpinLock<T> {
pub fn new(t: T) -> SpinLock<T> {
SpinLock {
handle: UnsafeCell::new(t),
lock: AtomicBool::new(false),
}
}
pub fn lock(&self) -> LockGuard<T> {
while self.lock.swap(true, Ordering::SeqCst) {}
LockGuard { inner: self }
}
}
pub struct LockGuard<'a, T: 'a> {
inner: &'a SpinLock<T>,
}
impl<'a, T> Deref for LockGuard<'a, T> {
type Target = T;
fn deref(&self) -> &T {
unsafe { &*self.inner.handle.get() }
}
}
impl<'a, T> DerefMut for LockGuard<'a, T> {
fn deref_mut(&mut self) -> &mut T {
unsafe { &mut *self.inner.handle.get() }
}
}
impl<'a, T> Drop for LockGuard<'a, T> {
fn drop(&mut self) {
self.inner.lock.swap(false, Ordering::SeqCst);
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::sync::mpsc::*;
use std::sync::*;
use std::thread;
use std::time::Duration;
#[test]
fn test_lock() {
let lock1 = Arc::new(SpinLock::new(2));
let lock2 = lock1.clone();
let (tx, rx) = mpsc::channel();
let guard = lock1.lock();
thread::spawn(move || {
let _guard = lock2.lock();
tx.send(()).unwrap();
});
thread::sleep(Duration::from_millis(10));
assert_eq!(rx.try_recv(), Err(TryRecvError::Empty));
drop(guard);
assert_eq!(rx.recv(), Ok(()));
}
}