mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-07-07 21:35:17 +00:00
104 lines
2.3 KiB
Rust
104 lines
2.3 KiB
Rust
#![cfg(all(feature = "rayon", not(feature = "shuttle")))]
|
|
|
|
// test for rayon-like join interactions.
|
|
|
|
use salsa::{Cancelled, Setter};
|
|
|
|
use crate::setup::{Knobs, KnobsDatabase};
|
|
|
|
#[salsa::input]
|
|
struct ParallelInput {
|
|
a: u32,
|
|
b: u32,
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn tracked_fn(db: &dyn salsa::Database, input: ParallelInput) -> (u32, u32) {
|
|
salsa::join(db, |db| input.a(db) + 1, |db| input.b(db) - 1)
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn a1(db: &dyn KnobsDatabase, input: ParallelInput) -> (u32, u32) {
|
|
db.signal(1);
|
|
salsa::join(
|
|
db,
|
|
|db| {
|
|
db.wait_for(2);
|
|
input.a(db) + dummy(db)
|
|
},
|
|
|db| {
|
|
db.wait_for(2);
|
|
input.b(db) + dummy(db)
|
|
},
|
|
)
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn dummy(_db: &dyn KnobsDatabase) -> u32 {
|
|
panic!("should never get here!")
|
|
}
|
|
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)]
|
|
fn execute() {
|
|
let db = salsa::DatabaseImpl::new();
|
|
|
|
let input = ParallelInput::new(&db, 10, 20);
|
|
|
|
tracked_fn(&db, input);
|
|
}
|
|
|
|
// we expect this to panic, as `salsa::par_map` needs to be called from a query.
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)]
|
|
#[should_panic]
|
|
fn direct_calls_panic() {
|
|
let db = salsa::DatabaseImpl::new();
|
|
|
|
let input = ParallelInput::new(&db, 10, 20);
|
|
let (_, _) = salsa::join(&db, |db| input.a(db) + 1, |db| input.b(db) - 1);
|
|
}
|
|
|
|
// Cancellation signalling test
|
|
//
|
|
// The pattern is as follows.
|
|
//
|
|
// Thread A Thread B
|
|
// -------- --------
|
|
// a1
|
|
// | wait for stage 1
|
|
// signal stage 1 set input, triggers cancellation
|
|
// wait for stage 2 (blocks) triggering cancellation sends stage 2
|
|
// |
|
|
// (unblocked)
|
|
// dummy
|
|
// panics
|
|
|
|
#[test]
|
|
#[cfg_attr(miri, ignore)]
|
|
fn execute_cancellation() {
|
|
let mut db = Knobs::default();
|
|
|
|
let input = ParallelInput::new(&db, 10, 20);
|
|
|
|
let thread_a = std::thread::spawn({
|
|
let db = db.clone();
|
|
move || a1(&db, input)
|
|
});
|
|
|
|
db.signal_on_did_cancel(2);
|
|
input.set_a(&mut db).to(30);
|
|
|
|
// Assert thread A was cancelled
|
|
let cancelled = thread_a
|
|
.join()
|
|
.unwrap_err()
|
|
.downcast::<Cancelled>()
|
|
.unwrap();
|
|
|
|
// and inspect the output
|
|
expect_test::expect![[r#"
|
|
PendingWrite
|
|
"#]]
|
|
.assert_debug_eq(&cancelled);
|
|
}
|