atomic_cell 0.2.0

Lock-free thread-safe mutable memory locations
Documentation
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
//! The [`AtomicStorage`] trait and associated components
pub use core::sync::atomic::{
    AtomicBool, AtomicI16, AtomicI32, AtomicI64, AtomicI8, AtomicIsize, AtomicPtr, AtomicU16,
    AtomicU32, AtomicU64, AtomicU8, AtomicUsize, Ordering,
};

use Ordering::*;

use crate::cell::generic::{StorageMarker, UnderlyingMarker};
use crate::utils::maybe_const;

#[cfg(feature = "const")]
#[macro_use]
mod const_impl;
#[cfg(not(feature = "const"))]
#[macro_use]
mod non_const_impl;

#[cfg(feature = "const")]
pub use const_impl::*;
#[cfg(not(feature = "const"))]
pub use non_const_impl::*;

/// A `()` type which can be safely shared between threads.
///
/// This type has the same in-memory representation as a [`()`].
pub struct AtomicUnit {
    v: (),
}

maybe_const! {
impl const From<()> for AtomicUnit {
    fn from(v: ()) -> Self {
        Self { v }
    }
}
}

impl AtomicUnit {
    /// Creates a new `AtomicUnit`.
    pub const fn new(v: ()) -> Self {
        AtomicUnit { v }
    }

    /// Consumes the atomic and returns the contained value.
    ///
    /// This is safe because passing `self` by value guarantees that no other threads are
    /// concurrently accessing the atomic data.
    pub const fn into_inner(self) -> () {
        self.v
    }

    maybe_const! {
    /// Returns a mutable reference to the underlying [`()`].
    ///
    /// This is safe because the mutable reference guarantees that no other threads are
    /// concurrently accessing the atomic data.
    pub const fn get_mut(&mut self) -> &mut () {
        &mut self.v
    }
    }

    /// Loads a value from the bool.
    ///
    /// `load` takes an [`Ordering`] argument which describes the memory ordering
    /// of this operation. Possible values are [`SeqCst`], [`Acquire`] and [`Relaxed`].
    ///
    /// # Panics
    ///
    /// Panics if `order` is [`Release`] or [`AcqRel`].
    pub const fn load(&self, order: Ordering) -> () {
        match order {
            Release => panic!("there is no such thing as a release load"),
            AcqRel => panic!("there is no such thing as an acquire/release load"),
            _ => self.v,
        }
        self.v
    }

    /// Stores a value into the atomic.
    ///
    /// `store` takes an [`Ordering`] argument which describes the memory
    /// ordering of this operation. Possible values are [`SeqCst`],
    /// [`Release`] and [`Relaxed`].
    ///
    /// # Panics
    ///
    /// Panics if `order` is [`Acquire`] or [`AcqRel`].
    pub const fn store(&self, _val: (), order: Ordering) {
        match order {
            Acquire => panic!("there is no such thing as a release store"),
            AcqRel => panic!("there is no such thing as an acquire/release store"),
            _ => self.v,
        }
    }

    /// Stores a value into the atomic, returning the previous value.
    ///
    /// `swap` takes an [`Ordering`] argument which describes the memory
    /// ordering of this operation. All ordering modes are possible. Note
    /// that using [`Acquire`] makes the store part of this operation
    /// [`Relaxed`], and using [`Release`] makes the load part [`Relaxed`].
    pub const fn swap(&self, _val: (), _order: Ordering) -> () {}

