swym 0.1.0-preview

Transactional memory for rust
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
//! The core transactional memory primitive [`tcell::TCell`].
//!
//! # Examples
//!
//! Creating a `TCell` using [`new`]:
//!
//! ```
//! use swym::tcell::TCell;
//!
//! let x = TCell::new(String::from("abcdefghijklmnopqrstuvwxyz"));
//!
//! static X: TCell<usize> = TCell::new(42);
//! ```
//!
//! Extracting values out of a `TCell` using [`borrow`]:
//!
//! ```
//! use swym::{tcell::TCell, thread_key};
//!
//! let x = TCell::new(String::from("abcdefghijklmnopqrstuvwxyz"));
//! thread_key::get().rw(|tx| {
//!     let string = x.borrow(tx, Default::default())?;
//!     assert_eq!(&*string, "abcdefghijklmnopqrstuvwxyz");
//!     Ok(())
//! });
//! ```
//!
//! Modifying `TCell` using [`set`]:
//!
//! ```
//! use swym::{tcell::TCell, thread_key};
//!
//! let x = TCell::new(String::from("abcdefghijklmnopqrstuvwxyz"));
//! thread_key::get().rw(|tx| {
//!     x.set(tx, "hello".to_owned())?;
//!     Ok(())
//! });
//! assert_eq!(x.into_inner(), "hello");
//! ```
//!
//! [`new`]: struct.TCell.html#method.new
//! [`borrow`]: struct.TCell.html#method.borrow
//! [`set`]: struct.TCell.html#method.set

use crate::{
    internal::{tcell_erased::TCellErased, usize_aligned::UsizeAligned},
    tx::{AssertBorrow, Borrow, Error, Ordering, Read, SetError, Write, _TValue, RW},
};
use std::{
    cell::UnsafeCell,
    fmt::{self, Debug, Formatter},
    marker::PhantomData,
    mem::{self, ManuallyDrop},
    ops::{Deref, DerefMut},
    ptr,
};

/// A transactional memory location.
///
/// `TCell` stores an extra `usize` representing the current version of the memory.
///
/// The current value is stored directly in the `TCell` meaning it's not `Box`ed, `Arc`'ed, etc.
#[repr(C)]
pub struct TCell<T> {
    value:             UnsafeCell<UsizeAligned<T>>,
    pub(crate) erased: TCellErased,
}

unsafe impl<T: Send> Send for TCell<T> {}
unsafe impl<T: Send + Sync> Sync for TCell<T> {}

impl<T: Borrow + Debug> Debug for TCell<T> {
    fn fmt(&self, formatter: &mut Formatter<'_>) -> fmt::Result {
        crate::thread_key::get()
            .try_read(|tx| {
                Ok(formatter
                    .debug_struct("TCell")
                    .field("erased", &self.erased)
                    .field("value", &*self.borrow(tx, Ordering::default())?)
                    .finish())
            })
            .unwrap_or_else(|crate::thread_key::TryReadErr { .. }| {
                formatter
                    .debug_struct("TCell")
                    .field("erased", &self.erased)
                    .field("value", &"...")
                    .finish()
            })
    }
}

impl<T: Default> Default for TCell<T> {
    #[inline]
    fn default() -> TCell<T> {
        TCell::new(Default::default())
    }
}

impl<T> From<T> for TCell<T> {
    #[inline]
    fn from(value: T) -> TCell<T> {
        TCell::new(value)
    }
}

impl<T> TCell<T> {
    /// Construct a new `TCell` from an initial value.
    ///
    /// This does not perform any memory allocation or synchronization.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::{tcell::TCell, thread_key};
    ///
    /// static ZERO: TCell<i32> = TCell::new(0);
    /// assert_eq!(
    ///     thread_key::get().read(|tx| Ok(ZERO.get(tx, Default::default())?)),
    ///     0
    /// );
    /// ```
    #[inline]
    pub const fn new(value: T) -> TCell<T> {
        TCell {
            value:  UnsafeCell::new(UsizeAligned::new(value)),
            erased: TCellErased::new(),
        }
    }

    /// Consumes this `TCell`, returning the underlying data.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::tcell::TCell;
    ///
    /// let x = TCell::new(42);
    /// assert_eq!(x.into_inner(), 42);
    /// ```
    #[inline]
    pub fn into_inner(self) -> T {
        self.value.into_inner().into_inner()
    }

