mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
122 lines
3.2 KiB
Rust
122 lines
3.2 KiB
Rust
//! Delete cascade:
|
|
//!
|
|
//! * when we delete memoized data, also delete outputs from that data
|
|
|
|
mod common;
|
|
use common::{HasLogger, Logger};
|
|
|
|
use expect_test::expect;
|
|
use salsa::Setter;
|
|
use test_log::test;
|
|
|
|
#[salsa::db]
|
|
trait Db: salsa::Database + HasLogger {}
|
|
|
|
#[salsa::input(singleton)]
|
|
struct MyInput {
|
|
field: u32,
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn final_result(db: &dyn Db, input: MyInput) -> u32 {
|
|
db.push_log(format!("final_result({:?})", input));
|
|
let mut sum = 0;
|
|
for tracked_struct in create_tracked_structs(db, input) {
|
|
sum += contribution_from_struct(db, tracked_struct);
|
|
}
|
|
sum
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
struct MyTracked<'db> {
|
|
field: u32,
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn create_tracked_structs(db: &dyn Db, input: MyInput) -> Vec<MyTracked<'_>> {
|
|
db.push_log(format!("intermediate_result({:?})", input));
|
|
(0..input.field(db))
|
|
.map(|i| MyTracked::new(db, i))
|
|
.collect()
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn contribution_from_struct<'db>(db: &'db dyn Db, tracked: MyTracked<'db>) -> u32 {
|
|
let m = MyTracked::new(db, tracked.field(db));
|
|
copy_field(db, m) * 2
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn copy_field<'db>(db: &'db dyn Db, tracked: MyTracked<'db>) -> u32 {
|
|
tracked.field(db)
|
|
}
|
|
|
|
#[salsa::db]
|
|
#[derive(Default)]
|
|
struct Database {
|
|
storage: salsa::Storage<Self>,
|
|
logger: Logger,
|
|
}
|
|
|
|
#[salsa::db]
|
|
impl salsa::Database for Database {
|
|
fn salsa_event(&self, event: salsa::Event) {
|
|
match event.kind {
|
|
salsa::EventKind::WillDiscardStaleOutput { .. }
|
|
| salsa::EventKind::DidDiscard { .. } => {
|
|
self.push_log(format!("salsa_event({:?})", event.kind));
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[salsa::db]
|
|
impl Db for Database {}
|
|
|
|
impl HasLogger for Database {
|
|
fn logger(&self) -> &Logger {
|
|
&self.logger
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn basic() {
|
|
let mut db = Database::default();
|
|
|
|
// Creates 3 tracked structs
|
|
let input = MyInput::new(&db, 3);
|
|
assert_eq!(final_result(&db, input), 2 * 2 + 2);
|
|
db.assert_logs(expect![[r#"
|
|
[
|
|
"final_result(MyInput { [salsa id]: 0, field: 3 })",
|
|
"intermediate_result(MyInput { [salsa id]: 0, field: 3 })",
|
|
]"#]]);
|
|
|
|
// Creates only 2 tracked structs in this revision, should delete 1
|
|
//
|
|
// Expect to see 6 DidDiscard events. Three from the primary struct:
|
|
//
|
|
// * the struct itself
|
|
// * the struct's field
|
|
// * the `contribution_from_struct` result
|
|
//
|
|
// and then 3 more from the struct created by `contribution_from_struct`:
|
|
//
|
|
// * the struct itself
|
|
// * the struct's field
|
|
// * the `copy_field` result
|
|
|
|
input.set_field(&mut db).to(2);
|
|
assert_eq!(final_result(&db, input), 2);
|
|
db.assert_logs(expect![[r#"
|
|
[
|
|
"intermediate_result(MyInput { [salsa id]: 0, field: 2 })",
|
|
"salsa_event(WillDiscardStaleOutput { execute_key: create_tracked_structs(0), output_key: MyTracked(2) })",
|
|
"salsa_event(DidDiscard { key: MyTracked(2) })",
|
|
"salsa_event(DidDiscard { key: contribution_from_struct(2) })",
|
|
"salsa_event(DidDiscard { key: MyTracked(5) })",
|
|
"salsa_event(DidDiscard { key: copy_field(5) })",
|
|
"final_result(MyInput { [salsa id]: 0, field: 2 })",
|
|
]"#]]);
|
|
}
|