    /// Stores a value into the atomic if the current value is the same as the
    /// `current` value.
    ///
    /// The return value is a result indicating whether the new value was written and containing
    /// the previous value. On success this value is guaranteed to be equal to `current`.
    ///
    /// `compare_exchange` takes two [`Ordering`] arguments to describe the
    /// memory ordering of this operation. `success` describes the required
    /// ordering for the read-modify-write operation that takes place if the
    /// comparison with `current` succeeds. `failure` describes the required
    /// ordering for the load operation that takes place when the comparison
    /// fails. Using [`Acquire`] as success ordering makes the store part of
    /// this operation [`Relaxed`], and using [`Release`] makes the successful
    /// load [`Relaxed`]. The failure ordering can only be [`SeqCst`],
    /// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than
    /// the success ordering.
    pub const fn compare_exchange(
        &self,
        _current: (),
        _new: (),
        success: Ordering,
        failure: Ordering,
    ) -> Result<(), ()> {
        match (success, failure) {
            (_, AcqRel) => panic!("there is no such thing as an acquire/release failure ordering"),
            (_, Release) => panic!("there is no such thing as a release failure ordering"),
            (Relaxed, Relaxed)
            | (Acquire, Relaxed)
            | (Acquire, Acquire)
            | (Release, Relaxed)
            | (AcqRel, Relaxed)
            | (AcqRel, Acquire)
            | (SeqCst, _) => Ok(()),
            _ => panic!("a failure ordering can't be stronger than a success ordering"),
        }
    }

    /// Stores a value into the atomic if the current value is the same as the
    /// `current` value.
    ///
    /// Unlike [`AtomicUnit::compare_exchange`], This function is allowed to spuriously fail even when the comparison
    /// succeeds, which can result in more efficient code on some platforms. The
    /// return value is a result indicating whether the new value was written
    /// and containing the previous value.
    ///
    /// `compare_exchange_weak` takes two [`Ordering`] arguments to describe the
    /// memory ordering of this operation. `success` describes the required
    /// ordering for the read-modify-write operation that takes place if the
    /// comparison with `current` succeeds. `failure` describes the required
    /// ordering for the load operation that takes place when the comparison
    /// fails. Using [`Acquire`] as success ordering makes the store part of
    /// this operation [`Relaxed`], and using [`Release`] makes the successful
    /// load [`Relaxed`]. The failure ordering can only be [`SeqCst`],
    /// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than
    /// the success ordering.
    pub const fn compare_exchange_weak(
        &self,
        _current: (),
        _new: (),
        success: Ordering,
        failure: Ordering,
    ) -> Result<(), ()> {
        match (success, failure) {
            (_, AcqRel) => panic!("there is no such thing as an acquire/release failure ordering"),
            (_, Release) => panic!("there is no such thing as a release failure ordering"),
            (Relaxed, Relaxed)
            | (Acquire, Relaxed)
            | (Acquire, Acquire)
            | (Release, Relaxed)
            | (AcqRel, Relaxed)
            | (AcqRel, Acquire)
            | (SeqCst, _) => Ok(()),
            _ => panic!("a failure ordering can't be stronger than a success ordering"),
        }
    }
}

/// A const wrapper for `into_inner`.
pub trait FromInner<A> {
    /// Consumes the atomic and returns the contained value.
    ///
    /// This is safe because passing `self` by value guarantees that no other threads are
    /// concurrently accessing the atomic data.
    fn from_inner(a: A) -> Self;
}

/// An atomic type which can be safely shared between threads. [`Drop::drop`] behavior is
/// somewhat unintuitive, so types are advised to avoid implementing it. See [`crate::cell::AtomicCell`]
/// for more info.
pub trait AtomicStorage: Sized + Send + Sync + AtomicStorageBase {
    /// An underlying value initialized to zero. (i.e. all values
    /// of `ZERO` should be [`PartialEq`] and equal according to
    /// [`AtomicStorage::compare_exchange_weak`]).
    const ZERO: Self::Underlying;

    /// Creates an atomic value which can be safely forgotten
    fn forgettable() -> Self {
        Self::new(Self::ZERO)
    }

    /// Creates a new `AtomicStorage` with the value `v`.
    fn new(v: Self::Underlying) -> Self;

    /// Consumes the atomic and returns the contained value.
    ///
    /// This is safe because passing `self` by value guarantees that no other threads are
    /// concurrently accessing the atomic data.
    fn into_inner(self) -> Self::Underlying;