    /// Returns a mutable reference to the underlying data.
    ///
    /// Since this call borrows the `TCell` mutably, no synchronization needs to take place. The
    /// mutable borrow statically guarantees no other threads are accessing this data.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::tcell::TCell;
    ///
    /// let mut x = TCell::new("hello");
    /// *x.borrow_mut() = "world";
    /// assert_eq!(*x.borrow_mut(), "world");
    /// ```
    #[inline]
    pub fn borrow_mut(&mut self) -> &mut T {
        unsafe { &mut *self.value.get() }
    }

    #[inline]
    pub fn view<'tcell, Tx>(&'tcell self, transaction: Tx) -> View<'tcell, T, Tx>
    where
        Tx: Deref,
        Tx::Target: Read<'tcell> + Sized,
    {
        View {
            tx:    transaction,
            tcell: self,
        }
    }
}

impl<T: Borrow> TCell<T> {
    /// Gets a reference to the contained value using the specified memory [`Ordering`].
    ///
    /// Statically requires that the `TCell` outlives the current transaction.
    ///
    /// # Errors
    ///
    /// If another thread has written to this `TCell` during the current transaction, an error is
    /// returned.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::{tcell::TCell, thread_key, tx::Ordering};
    ///
    /// let x = TCell::new("hello");
    /// let hello = thread_key::get().read(|tx| Ok(*x.borrow(tx, Ordering::Read)?));
    /// assert_eq!(hello, "hello");
    /// ```
    #[inline]
    pub fn borrow<'tx, 'tcell>(
        &'tcell self,
        tx: &'tx impl Read<'tcell>,
        ordering: Ordering,
    ) -> Result<Ref<'tx, T>, Error> {
        unsafe {
            Ok(if mem::size_of::<T>() != 0 {
                let snapshot = tx._get_unchecked(self, ordering)?;
                Ref::new(snapshot)
            } else {
                mem::zeroed()
            })
        }
    }
}

impl<T: Copy> TCell<T> {
    /// Gets a copy of the contained value using the specified memory [`Ordering`].
    ///
    /// Statically requires that the `TCell` outlives the current transaction.
    ///
    /// # Errors
    ///
    /// If another thread has written to this `TCell` during the current transaction, an error is
    /// returned.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::{tcell::TCell, thread_key, tx::Ordering};
    ///
    /// let x = TCell::new("hello");
    /// let hello = thread_key::get().read(|tx| Ok(x.get(tx, Ordering::Read)?));
    /// assert_eq!(hello, "hello");
    /// ```
    #[inline]
    #[must_use = "Calling `TCell::get` without using the result unnecessarily increases the chance \
                  of transaction failure"]
    pub fn get<'tcell>(
        &'tcell self,
        tx: &impl Read<'tcell>,
        ordering: Ordering,
    ) -> Result<T, Error> {
        let this = unsafe { &*(self as *const Self as *const TCell<AssertBorrow<T>>) };
        this.borrow(tx, ordering).map(|v| **v)
    }
}

impl<T: 'static + Send> TCell<T> {
    #[inline]
    fn set_impl<'tcell>(
        &'tcell self,
        tx: &mut impl Write<'tcell>,
        value: impl _TValue<T>,
    ) -> Result<(), SetError<T>> {
        assert_eq!(
            mem::size_of_val(&value),
            mem::size_of::<T>(),
            "swym currently requires undo callbacks to be zero sized"
        );
        unsafe {
            if mem::size_of::<T>() != 0 {
                tx._set_unchecked(self, value)?;
            }
        }
        Ok(())
    }

    /// Sets the contained value.
    ///
    /// Statically requires that the `TCell` outlives the current transaction.
    ///
    /// # Errors
    ///
    /// If another thread has written to this `TCell` during the current transaction, the value is
    /// not set, and an error is returned. It is typical to route this error back to
    /// [`ThreadKey::rw`] where the transaction will be retried, however, this is not required.
    ///
    /// # Examples
    ///
    /// ```
    /// use swym::{tcell::TCell, thread_key};
    ///
    /// let x = TCell::new("hello");
    /// thread_key::get().rw(|tx| Ok(x.set(tx, "world")?));
    /// assert_eq!(x.into_inner(), "world");
    /// ```
    ///
    /// [`ThreadKey::rw`]: ../thread_key/struct.ThreadKey.html#method.rw
    #[inline]
    pub fn set<'tcell>(
        &'tcell self,
        tx: &mut impl Write<'tcell>,
        value: T,
    ) -> Result<(), SetError<T>> {
        self.set_impl(tx, value)
    }

    /// # Resource Publication
    ///
    /// Publication is the operation for sharing some resource - typically memory - acquired outside
    /// of the STM with other threads. Generally this is paired with a matching `Write::privatize`
    /// call in the inverse operation (e.g. in a linked list, push would publish a new heap
    /// allocated node, and pop would privatize that node, freeing its memory).
    ///
    /// # Performance
    ///
    /// `publish` has no overhead compared with `set`.
    #[inline]
    pub(crate) fn publish<'tcell, TV: _TValue<T>>(
        &'tcell self,
        tx: &mut impl Write<'tcell>,
        value: TV,
    ) -> Result<(), SetError<T>> {
        // it's important to bundle value and undo together early for panic safety
        self.set_impl(tx, value)
    }
}

