anode 0.1.0

Concurrency library for Rust.
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
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
//! A test suite "borrowed" from [`parking_lot`](https://github.com/Amanieu/parking_lot).

use crate::chalice::{Chalice, ChaliceResultExt};
use crate::multilock::UpgradeOutcome::Upgraded;
use crate::multilock::{Fairness, MultiLock};
use crate::test_utils::{FAIRNESS_VARIANTS, SHORT_WAIT};
use rand::Rng;
use std::sync::atomic::{AtomicU32, AtomicUsize, Ordering};
use std::sync::mpsc::channel;
use std::sync::Arc;
use std::thread;
use std::time::Duration;

#[derive(Eq, PartialEq, Debug)]
struct NonCopy(i32);

#[test]
fn smoke() {
    for fairness in FAIRNESS_VARIANTS {
        let l = MultiLock::new((), fairness.into());
        drop(l.read());
        drop(l.write());
        drop(l.read().upgrade());
        drop(l.write().downgrade());
    }
}

/// Enhanced over the original test to exercise both the read/write and the try_read/try_write paths,
/// as well as downgrade and try_upgrade.
#[test]
fn frob() {
    for fairness in FAIRNESS_VARIANTS {
        const N: u32 = 10;
        const M: u32 = 1000;

        let r = Arc::new(MultiLock::new((), fairness.into()));

        let (tx, rx) = channel::<()>();
        for _ in 0..N {
            let tx = tx.clone();
            let r = r.clone();
            thread::spawn(move || {
                let mut rng = rand::thread_rng();
                for _ in 0..M {
                    if rng.gen_bool(1.0 / N as f64) {
                        // println!("{t} trying write");
                        drop(r.write());
                    } else {
                        // println!("trying read");
                        drop(r.read());
                    }

                    if rng.gen_bool(1.0 / N as f64) {
                        // println!("{t} trying write");
                        drop(r.try_write(SHORT_WAIT));
                    } else {
                        // println!("trying read");
                        drop(r.try_read(SHORT_WAIT));
                    }

                    if rng.gen_bool(1.0 / N as f64) {
                        // println!("{t} trying write");
                        drop(r.try_write(Duration::ZERO));
                    } else {
                        // println!("trying read");
                        drop(r.try_read(Duration::ZERO));
                    }

                    if rng.gen_bool(1.0 / N as f64) {
                        // println!("{t} trying write");
                        drop(r.write().downgrade());
                    } else {
                        // println!("trying read");
                        if rng.gen_bool(0.5) {
                            drop(r.read().try_upgrade(SHORT_WAIT));
                        } else {
                            drop(r.read().try_upgrade(Duration::ZERO));
                        }
                    }
                }
                drop(tx);
            });
        }
        drop(tx);
        let _ = rx.recv();
    }
}

#[test]
fn test_rw_arc_no_poison_wr() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(1, fairness.into()));
        let arc2 = arc.clone();
        let _ = thread::spawn(move || {
            let _lock = arc2.write();
            panic!();
        })
        .join();
        let lock = arc.read();
        assert_eq!(*lock, 1);
    }
}

/// Like [`test_rw_arc_no_poison_wr`] , but using our fancy [`Chalice`].
#[test]
fn test_rw_arc_with_chalice() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(Chalice::new(1), fairness.into()));
        let arc2 = arc.clone();
        let _ = thread::spawn(move || {
            let mut lock = arc2.write();
            let _val = lock.borrow_mut();
            panic!();
        })
        .join();
        let lock = arc.read();
        let res = lock.borrow();
        assert!(res.is_err());
        assert_eq!(1, *res.either());
    }
}

#[test]
fn test_rw_arc_no_poison_ww() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(1, fairness.into()));
        let arc2 = arc.clone();
        let _: Result<(), _> = thread::spawn(move || {
            let _lock = arc2.write();
            panic!();
        })
        .join();
        let lock = arc.write();
        assert_eq!(*lock, 1);
    }
}

#[test]
fn test_rw_arc_no_poison_rr() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(1, fairness.into()));
        let arc2 = arc.clone();
        let _: Result<(), _> = thread::spawn(move || {
            let _lock = arc2.read();
            panic!();
        })
        .join();
        let lock = arc.read();
        assert_eq!(*lock, 1);
    }
}

#[test]
fn test_rw_arc_no_poison_rw() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(1, fairness.into()));
        let arc2 = arc.clone();
        let _: Result<(), _> = thread::spawn(move || {
            let _lock = arc2.read();
            panic!()
        })
        .join();
        let lock = arc.write();
        assert_eq!(*lock, 1);
    }
}

