salsa/tests/cycles.rs

167 lines
3.7 KiB
Rust
Raw Normal View History

use salsa::{ParallelDatabase, Snapshot};
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
struct Error {
cycle: Vec<String>,
}
#[salsa::database(GroupStruct)]
2018-10-01 10:47:24 +00:00
#[derive(Default)]
struct DatabaseImpl {
2018-10-07 11:08:22 +00:00
runtime: salsa::Runtime<DatabaseImpl>,
2018-10-01 10:47:24 +00:00
}
2018-10-05 08:54:51 +00:00
impl salsa::Database for DatabaseImpl {
2018-10-07 11:08:22 +00:00
fn salsa_runtime(&self) -> &salsa::Runtime<DatabaseImpl> {
2018-10-01 10:47:24 +00:00
&self.runtime
}
}
impl ParallelDatabase for DatabaseImpl {
fn snapshot(&self) -> Snapshot<Self> {
Snapshot::new(DatabaseImpl {
runtime: self.runtime.snapshot(self),
})
}
}
#[salsa::query_group(GroupStruct)]
trait Database: salsa::Database {
// `a` and `b` depend on each other and form a cycle
fn memoized_a(&self) -> ();
fn memoized_b(&self) -> ();
fn volatile_a(&self) -> ();
fn volatile_b(&self) -> ();
fn cycle_leaf(&self) -> ();
#[salsa::cycle(recover_a)]
fn cycle_a(&self) -> Result<(), Error>;
#[salsa::cycle(recover_b)]
fn cycle_b(&self) -> Result<(), Error>;
fn cycle_c(&self) -> Result<(), Error>;
}
fn recover_a(_db: &impl Database, cycle: &[String]) -> Result<(), Error> {
Err(Error {
cycle: cycle.to_owned(),
})
}
fn recover_b(_db: &impl Database, cycle: &[String]) -> Result<(), Error> {
Err(Error {
cycle: cycle.to_owned(),
})
2018-10-01 10:47:24 +00:00
}
2018-10-19 01:26:48 +00:00
fn memoized_a(db: &impl Database) -> () {
db.memoized_b()
2018-10-01 10:47:24 +00:00
}
2018-10-19 01:26:48 +00:00
fn memoized_b(db: &impl Database) -> () {
db.memoized_a()
2018-10-01 10:47:24 +00:00
}
2018-10-19 01:26:48 +00:00
fn volatile_a(db: &impl Database) -> () {
db.salsa_runtime().report_untracked_read();
2018-10-19 01:26:48 +00:00
db.volatile_b()
2018-10-01 10:47:24 +00:00
}
2018-10-19 01:26:48 +00:00
fn volatile_b(db: &impl Database) -> () {
db.salsa_runtime().report_untracked_read();
2018-10-19 01:26:48 +00:00
db.volatile_a()
2018-10-01 10:47:24 +00:00
}
fn cycle_leaf(_db: &impl Database) -> () {}
fn cycle_a(db: &impl Database) -> Result<(), Error> {
let _ = db.cycle_b();
Ok(())
}
fn cycle_b(db: &impl Database) -> Result<(), Error> {
db.cycle_leaf();
let _ = db.cycle_a();
Ok(())
}
fn cycle_c(db: &impl Database) -> Result<(), Error> {
db.cycle_b()
}
2018-10-01 10:47:24 +00:00
#[test]
#[should_panic(expected = "cycle detected")]
fn cycle_memoized() {
2018-10-05 08:54:51 +00:00
let query = DatabaseImpl::default();
2018-10-19 01:26:48 +00:00
query.memoized_a();
2018-10-01 10:47:24 +00:00
}
#[test]
#[should_panic(expected = "cycle detected")]
fn cycle_volatile() {
2018-10-05 08:54:51 +00:00
let query = DatabaseImpl::default();
2018-10-19 01:26:48 +00:00
query.volatile_a();
2018-10-01 10:47:24 +00:00
}
#[test]
fn cycle_cycle() {
let query = DatabaseImpl::default();
assert!(query.cycle_a().is_err());
}
#[test]
fn inner_cycle() {
let query = DatabaseImpl::default();
let err = query.cycle_c();
assert!(err.is_err());
let cycle = err.unwrap_err().cycle;
assert!(
cycle
.iter()
.zip(&["cycle_b", "cycle_a"])
.all(|(l, r)| l.contains(r)),
"{:#?}",
cycle
);
}
#[test]
fn parallel_cycle() {
let _ = env_logger::try_init();
let db = DatabaseImpl::default();
let thread1 = std::thread::spawn({
let db = db.snapshot();
move || {
let result = db.cycle_a();
assert!(result.is_err(), "Expected cycle error");
let cycle = result.unwrap_err().cycle;
assert!(
cycle
.iter()
.all(|l| ["cycle_b", "cycle_a"].iter().any(|r| l.contains(r))),
"{:#?}",
cycle
);
}
});
let thread2 = std::thread::spawn(move || {
let result = db.cycle_c();
assert!(result.is_err(), "Expected cycle error");
let cycle = result.unwrap_err().cycle;
assert!(
cycle
.iter()
.all(|l| ["cycle_b", "cycle_a"].iter().any(|r| l.contains(r))),
"{:#?}",
cycle
);
});
thread1.join().unwrap();
thread2.join().unwrap();
eprintln!("OK");
}