impl<T: 'static + Borrow + Clone + Send> TCell<T> {
    pub fn replace<'tcell, 'tx>(
        &'tcell self,
        tx: &'tx mut impl RW<'tcell>,
        value: T,
    ) -> Result<T, SetError<T>> {
        let prev = match self.borrow(tx, Ordering::Read) {
            Ok(prev) => prev.clone(),
            Err(error) => return Err(SetError { value, error }),
        };
        self.set(tx, value)?;
        Ok(prev)
    }
}

/// A snapshot of a [`TCell`] valid for the duration of the current transaction.
///
/// A `Ref` can be obtained using [`TCell::borrow`].
#[must_use = "Acquiring a Ref without using it unnecessarily increases the chance of transaction \
              failure"]
#[derive(Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct Ref<'tx, T> {
    snapshot: ManuallyDrop<T>,
    lifetime: PhantomData<&'tx T>,
}

impl<'tx, T: Debug> Debug for Ref<'tx, T> {
    fn fmt(&self, formatter: &mut Formatter<'_>) -> fmt::Result {
        self.snapshot.deref().fmt(formatter)
    }
}

impl<'tx, T> Ref<'tx, T> {
    #[inline]
    fn new(snapshot: ManuallyDrop<T>) -> Self {
        Ref {
            snapshot,
            lifetime: PhantomData,
        }
    }

    #[inline]
    pub unsafe fn upcast<'tcell>(this: Self, _: &'tx impl RW<'tcell>) -> Ref<'tcell, T> {
        Ref {
            snapshot: this.snapshot,
            lifetime: PhantomData,
        }
    }
}

impl<'tx, T: Borrow> From<&'tx T> for Ref<'tx, T> {
    #[inline]
    fn from(reference: &'tx T) -> Self {
        Ref::new(unsafe { ptr::read(reference as *const T as *const ManuallyDrop<T>) })
    }
}

impl<'tx, T: Borrow> From<&'tx mut T> for Ref<'tx, T> {
    #[inline]
    fn from(reference: &'tx mut T) -> Self {
        Ref::new(unsafe { ptr::read(reference as *const T as *const ManuallyDrop<T>) })
    }
}

impl<'tx, T> Deref for Ref<'tx, T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &T {
        &*self.snapshot
    }
}

impl<'tx, T> std::borrow::Borrow<T> for Ref<'tx, T> {
    #[inline]
    fn borrow(&self) -> &T {
        &*self.snapshot
    }
}

/// A view of a `TCell`'s memory.
pub struct View<'tcell, T, Tx> {
    tx:    Tx,
    tcell: &'tcell TCell<T>,
}

impl<'tx, 'tcell, T: Borrow, Tx: Read<'tcell>> View<'tcell, T, &'tx Tx> {
    #[inline]
    pub fn into_borrow(self) -> Result<Ref<'tx, T>, Error>
    where
        Tx: 'tx,
    {
        self.tcell.borrow(self.tx, Ordering::default())
    }
}

impl<'tx, 'tcell, T: Borrow, Tx: Read<'tcell>> View<'tcell, T, &'tx mut Tx> {
    #[inline]
    pub fn into_borrow(self) -> Result<Ref<'tx, T>, Error>
    where
        Tx: 'tx,
    {
        self.tcell.borrow(self.tx, Ordering::default())
    }
}

impl<'tcell, T: Copy, Tx: Deref> View<'tcell, T, Tx>
where
    Tx::Target: Read<'tcell> + Sized,
{
    #[inline]
    pub fn get(&self) -> Result<T, Error> {
        self.get_ordered(Ordering::default())
    }

    #[inline]
    pub fn get_ordered(&self, ordering: Ordering) -> Result<T, Error> {
        self.tcell.get(&*self.tx, ordering)
    }
}

