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
pub use alloc::{boxed::Box, sync::Arc};
use core::sync::atomic::{AtomicPtr, Ordering};
use core::{fmt, mem, ptr};
pub struct AtomSetOnce<T>(AtomicPtr<T>);
impl<T> fmt::Debug for AtomSetOnce<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(f, "atom({:?})", self.0.load(Ordering::Acquire))
}
}
impl<T> AtomSetOnce<T> {
#[inline]
pub fn empty() -> AtomSetOnce<T> {
AtomSetOnce(AtomicPtr::new(ptr::null_mut()))
}
}
impl<T> Drop for AtomSetOnce<T> {
fn drop(&mut self) {
let ptr = *self.0.get_mut();
if !ptr.is_null() {
unsafe {
let _: Box<T> = Box::from_raw(ptr);
}
}
}
}
unsafe impl<T: Send + 'static> Send for AtomSetOnce<T> {}
unsafe impl<T: Sync + 'static> Sync for AtomSetOnce<T> {}
pub type NextRevision<T> = Arc<AtomSetOnce<RevisionNode<T>>>;
#[derive(Clone, Debug)]
pub struct RevisionNode<T> {
pub(crate) next: NextRevision<T>,
pub(crate) data: T,
}
#[derive(Debug)]
pub struct RevisionRef<T> {
inner: NextRevision<T>,
}
#[derive(Clone, Debug)]
pub struct RevisionDetachError;
impl fmt::Display for RevisionDetachError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "failed to detach revision")
}
}
#[cfg(feature = "std")]
impl std::error::Error for RevisionDetachError {}
impl<T> Clone for RevisionRef<T> {
fn clone(&self) -> Self {
Self {
inner: Arc::clone(&self.inner),
}
}
}
impl<T> core::ops::Deref for RevisionRef<T> {
type Target = T;
#[inline]
fn deref(&self) -> &T {
&Self::deref_to_rn(self).data
}
}
#[cfg(feature = "stable_deref_trait")]
unsafe impl<T> stable_deref_trait::StableDeref for RevisionRef<T> {}
#[cfg(feature = "stable_deref_trait")]
unsafe impl<T> stable_deref_trait::CloneStableDeref for RevisionRef<T> {}
impl<T> RevisionRef<T> {
pub(crate) fn new(nr: &NextRevision<T>) -> Option<Self> {
ptr::NonNull::new(nr.0.load(Ordering::Acquire)).map(|rptr| {
let ret = Self {
inner: Arc::clone(&nr),
};
Self::check_against_rptr(&ret, rptr);
ret
})
}
pub(crate) fn new_cas(
latest: &mut NextRevision<T>,
revnode: Box<RevisionNode<T>>,
) -> Option<(Self, Box<RevisionNode<T>>)> {
let new = Box::into_raw(revnode);
let old = latest
.0
.compare_and_swap(ptr::null_mut(), new, Ordering::AcqRel);
let rptr = ptr::NonNull::new(old)?;
let real_old: &RevisionNode<T> = unsafe { rptr.as_ref() };
let ret_self = Self {
inner: mem::replace(latest, Arc::clone(&real_old.next)),
};
Self::check_against_rptr(&ret_self, rptr);
Some((ret_self, unsafe { Box::from_raw(new) }))
}
#[inline]
fn check_against_rptr(this: &Self, rptr: ptr::NonNull<RevisionNode<T>>) {
assert!(ptr::eq(&**this, &unsafe { rptr.as_ref() }.data));
}
#[inline]
fn deref_to_rn(this: &Self) -> &RevisionNode<T> {
unsafe { &*this.inner.0.load(Ordering::Acquire) }
}
pub fn try_detach(this: &mut Self) -> Result<(), RevisionDetachError> {
let ptr_this = Arc::get_mut(&mut this.inner).ok_or(RevisionDetachError)?;
let mut_this: &mut RevisionNode<T> = unsafe { &mut **ptr_this.0.get_mut() };
mut_this.next = Arc::new(AtomSetOnce::empty());
Ok(())
}
#[inline]
pub(crate) fn next(this: &Self) -> NextRevision<T> {
Arc::clone(&Self::deref_to_rn(this).next)
}
}
#[cfg(feature = "std")]
#[cold]
pub fn print_queue<W, T>(mut writer: W, start: NextRevision<T>, prefix: &str) -> std::io::Result<()>
where
W: std::io::Write,
T: fmt::Debug,
{
let mut cur = start;
let mut cnt = 0;
while let Some(x) = RevisionRef::new(&cur) {
writeln!(&mut writer, "{} {}. {:?}", prefix, cnt, &*x)?;
cur = RevisionRef::next(&x);
cnt += 1;
}
Ok(())
}