mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
100 lines
2.1 KiB
Rust
100 lines
2.1 KiB
Rust
//! Accumulate values from within a tracked function.
|
|
//! Then mutate the values so that the tracked function re-executes.
|
|
//! Check that we accumulate the appropriate, new values.
|
|
|
|
mod common;
|
|
use common::{HasLogger, Logger};
|
|
|
|
use expect_test::expect;
|
|
use salsa::{Accumulator, Setter};
|
|
use test_log::test;
|
|
|
|
#[salsa::db]
|
|
trait Db: salsa::Database + HasLogger {}
|
|
|
|
#[salsa::input]
|
|
struct List {
|
|
value: u32,
|
|
next: Option<List>,
|
|
}
|
|
|
|
#[salsa::accumulator]
|
|
#[derive(Copy)]
|
|
struct Integers(u32);
|
|
|
|
#[salsa::tracked]
|
|
fn compute(db: &dyn Db, input: List) {
|
|
eprintln!(
|
|
"{:?}(value={:?}, next={:?})",
|
|
input,
|
|
input.value(db),
|
|
input.next(db)
|
|
);
|
|
let result = if let Some(next) = input.next(db) {
|
|
let next_integers = compute::accumulated::<Integers>(db, next);
|
|
eprintln!("{:?}", next_integers);
|
|
let v = input.value(db) + next_integers.iter().map(|a| a.0).sum::<u32>();
|
|
eprintln!("input={:?} v={:?}", input.value(db), v);
|
|
v
|
|
} else {
|
|
input.value(db)
|
|
};
|
|
Integers(result).accumulate(db);
|
|
eprintln!("pushed result {:?}", result);
|
|
}
|
|
|
|
#[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) {}
|
|
}
|
|
|
|
#[salsa::db]
|
|
impl Db for Database {}
|
|
|
|
impl HasLogger for Database {
|
|
fn logger(&self) -> &Logger {
|
|
&self.logger
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test1() {
|
|
let mut db = Database::default();
|
|
|
|
let l0 = List::new(&db, 1, None);
|
|
let l1 = List::new(&db, 10, Some(l0));
|
|
|
|
compute(&db, l1);
|
|
expect![[r#"
|
|
[
|
|
Integers(
|
|
11,
|
|
),
|
|
Integers(
|
|
1,
|
|
),
|
|
]
|
|
"#]]
|
|
.assert_debug_eq(&compute::accumulated::<Integers>(&db, l1));
|
|
|
|
l0.set_value(&mut db).to(2);
|
|
compute(&db, l1);
|
|
expect![[r#"
|
|
[
|
|
Integers(
|
|
12,
|
|
),
|
|
Integers(
|
|
2,
|
|
),
|
|
]
|
|
"#]]
|
|
.assert_debug_eq(&compute::accumulated::<Integers>(&db, l1));
|
|
}
|