File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 6
6
sh jack-start.sh
7
7
sleep 2
8
8
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 &
10
13
echo $! > acourun.pid
11
14
sleep 2
12
15
Original file line number Diff line number Diff line change 1
1
use clap:: App ;
2
+ use std:: collections:: HashSet ;
2
3
use std:: io:: prelude:: * ;
3
4
use std:: { fs, io} ;
4
5
5
6
#[ derive( Clone ) ]
6
7
pub struct Config {
7
- pub excluded_wavs : Vec < std:: path:: PathBuf > ,
8
+ pub excluded_wavs : HashSet < std:: path:: PathBuf > ,
8
9
pub dirs : Vec < String > ,
9
10
pub cap_ms : Option < u32 > ,
10
11
}
@@ -33,7 +34,7 @@ pub fn make_config() -> Config {
33
34
Vec :: new ( )
34
35
} ;
35
36
36
- let mut excluded_wavs: Vec < std:: path:: PathBuf > = Vec :: new ( ) ;
37
+ let mut excluded_wavs: HashSet < std:: path:: PathBuf > = HashSet :: new ( ) ;
37
38
if let Some ( e) = matches. value_of ( "exclude" ) {
38
39
println ! ( "e:{}" , e) ;
39
40
let f = fs:: File :: open ( e) . ok ( ) . unwrap ( ) ;
@@ -42,7 +43,7 @@ pub fn make_config() -> Config {
42
43
let line = line. ok ( ) . unwrap ( ) ;
43
44
println ! ( "excluding {}" , line) ;
44
45
let path = std:: path:: Path :: new ( & line) ;
45
- excluded_wavs. push ( path. to_path_buf ( ) ) ;
46
+ excluded_wavs. insert ( path. to_path_buf ( ) ) ;
46
47
}
47
48
}
48
49
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ fn main() {
172
172
}
173
173
for d in cfg. dirs {
174
174
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 ( ) ) {
176
176
let p = path:: PathBuf :: from ( entry. path ( ) ) ;
177
177
dirs_tx. send ( p) ;
178
178
}
You can’t perform that action at this time.
0 commit comments