/// This test had to be modified from its `parking_lot` predecessor to account for the possibility
/// of failed upgrades.
#[test]
fn test_ruw_arc() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(0i32, fairness.into()));
        let arc2 = arc.clone();
        let (tx, rx) = channel();

        // Here, a single writer will increment the value. But in the process of incrementing
        // the value, the writer will write an interim _invalid_ value: -1. The readers
        // should never observe a negative value.
        thread::spawn(move || {
            for _ in 0..10 {
                let mut lock = arc2.write();
                let tmp = *lock;
                *lock = -1;
                thread::yield_now();
                *lock = tmp + 1;
            }
            tx.send(()).unwrap();
        });

        let mut children = Vec::new();

        // Upgradable readers try to catch the writer in the act and also
        // try to touch the value. They can also write an invalid interim value.
        // Upgrading may fail, so we need to track the number of timeouts for the
        // subsequent summing assertion.
        let missed_upgrades = Arc::new(AtomicU32::new(0));
        for _ in 0..5 {
            let arc3 = arc.clone();
            let missed_upgrades = missed_upgrades.clone();
            children.push(thread::spawn(move || {
                for _ in 0..10 {
                    let lock = arc3.read();
                    let tmp = *lock;
                    assert!(tmp >= 0);
                    thread::yield_now();
                    let lock = lock.try_upgrade(SHORT_WAIT);
                    if let Upgraded(mut lock) = lock {
                        assert_eq!(tmp, *lock);
                        *lock = -1;
                        thread::yield_now();
                        *lock = tmp + 1;
                    } else {
                        missed_upgrades.fetch_add(1, Ordering::Relaxed);
                    }
                }
            }));
        }

        // Readers try to catch the writers in the act.
        for _ in 0..5 {
            let arc4 = arc.clone();
            children.push(thread::spawn(move || {
                let lock = arc4.read();
                assert!(*lock >= 0);
            }));
        }

        // Wait for children to pass their asserts
        for r in children {
            assert!(r.join().is_ok());
        }

        // Wait for writer to finish
        rx.recv().unwrap();
        let lock = arc.read();
        let missed_upgrades = missed_upgrades.load(Ordering::Relaxed);
        assert_eq!(*lock, 60i32 - (missed_upgrades as i32));
    }
}

#[test]
fn test_rw_arc() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(0, fairness.into()));
        let arc2 = arc.clone();
        let (tx, rx) = channel();

        thread::spawn(move || {
            let mut lock = arc2.write();
            for _ in 0..10 {
                let tmp = *lock;
                *lock = -1;
                thread::yield_now();
                *lock = tmp + 1;
            }
            tx.send(()).unwrap();
        });

        // Readers try to catch the writer in the act
        let mut children = Vec::new();
        for _ in 0..5 {
            let arc3 = arc.clone();
            children.push(thread::spawn(move || {
                let lock = arc3.read();
                assert!(*lock >= 0);
            }));
        }

        // Wait for children to pass their asserts
        for r in children {
            assert!(r.join().is_ok());
        }

        // Wait for writer to finish
        rx.recv().unwrap();
        let lock = arc.read();
        assert_eq!(*lock, 10);
    }
}

#[test]
fn test_rw_arc_access_in_unwind() {
    for fairness in FAIRNESS_VARIANTS {
        let arc = Arc::new(MultiLock::new(1, fairness.into()));
        let _ = {
            let arc = arc.clone();
            thread::spawn(move || {
                struct Unwinder {
                    i: Arc<MultiLock<isize>>,
                }
                impl Drop for Unwinder {
                    fn drop(&mut self) {
                        let mut lock = self.i.write();
                        *lock += 1;
                    }
                }
                let _u = Unwinder { i: arc };
                panic!();
            })
            .join()
        };
        let lock = arc.read();
        assert_eq!(*lock, 2);
    }
}

#[test]
fn test_rwlock_unsized() {
    for fairness in FAIRNESS_VARIANTS {
        let rw: &MultiLock<[i32]> = &MultiLock::new([1, 2, 3], fairness.into());
        {
            let b = &mut *rw.write();
            b[0] = 4;
            b[2] = 5;
        }
        let comp: &[i32] = &[4, 2, 5];
        assert_eq!(&*rw.read(), comp);
    }
}

#[test]
fn test_rwlock_try_read() {
    for fairness in FAIRNESS_VARIANTS {
        let lock = MultiLock::new(0isize, fairness.into());
        {
            let read_guard = lock.read();

            let read_result = lock.try_read(Duration::ZERO);
            assert!(
                read_result.is_some(),
                "try_read should succeed while read_guard is in scope"
            );

            drop(read_guard);
        }
        {
            let read_guard = lock.read();

            let read_result = lock.try_read(Duration::ZERO);
            assert!(
                read_result.is_some(),
                "try_read should succeed while read_guard is in scope"
            );

            drop(read_guard);
        }
        {
            let write_guard = lock.write();

            let read_result = lock.try_read(Duration::ZERO);
            assert!(
                read_result.is_none(),
                "try_read should fail while write_guard is in scope"
            );

            drop(write_guard);
        }
    }
}