    /// Returns a mutable reference to the underlying [`AtomicStorageBase::Underlying`].
    ///
    /// This is safe because the mutable reference guarantees that no other
    /// threads are concurrently accessing the atomic data.
    fn get_mut(&mut self) -> &mut Self::Underlying;

    // Loads a value from the atomic.
    ///
    /// `load` takes an [`Ordering`] argument which describes the memory
    /// ordering of this operation. Possible values are [`SeqCst`],
    /// [`Acquire`] and [`Relaxed`].
    ///
    /// # Panics
    ///
    /// Panics if `order` is [`Release`] or [`AcqRel`].
    fn load(&self, _order: Ordering) -> Self::Underlying;

    /// Stores a value into the atomic.
    ///
    /// `store` takes an [`Ordering`] argument which describes the memory
    /// ordering of this operation. Possible values are [`SeqCst`],
    /// [`Release`] and [`Relaxed`].
    ///
    /// # Panics
    ///
    /// Panics if `order` is [`Acquire`] or [`AcqRel`].
    fn store(&self, val: Self::Underlying, order: Ordering);

    /// Stores a value into the atomic, returning the previous value.
    ///
    /// `swap` takes an [`Ordering`] argument which describes the memory
    /// ordering of this operation. All ordering modes are possible. Note
    /// that using [`Acquire`] makes the store part of this operation
    /// [`Relaxed`], and using [`Release`] makes the load part [`Relaxed`].
    fn swap(&self, val: Self::Underlying, order: Ordering) -> Self::Underlying;

