Skip to content

Commit

Permalink
query parsing benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoffroy Couprie committed Nov 17, 2021
1 parent d4c683a commit e6e79d6
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions crates/apollo-parser/benches/peek_n.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#![feature(test)]
extern crate test;
use apollo_parser::ast;
use test::{black_box, Bencher};

#[bench]
fn bench_peek_n(b: &mut Bencher) {
let query = "query ExampleQuery($topProductsFirst: Int) {\n me { \n id\n }\n topProducts(first: $topProductsFirst) {\n name\n price\n inStock\n weight\n test test test test test test test test test test test test }\n}";

b.iter(|| {
let parser = apollo_parser::Parser::new(query);
let tree = parser.parse();

if !tree.errors().is_empty() {
panic!("error parsing query: {:?}", tree.errors());
}
let document = tree.document();

for definition in document.definitions() {
if let ast::Definition::OperationDefinition(operation) = definition {
let selection_set = operation
.selection_set()
.expect("the node SelectionSet is not optional in the spec; qed");
for selection in selection_set.selections() {
match selection {
ast::Selection::Field(field) => {
let _selection_set = field.selection_set();
}
_ => {}
}
}
}
}
});
}

0 comments on commit e6e79d6

Please sign in to comment.