-
-
Notifications
You must be signed in to change notification settings - Fork 124
bench(client): receive one message from the decoded stanza to the event #1392
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a49adc0
bench(client): receive one message from the decoded stanza to the event
claude 28ba798
docs(bench): do not intra-doc-link a crate-private entry point
claude 38d4cdf
docs(bench): document the receive fixture helpers
claude fda1c3d
bench(client): keep the delivery receipt inside the measured receive
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| //! Client-level receive: one inbound message from the decoded stanza to the | ||
| //! dispatched event. | ||
| //! | ||
| //! `wacore`'s `send_receive_benchmark` covers the pure decrypt, and both DM and | ||
| //! group receives there are within a few microseconds of their crypto floor. | ||
| //! Everything *around* the decrypt — classification, the signal cache | ||
| //! checkout, the chat-lane and dedup bookkeeping, plaintext handling, the | ||
| //! event bus, the delivery receipt — lives in the `whatsapp-rust` crate, and | ||
| //! this target is what puts a number on it. | ||
| //! | ||
| //! What it does not cover, stated once so no number here is over-read: | ||
| //! | ||
| //! - **The chat lane.** A stanza enters at `handle_incoming_message`, which | ||
| //! is what the lane worker awaits per message; the queue hop itself is not | ||
| //! measured. | ||
| //! - **The SQLite backend.** The fixture stores through `InMemoryBackend`. | ||
| //! - **First contact.** Session and sender key are established in setup. | ||
| //! - **The socket write.** The delivery receipt is marshalled, noise-encrypted | ||
| //! and framed; the transport drops the frame. | ||
|
|
||
| use divan::black_box; | ||
| use std::sync::OnceLock; | ||
| use whatsapp_rust::bench_support::ReceiveHarness; | ||
|
|
||
| fn main() { | ||
| divan::main(); | ||
| } | ||
|
|
||
| // Few, large samples: the fixture's flush worker fires on its own 25 ms clock | ||
| // and a coalesced flush that lands mid-sample is amortised over a long sample | ||
| // rather than moving a short one. | ||
| const SAMPLE_COUNT: u32 = 20; | ||
| const SAMPLE_SIZE: u32 = 50; | ||
|
|
||
| /// One harness for both benches, so the second does not pay a second fixture. | ||
| /// The peer's chains advance per built stanza and each bench receives what it | ||
| /// built, in order, so sharing does not cross their streams. | ||
| fn harness() -> &'static ReceiveHarness { | ||
| static HARNESS: OnceLock<ReceiveHarness> = OnceLock::new(); | ||
| HARNESS.get_or_init(ReceiveHarness::new) | ||
| } | ||
|
|
||
| /// A 1:1 text message on an acknowledged session. | ||
| #[divan::bench(sample_count = SAMPLE_COUNT, sample_size = SAMPLE_SIZE)] | ||
| fn dm_receive(bencher: divan::Bencher) { | ||
| let harness = harness(); | ||
| let before = harness.messages_delivered(); | ||
| let mut received = 0u64; | ||
| bencher | ||
| .with_inputs(|| harness.dm_stanza()) | ||
| .bench_local_values(|node| { | ||
| received += 1; | ||
| harness.receive(black_box(node)); | ||
| }); | ||
| // A decrypt failure is fast and silent; it must not pass for a receive. | ||
| assert_eq!(harness.messages_delivered() - before, received); | ||
| } | ||
|
|
||
| /// A group text message under an installed sender key. | ||
| #[divan::bench(sample_count = SAMPLE_COUNT, sample_size = SAMPLE_SIZE)] | ||
| fn group_receive(bencher: divan::Bencher) { | ||
| let harness = harness(); | ||
| let before = harness.messages_delivered(); | ||
| let mut received = 0u64; | ||
| bencher | ||
| .with_inputs(|| harness.group_stanza()) | ||
| .bench_local_values(|node| { | ||
| received += 1; | ||
| harness.receive(black_box(node)); | ||
| }); | ||
| assert_eq!(harness.messages_delivered() - before, received); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.