    /// Stores a value into the atomic if the current value is the same as the
    /// `current` value.
    ///
    /// The return value is a result indicating whether the new value was written and containing
    /// the previous value. On success this value is guaranteed to be equal to `current`.
    ///
    /// `compare_exchange` takes two [`Ordering`] arguments to describe the
    /// memory ordering of this operation. `success` describes the required
    /// ordering for the read-modify-write operation that takes place if the
    /// comparison with `current` succeeds. `failure` describes the required
    /// ordering for the load operation that takes place when the comparison
    /// fails. Using [`Acquire`] as success ordering makes the store part of
    /// this operation [`Relaxed`], and using [`Release`] makes the successful
    /// load [`Relaxed`]. The failure ordering can only be [`SeqCst`],
    /// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than
    /// the success ordering.
    fn compare_exchange(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying>;

    /// Stores a value into the atomic if the current value is the same as the
    /// `current` value.
    ///
    /// Unlike [`AtomicStorage::compare_exchange`], this function is allowed to spuriously fail even when the comparison
    /// succeeds, which can result in more efficient code on some platforms. The
    /// return value is a result indicating whether the new value was written
    /// and containing the previous value.
    ///
    /// `compare_exchange_weak` takes two [`Ordering`] arguments to describe the
    /// memory ordering of this operation. `success` describes the required
    /// ordering for the read-modify-write operation that takes place if the
    /// comparison with `current` succeeds. `failure` describes the required
    /// ordering for the load operation that takes place when the comparison
    /// fails. Using [`Acquire`] as success ordering makes the store part of
    /// this operation [`Relaxed`], and using [`Release`] makes the successful
    /// load [`Relaxed`]. The failure ordering can only be [`SeqCst`],
    /// [`Acquire`] or [`Relaxed`] and must be equivalent to or weaker than
    /// the success ordering.
    fn compare_exchange_weak(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying>;
}

/// A wrapper around [`AtomicStorage::compare_exchange`] and [`AtomicStorage::compare_exchange_weak`]
pub fn compare_exchange<A: AtomicStorage, const WEAK: bool>(
    a: &A,
    current: A::Underlying,
    new: A::Underlying,
    success: Ordering,
    failure: Ordering,
) -> Result<A::Underlying, A::Underlying> {
    if WEAK {
        a.compare_exchange_weak(current, new, success, failure)
    } else {
        a.compare_exchange(current, new, success, failure)
    }
}

macro_rules! impl_storage {
    (<$($g:ident)?> $t1:ty, $t2:ty, $z:expr) => {
impl $(<$g>)? AtomicStorageBase for $t1 {
    type Underlying = $t2;
}

impl $(<$g>)? AtomicStorage for $t1 {
    const ZERO: Self::Underlying = $z as $t2;

    fn new(val: Self::Underlying) -> Self {
        <$t1>::new(val)
    }

    fn into_inner(self) -> Self::Underlying {
        <$t1>::into_inner(self)
    }

    fn get_mut(&mut self) -> &mut Self::Underlying {
        <$t1>::get_mut(self)
    }

    fn load(&self, order: Ordering) -> Self::Underlying {
        <$t1>::load(self, order)
    }

    fn store(&self, val: Self::Underlying, order: Ordering) {
        <$t1>::store(self, val, order)
    }

    fn swap(&self, val: Self::Underlying, order: Ordering) -> Self::Underlying {
        <$t1>::swap(self, val, order)
    }

    fn compare_exchange(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying> {
        <$t1>::compare_exchange(self, current, new, success, failure)
    }

    fn compare_exchange_weak(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying> {
        <$t1>::compare_exchange_weak(self, current, new, success, failure)
    }
}
impl_storage_inner!{<$($g)?> $t1, $t2, $z}
    };
    (<$($g:ident)?> $t1:ty, $t2:ty) => { impl_storage!{<$($g)?> $t1, $t2, 0} };
    ($t1:ty, $t2:ty, $z:expr) => { impl_storage!{<> $t1, $t2, $z} };
    ($t1:ty, $t2:ty) => { impl_storage!{<> $t1, $t2, 0} };
}

impl_storage! {<T> AtomicPtr<T>, *mut T, core::ptr::null_mut::<T>()}
impl_storage! {AtomicUsize, usize}
impl_storage! {AtomicIsize, isize}
impl_storage! {AtomicU64, u64}
impl_storage! {AtomicI64, i64}
impl_storage! {AtomicU32, u32}
impl_storage! {AtomicI32, i32}
impl_storage! {AtomicU16, u16}
impl_storage! {AtomicI16, i16}
impl_storage! {AtomicU8, u8}
impl_storage! {AtomicI8, i8}
impl_storage! {AtomicBool, bool, false}
impl_storage! {AtomicUnit, (), ()}

impl<A: AtomicStorageBase> AtomicStorageBase for StorageMarker<A> {
    type Underlying = UnderlyingMarker<A::Underlying>;
}

impl<A: AtomicStorage> AtomicStorage for StorageMarker<A> {
    const ZERO: Self::Underlying = UnderlyingMarker::new(A::ZERO);

    fn new(val: Self::Underlying) -> Self {
        StorageMarker::new(A::new(val.into_inner()))
    }

    fn into_inner(self) -> Self::Underlying {
        UnderlyingMarker::new(StorageMarker::into_inner(self).into_inner())
    }

    fn get_mut(&mut self) -> &mut Self::Underlying {
        UnderlyingMarker::as_mut((self as &mut A).get_mut())
    }

    fn load(&self, order: Ordering) -> Self::Underlying {
        UnderlyingMarker::new((self as &A).load(order))
    }

    fn store(&self, val: Self::Underlying, order: Ordering) {
        (self as &A).store(val.into_inner(), order)
    }

    fn swap(&self, val: Self::Underlying, order: Ordering) -> Self::Underlying {
        UnderlyingMarker::new((self as &A).swap(val.into_inner(), order))
    }

    fn compare_exchange(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying> {
        (self as &A)
            .compare_exchange(current.into_inner(), new.into_inner(), success, failure)
            .map(UnderlyingMarker::new)
            .map_err(UnderlyingMarker::new)
    }

    fn compare_exchange_weak(
        &self,
        current: Self::Underlying,
        new: Self::Underlying,
        success: Ordering,
        failure: Ordering,
    ) -> Result<Self::Underlying, Self::Underlying> {
        (self as &A)
            .compare_exchange_weak(current.into_inner(), new.into_inner(), success, failure)
            .map(UnderlyingMarker::new)
            .map_err(UnderlyingMarker::new)
    }
}