-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to send generated readers across threads #479
Comments
You can't put let address_book = reader.get_root::<address_book::Reader>().unwrap(); I don't know of a good way to avoid copying the data in this situation. One thing you can do is have your shared hashmap store values of type capnproto-rust/capnp/src/message.rs Lines 540 to 554 in b85e041
To get this approach to perform optimally, you'll probably also need to adjust the segment size of the allocator given to |
Thank you! This was indeed helpful. I also had to wrap the I think I have a clearer vision of what I was originally hoping to achieve. I might create a
This is roughly the api I have in mind: // Producer
let builder = build_address_book();
let mut buffer = Vec::new();
serialize_packed::write_message(&mut buffer, &builder).unwrap();
let buffer = Arc::new(buffer);
let person_0_ptr = addressbook::root_ptr().get_people().get(0);
let person_0_ref = SharedReader::new(buffer.clone(), person_0_ptr); // Send + Sync + Clone
let person_1_id_ptr = addressbook::root_ptr().get_people().get(1).get_id();
let person_1_id_ref = SharedReader::new(buffer.clone(), person_1_id_ptr); // Send + Sync + Clone
// Consumer 1
let person = person_0_ref.value();
foo(person.get_name(), person.get_id());
// Consumer 2
let person = person_1_id_ref.value();
... I have a working implementation albeit without the pointers so clients explicitly need to dereference objects they're interested in. However, from a separation of concern perspective, I'm hoping to set this at the producer level. I'm going to try see if I can hack something together after looking at your repository. Also, out of curiosity, do you think this might be a good addition to capnp's API? |
I believe this is a duplicate of #256 (though with maintainer response!). |
Hello,
Thank you for this project! Also, apologies if this is a duplicate - I've found similar questions but I'm not quite sure if we're solving the same problem.
So I'm writing a program that consists of two threads:
I've been able to make an example of this using rust-native structs, but I just can't seem to figure out how to move to capnproto generated code. Here's a minimal example using the addressbook schema.
Specifically I have two questions:
How do I pass around generated readers (and any associated buffers) into collections to
Send
between threads?Does this access pattern make sense in a capnproto world? Essentially I'm trying to manage the lifecycle of the buffer and associated Readers / Builders to provide views over an
Arc<RwLock<_>>
'd buffer.Thank you!
The text was updated successfully, but these errors were encountered: