mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
Co-authored-by: link2xt <link2xt@testrun.org> Co-authored-by: iequidoo <117991069+iequidoo@users.noreply.github.com>
35 lines
1.2 KiB
Rust
35 lines
1.2 KiB
Rust
#![recursion_limit = "256"]
|
|
use std::path::Path;
|
|
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
use deltachat::chatlist::Chatlist;
|
|
use deltachat::context::Context;
|
|
use deltachat::stock_str::StockStrings;
|
|
use deltachat::Events;
|
|
|
|
async fn get_chat_list_benchmark(context: &Context) {
|
|
Chatlist::try_load(context, 0, None, None).await.unwrap();
|
|
}
|
|
|
|
fn criterion_benchmark(c: &mut Criterion) {
|
|
// To enable this benchmark, set `DELTACHAT_BENCHMARK_DATABASE` to some large database with many
|
|
// messages, such as your primary account.
|
|
if let Ok(path) = std::env::var("DELTACHAT_BENCHMARK_DATABASE") {
|
|
let rt = tokio::runtime::Runtime::new().unwrap();
|
|
let context = rt.block_on(async {
|
|
Context::new(Path::new(&path), 100, Events::new(), StockStrings::new())
|
|
.await
|
|
.unwrap()
|
|
});
|
|
c.bench_function("chatlist:try_load (Get Chatlist)", |b| {
|
|
b.to_async(&rt)
|
|
.iter(|| get_chat_list_benchmark(black_box(&context)))
|
|
});
|
|
} else {
|
|
println!("env var not set: DELTACHAT_BENCHMARK_DATABASE");
|
|
}
|
|
}
|
|
|
|
criterion_group!(benches, criterion_benchmark);
|
|
criterion_main!(benches);
|