mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-12 08:30:51 +00:00
93c30a953d
Switch to a procedural implementation of the `query_group!` macro, residing in the `components/salsa_macros` subcrate. Allow the user to override the invoked function via `salsa::invoke(...)` and the name of the generated query type via `salsa::query_type(...)`. In all tests, replace the `salsa::query_group! { ... }` invocations with the new attribute-style `#[salsa::query_group]` macro, and change them to the new naming scheme for query types (`...Query`). Update README, examples, and documentation.
29 lines
907 B
Rust
29 lines
907 B
Rust
use crate::setup::{InputQuery, ParDatabase, ParDatabaseImpl};
|
|
use salsa::{Database, ParallelDatabase};
|
|
|
|
/// Test two `sum` queries (on distinct keys) executing in different
|
|
/// threads. Really just a test that `snapshot` etc compiles.
|
|
#[test]
|
|
fn in_par_two_independent_queries() {
|
|
let mut db = ParDatabaseImpl::default();
|
|
|
|
db.query_mut(InputQuery).set('a', 100);
|
|
db.query_mut(InputQuery).set('b', 010);
|
|
db.query_mut(InputQuery).set('c', 001);
|
|
db.query_mut(InputQuery).set('d', 200);
|
|
db.query_mut(InputQuery).set('e', 020);
|
|
db.query_mut(InputQuery).set('f', 002);
|
|
|
|
let thread1 = std::thread::spawn({
|
|
let db = db.snapshot();
|
|
move || db.sum("abc")
|
|
});
|
|
|
|
let thread2 = std::thread::spawn({
|
|
let db = db.snapshot();
|
|
move || db.sum("def")
|
|
});;
|
|
|
|
assert_eq!(thread1.join().unwrap(), 111);
|
|
assert_eq!(thread2.join().unwrap(), 222);
|
|
}
|