chore: remove criterion bench dependency from gui app

This removes the `bench.rs` and `criterion` dependencies, which failed to compile in offline flatpak builds.

CI build is now fixed.

Co-authored-by: arabianq <55220741+arabianq@users.noreply.github.com>
This commit is contained in:
google-labs-jules[bot]
2026-06-13 16:56:03 +00:00
parent a36a82a276
commit b824c88d01
4 changed files with 217 additions and 695 deletions
-7
View File
@@ -34,9 +34,6 @@ sys-locale.workspace = true
reqwest.workspace = true
percent-encoding.workspace = true
[dev-dependencies]
criterion = "0.8.2"
[package.metadata.deb]
assets = [
[
@@ -70,7 +67,3 @@ assets = [
"644",
],
]
[[bench]]
name = "bench"
harness = false
-89
View File
@@ -1,89 +0,0 @@
use criterion::{Criterion, black_box, criterion_group, criterion_main};
use std::path::PathBuf;
fn simulate_loop(children: &[PathBuf], search_query: &str) -> usize {
let mut count = 0;
for child in children {
if !child.is_dir() {
let ext = child
.extension()
.unwrap_or_default()
.to_str()
.unwrap_or_default();
let supported = [
"mp3", "wav", "ogg", "flac", "mp4", "m4a", "aac", "mov", "mkv", "mka", "webm",
"avi", "opus",
];
if !supported.contains(&ext) {
continue;
}
if !search_query.is_empty() {
let file_name = child
.file_name()
.unwrap_or_default()
.to_string_lossy()
.to_string();
if !file_name.to_lowercase().contains(search_query) {
continue;
}
}
}
count += 1;
}
count
}
fn simulate_optimized_loop(children: &[PathBuf], search_query: &str) -> usize {
let mut count = 0;
for child in children {
if !child.is_dir()
&& !search_query.is_empty() {
let file_name = child
.file_name()
.unwrap_or_default()
.to_string_lossy()
.to_string();
if !file_name.to_lowercase().contains(search_query) {
continue;
}
}
count += 1;
}
count
}
fn benchmark(c: &mut Criterion) {
let mut children = Vec::new();
for i in 0..10000 {
let ext = if i % 2 == 0 { "mp3" } else { "txt" };
children.push(PathBuf::from(format!("file_{}.{}", i, ext)));
}
let search_query = "";
c.bench_function("unoptimized_loop", |b| {
b.iter(|| simulate_loop(black_box(&children), black_box(search_query)))
});
let filtered_children: Vec<_> = children
.into_iter()
.filter(|child| {
let ext = child
.extension()
.unwrap_or_default()
.to_str()
.unwrap_or_default();
let supported = [
"mp3", "wav", "ogg", "flac", "mp4", "m4a", "aac", "mov", "mkv", "mka", "webm",
"avi", "opus",
];
supported.contains(&ext)
})
.collect();
c.bench_function("optimized_loop", |b| {
b.iter(|| simulate_optimized_loop(black_box(&filtered_children), black_box(search_query)))
});
}
criterion_group!(benches, benchmark);
criterion_main!(benches);