#[test]
fn test_rwlock_try_write() {
    for fairness in FAIRNESS_VARIANTS {
        let lock = MultiLock::new(0isize, fairness.into());
        {
            let read_guard = lock.read();

            let write_result = lock.try_write(Duration::ZERO);
            assert!(
                write_result.is_none(),
                "try_write should fail while read_guard is in scope"
            );

            drop(read_guard);
        }
        {
            let read_guard = lock.read();

            let write_result = lock.try_write(Duration::ZERO);
            assert!(
                write_result.is_none(),
                "try_write should fail while read_guard is in scope"
            );

            drop(read_guard);
        }
        {
            let write_guard = lock.write();

            let write_result = lock.try_write(Duration::ZERO);
            assert!(
                write_result.is_none(),
                "try_write should fail while write_guard is in scope"
            );

            drop(write_guard);
        }
    }
}

/// Heavily cut down version from `parking_lot` because we don't support an exclusive upgradeable
/// reader.
#[test]
fn test_rwlock_try_upgrade() {
    for fairness in FAIRNESS_VARIANTS {
        let lock = MultiLock::new(0isize, fairness.into());
        {
            let read_guard = lock.read();

            let upgrade_result = read_guard.try_upgrade(Duration::ZERO);
            assert!(
                upgrade_result.is_upgraded(),
                "try_upgradable_read should succeed while read_guard is in scope"
            );
        }
    }
}

#[test]
fn test_into_inner() {
    for fairness in FAIRNESS_VARIANTS {
        let m = MultiLock::new(NonCopy(10), fairness.into());
        assert_eq!(m.into_inner(), NonCopy(10));
    }
}

#[test]
fn test_into_inner_drop() {
    for fairness in FAIRNESS_VARIANTS {
        struct Foo(Arc<AtomicUsize>);
        impl Drop for Foo {
            fn drop(&mut self) {
                self.0.fetch_add(1, Ordering::SeqCst);
            }
        }
        let num_drops = Arc::new(AtomicUsize::new(0));
        let m = MultiLock::new(Foo(num_drops.clone()), fairness.into());
        assert_eq!(num_drops.load(Ordering::SeqCst), 0);
        {
            let _inner = m.into_inner();
            assert_eq!(num_drops.load(Ordering::SeqCst), 0);
        }
        assert_eq!(num_drops.load(Ordering::SeqCst), 1);
    }
}

#[test]
fn test_get_mut() {
    for fairness in FAIRNESS_VARIANTS {
        let mut m = MultiLock::new(NonCopy(10), fairness.into());
        *m.get_mut() = NonCopy(20);
        assert_eq!(m.into_inner(), NonCopy(20));
    }
}

#[test]
fn test_rwlockguard_sync() {
    fn sync<T: Sync>(_: T) {}

    let rwlock = MultiLock::new((), Fairness::WriteBiased);
    sync(rwlock.read());
    sync(rwlock.write());
}

#[test]
fn test_rwlock_downgrade() {
    for fairness in FAIRNESS_VARIANTS {
        let x = Arc::new(MultiLock::new(0, fairness.into()));
        let mut handles = Vec::new();
        for _ in 0..8 {
            let x = x.clone();
            handles.push(thread::spawn(move || {
                for _ in 0..100 {
                    let mut writer = x.write();
                    *writer += 1;
                    let cur_val = *writer;
                    let reader = writer.downgrade();
                    assert_eq!(cur_val, *reader);
                }
            }));
        }
        for handle in handles {
            handle.join().unwrap()
        }
        assert_eq!(*x.read(), 800);
    }
}

#[test]
fn test_rwlock_debug() {
    let x = MultiLock::new((), Fairness::WriteBiased);
    assert!(format!("{:?}", x).contains("MultiLock"));
}

/// Impacts parking_lot when deadlock detection is in force. Shouldn't apply to us, but added
/// here for completeness.
#[test]
fn test_issue_203() {
    struct Bar(MultiLock<()>);

    impl Drop for Bar {
        fn drop(&mut self) {
            let _n = self.0.write();
        }
    }

    thread_local! {
        static B: Bar = Bar(MultiLock::new((), Fairness::WriteBiased));
    }

    thread::spawn(|| {
        B.with(|_| ());

        let a = MultiLock::new((), Fairness::WriteBiased);
        let _a = a.read();
    })
    .join()
    .unwrap();
}