impl<'tcell, T: Borrow, Tx: Deref> View<'tcell, T, Tx>
where
    Tx::Target: Read<'tcell> + Sized,
{
    #[inline]
    pub fn borrow<'a>(&'a self) -> Result<Ref<'a, T>, Error> {
        self.borrow_ordered(Ordering::default())
    }

    #[inline]
    pub fn borrow_ordered<'a>(&'a self, ordering: Ordering) -> Result<Ref<'a, T>, Error> {
        self.tcell.borrow(&*self.tx, ordering)
    }
}

impl<'tcell, T: Send + 'static, Tx: DerefMut> View<'tcell, T, Tx>
where
    Tx::Target: Write<'tcell> + Sized,
{
    pub fn set(&mut self, value: T) -> Result<(), SetError<T>> {
        self.tcell.set(&mut *self.tx, value)
    }
}

#[cfg(test)]
mod test {
    use crate::{
        tcell::TCell,
        thread_key,
        tx::{Error, _TValue},
    };
    use crossbeam_utils::thread;
    use std::{
        mem::ManuallyDrop,
        ptr,
        sync::atomic::{AtomicBool, Ordering},
    };

    struct CustomUndo<T, F: FnOnce(T)> {
        value: ManuallyDrop<T>,
        undo:  ManuallyDrop<F>,
    }

    impl<T, F: FnOnce(T)> Drop for CustomUndo<T, F> {
        #[inline]
        fn drop(&mut self) {
            unsafe { (ptr::read(&*self.undo))(ptr::read(&*self.value)) }
        }
    }

    impl<T: 'static, F: FnOnce(T) + 'static> CustomUndo<T, F> {
        #[inline]
        const fn new(value: T, undo: F) -> Self {
            CustomUndo {
                value: ManuallyDrop::new(value),
                undo:  ManuallyDrop::new(undo),
            }
        }
    }

    unsafe impl<T: 'static, F: FnOnce(T) + 'static> _TValue<T> for CustomUndo<T, F> {
        const REQUEST_TCELL_LIFETIME: bool = true;
    }

    #[test]
    fn publish_retry() {
        static TRIGGERED: AtomicBool = AtomicBool::new(false);
        let x = TCell::new(42);

        thread::scope(|s| {
            s.spawn(|_| {
                let thread_key = thread_key::get();
                thread_key.rw(|tx| {
                    if TRIGGERED.load(Ordering::Relaxed) {
                        Ok(())
                    } else {
                        x.publish(
                            tx,
                            CustomUndo::new(1, |prev| {
                                assert_eq!(prev, 1);
                                TRIGGERED.store(true, Ordering::Relaxed);
                            }),
                        )?;
                        Err(Error::RETRY)
                    }
                });
            });
        })
        .unwrap();

        drop(x);
        assert!(
            TRIGGERED.load(Ordering::Relaxed),
            "failed to trigger custom undo"
        );
    }

    #[test]
    fn publish_3x() {
        static TRIGGERED: AtomicBool = AtomicBool::new(false);
        static TRIGGERED2: AtomicBool = AtomicBool::new(false);
        let x = TCell::new(42);

        thread::scope(|s| {
            s.spawn(|_| {
                let thread_key = thread_key::get();
                thread_key.rw(|tx| {
                    if TRIGGERED.load(Ordering::Relaxed) {
                        x.publish(
                            tx,
                            CustomUndo::new(4, |_| panic!("should not have been triggered")),
                        )?;
                        Ok(())
                    } else {
                        x.publish(
                            tx,
                            CustomUndo::new(1, |prev| {
                                assert_eq!(prev, 1);
                                TRIGGERED.store(true, Ordering::Relaxed);
                            }),
                        )?;
                        x.publish(
                            tx,
                            CustomUndo::new(2, |prev| {
                                TRIGGERED2.store(true, Ordering::Relaxed);
                                assert_eq!(prev, 2);
                            }),
                        )?;
                        x.set(tx, 3)?;
                        Err(Error::RETRY)
                    }
                });
            });
        })
        .unwrap();

        drop(x);
        assert!(
            TRIGGERED.load(Ordering::Relaxed),
            "failed to trigger custom undo"
        );
        assert!(
            TRIGGERED2.load(Ordering::Relaxed),
            "failed to trigger custom undo"
        );
    }
}