2023-08-29 00:11:11 +00:00
|
|
|
use std::{borrow::Cow, fmt::Write as _};
|
2022-03-28 20:58:35 +00:00
|
|
|
|
2023-07-17 01:38:12 +00:00
|
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
|
|
|
2022-03-28 20:58:35 +00:00
|
|
|
fn compare_quoters(c: &mut Criterion) {
|
|
|
|
let mut group = c.benchmark_group("Compare Quoters");
|
|
|
|
|
|
|
|
let quoter = actix_router::Quoter::new(b"", b"");
|
2023-08-29 00:11:11 +00:00
|
|
|
let path_quoted = (0..=0x7f).fold(String::new(), |mut buf, c| {
|
|
|
|
write!(&mut buf, "%{:02X}", c).unwrap();
|
|
|
|
buf
|
|
|
|
});
|
2022-03-28 20:58:35 +00:00
|
|
|
let path_unquoted = ('\u{00}'..='\u{7f}').collect::<String>();
|
|
|
|
|
|
|
|
group.bench_function("quoter_unquoted", |b| {
|
|
|
|
b.iter(|| {
|
|
|
|
for _ in 0..10 {
|
|
|
|
black_box(quoter.requote(path_unquoted.as_bytes()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group.bench_function("percent_encode_unquoted", |b| {
|
|
|
|
b.iter(|| {
|
|
|
|
for _ in 0..10 {
|
|
|
|
let decode = percent_encoding::percent_decode(path_unquoted.as_bytes());
|
|
|
|
black_box(Into::<Cow<'_, [u8]>>::into(decode));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group.bench_function("quoter_quoted", |b| {
|
|
|
|
b.iter(|| {
|
|
|
|
for _ in 0..10 {
|
|
|
|
black_box(quoter.requote(path_quoted.as_bytes()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group.bench_function("percent_encode_quoted", |b| {
|
|
|
|
b.iter(|| {
|
|
|
|
for _ in 0..10 {
|
|
|
|
let decode = percent_encoding::percent_decode(path_quoted.as_bytes());
|
|
|
|
black_box(Into::<Cow<'_, [u8]>>::into(decode));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
criterion_group!(benches, compare_quoters);
|
|
|
|
criterion_main!(benches);
|