Skip to content

Commit

Permalink
Use memchr-based splitting instead of an iterator/event-based inter…
Browse files Browse the repository at this point in the history
…face
  • Loading branch information
Swatinem committed Sep 4, 2024
1 parent 8a3162d commit 56e60a1
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 175 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ testing = []

[dependencies]
include_dir = "0.7.3"
memchr = "2.7.4"
memmap2 = "0.9.4"
rand = "0.8.5"
rusqlite = { version = "0.31.0", features = ["bundled", "limits"] }
Expand Down
22 changes: 6 additions & 16 deletions core/benches/pyreport.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::collections::HashMap;
use std::{collections::HashMap, hint::black_box};

use codecov_rs::{
parsers::pyreport::{chunks, chunks_serde, report_json},
Expand Down Expand Up @@ -125,21 +125,11 @@ fn complex_chunks_serde(bencher: Bencher) {
}

fn parse_chunks_file_serde(input: &[u8]) {
let mut parser = chunks_serde::Parser::new(input);
loop {
// TODO: these are just for debugging
let rest = parser.rest;
let expecting = parser.expecting;
let event = parser.next();
match event {
Ok(None) => break,
Ok(Some(_)) => {}
Err(err) => {
let rest = std::str::from_utf8(rest).unwrap();
let rest = rest.get(..32).unwrap_or(rest);
dbg!(rest, expecting);
panic!("{err}");
}
let chunks_file = chunks_serde::ChunksFile::new(input).unwrap();
let mut chunks = chunks_file.chunks();
while let Some(mut chunk) = chunks.next_chunk().unwrap() {
while let Some(line) = chunk.next_line().unwrap() {
black_box(line);
}
}
}
Expand Down
Loading

0 comments on commit 56e60a1

Please sign in to comment.