mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-12-25 05:29:43 +00:00
72 lines
1.5 KiB
Rust
72 lines
1.5 KiB
Rust
use crate::db;
|
|
use salsa::{Database, SweepStrategy};
|
|
use std::sync::atomic::{AtomicU32, Ordering};
|
|
use std::sync::Arc;
|
|
|
|
/// Query group for tests for how interned keys interact with GC.
|
|
#[salsa::query_group(Volatile)]
|
|
pub(crate) trait VolatileDatabase {
|
|
#[salsa::input]
|
|
fn atomic_cell(&self) -> Arc<AtomicU32>;
|
|
|
|
/// Underlying volatile query.
|
|
#[salsa::volatile]
|
|
fn volatile(&self) -> u32;
|
|
|
|
/// This just executes the intern query and returns the result.
|
|
fn repeat1(&self) -> u32;
|
|
|
|
/// Same as `repeat_intern1`. =)
|
|
fn repeat2(&self) -> u32;
|
|
}
|
|
|
|
fn volatile(db: &impl VolatileDatabase) -> u32 {
|
|
db.atomic_cell().load(Ordering::SeqCst)
|
|
}
|
|
|
|
fn repeat1(db: &impl VolatileDatabase) -> u32 {
|
|
db.volatile()
|
|
}
|
|
|
|
fn repeat2(db: &impl VolatileDatabase) -> u32 {
|
|
db.volatile()
|
|
}
|
|
|
|
#[test]
|
|
fn consistency_no_gc() {
|
|
let mut db = db::DatabaseImpl::default();
|
|
|
|
let cell = Arc::new(AtomicU32::new(22));
|
|
|
|
db.set_atomic_cell(cell.clone());
|
|
|
|
let v1 = db.repeat1();
|
|
|
|
cell.store(23, Ordering::SeqCst);
|
|
|
|
let v2 = db.repeat2();
|
|
|
|
assert_eq!(v1, v2);
|
|
}
|
|
|
|
#[test]
|
|
fn consistency_with_gc() {
|
|
let mut db = db::DatabaseImpl::default();
|
|
|
|
let cell = Arc::new(AtomicU32::new(22));
|
|
|
|
db.set_atomic_cell(cell.clone());
|
|
|
|
let v1 = db.repeat1();
|
|
|
|
cell.store(23, Ordering::SeqCst);
|
|
db.query(VolatileQuery).sweep(
|
|
SweepStrategy::default()
|
|
.discard_everything()
|
|
.sweep_all_revisions(),
|
|
);
|
|
|
|
let v2 = db.repeat2();
|
|
|
|
assert_eq!(v1, v2);
|
|
}
|