Skip to content

Commit 796ac9c

Browse files
committed
Use HashSet for larger exclusion lists
1 parent ddd7980 commit 796ac9c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

all-start.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ cd "$d"
66
sh jack-start.sh
77
sleep 2
88

9-
cargo run -- -c 70000 ~/samples-ecashin-orig/Zoom-H5 > acourun.log 2>&1 &
9+
cargo run -- \
10+
--exclude excluded.txt \
11+
-c 70000 \
12+
~/samples-ecashin-orig/Zoom-H5 > acourun.log 2>&1 &
1013
echo $! > acourun.pid
1114
sleep 2
1215

src/config.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
use clap::App;
2+
use std::collections::HashSet;
23
use std::io::prelude::*;
34
use std::{fs, io};
45

56
#[derive(Clone)]
67
pub struct Config {
7-
pub excluded_wavs: Vec<std::path::PathBuf>,
8+
pub excluded_wavs: HashSet<std::path::PathBuf>,
89
pub dirs: Vec<String>,
910
pub cap_ms: Option<u32>,
1011
}
@@ -33,7 +34,7 @@ pub fn make_config() -> Config {
3334
Vec::new()
3435
};
3536

36-
let mut excluded_wavs: Vec<std::path::PathBuf> = Vec::new();
37+
let mut excluded_wavs: HashSet<std::path::PathBuf> = HashSet::new();
3738
if let Some(e) = matches.value_of("exclude") {
3839
println!("e:{}", e);
3940
let f = fs::File::open(e).ok().unwrap();
@@ -42,7 +43,7 @@ pub fn make_config() -> Config {
4243
let line = line.ok().unwrap();
4344
println!("excluding {}", line);
4445
let path = std::path::Path::new(&line);
45-
excluded_wavs.push(path.to_path_buf());
46+
excluded_wavs.insert(path.to_path_buf());
4647
}
4748
}
4849

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ fn main() {
172172
}
173173
for d in cfg.dirs {
174174
for entry in WalkDir::new(d).into_iter().filter_map(|e| e.ok()) {
175-
if !cfg.excluded_wavs.iter().any(|i| i == entry.path()) {
175+
if !cfg.excluded_wavs.contains(entry.path()) {
176176
let p = path::PathBuf::from(entry.path());
177177
dirs_tx.send(p);
178178
}

0 commit comments

Comments
 (0)