5
5
//! * `src/bin/*.rs` are binaries
6
6
//! * `examples/*.rs` are examples
7
7
//! * `tests/*.rs` are integration tests
8
+ //! * `benches/*.rs` are benchmarks
8
9
//!
9
10
//! It is a bit tricky because we need match explicit information from `Cargo.toml`
10
11
//! with implicit info in directory layout.
@@ -218,8 +219,11 @@ fn clean_examples(toml_examples: Option<&Vec<TomlExampleTarget>>,
218
219
package_root : & Path ,
219
220
errors : & mut Vec < String > )
220
221
-> CargoResult < Vec < Target > > {
222
+
223
+ let inferred = infer_from_directory ( & package_root. join ( "examples" ) ) ;
224
+
221
225
let targets = clean_targets ( "example" , "example" ,
222
- toml_examples, inferred_examples ( package_root ) ,
226
+ toml_examples, inferred ,
223
227
package_root, errors) ?;
224
228
225
229
let mut result = Vec :: new ( ) ;
@@ -241,8 +245,11 @@ fn clean_examples(toml_examples: Option<&Vec<TomlExampleTarget>>,
241
245
fn clean_tests ( toml_tests : Option < & Vec < TomlTestTarget > > ,
242
246
package_root : & Path ,
243
247
errors : & mut Vec < String > ) -> CargoResult < Vec < Target > > {
248
+
249
+ let inferred = infer_from_directory ( & package_root. join ( "tests" ) ) ;
250
+
244
251
let targets = clean_targets ( "test" , "test" ,
245
- toml_tests, inferred_tests ( package_root ) ,
252
+ toml_tests, inferred ,
246
253
package_root, errors) ?;
247
254
248
255
let mut result = Vec :: new ( ) ;
@@ -272,8 +279,10 @@ fn clean_benches(toml_benches: Option<&Vec<TomlBenchTarget>>,
272
279
Some ( legacy_path)
273
280
} ;
274
281
282
+ let inferred = infer_from_directory ( & package_root. join ( "benches" ) ) ;
283
+
275
284
let targets = clean_targets_with_legacy_path ( "benchmark" , "bench" ,
276
- toml_benches, inferred_benches ( package_root ) ,
285
+ toml_benches, inferred ,
277
286
package_root,
278
287
errors,
279
288
& mut legacy_bench_path) ?;
@@ -359,41 +368,9 @@ fn inferred_bins(package_root: &Path, package_name: &str) -> Vec<(String, PathBu
359
368
}
360
369
result. extend ( infer_from_directory ( & package_root. join ( "src" ) . join ( "bin" ) ) ) ;
361
370
362
- if let Ok ( entries) = fs:: read_dir ( & package_root. join ( "src" ) . join ( "bin" ) ) {
363
- let multifile_bins = entries
364
- . filter_map ( |e| e. ok ( ) )
365
- . filter ( is_not_dotfile)
366
- . filter ( |e| match e. file_type ( ) {
367
- Ok ( t) if t. is_dir ( ) => true ,
368
- _ => false
369
- } )
370
- . filter_map ( |entry| {
371
- let dir = entry. path ( ) ;
372
- let main = dir. join ( "main.rs" ) ;
373
- let name = dir. file_name ( ) . and_then ( |n| n. to_str ( ) ) ;
374
- match ( main. exists ( ) , name) {
375
- ( true , Some ( name) ) => Some ( ( name. to_owned ( ) , main) ) ,
376
- _ => None
377
- }
378
- } ) ;
379
- result. extend ( multifile_bins) ;
380
- }
381
-
382
371
result
383
372
}
384
373
385
- fn inferred_examples ( package_root : & Path ) -> Vec < ( String , PathBuf ) > {
386
- infer_from_directory ( & package_root. join ( "examples" ) )
387
- }
388
-
389
- fn inferred_tests ( package_root : & Path ) -> Vec < ( String , PathBuf ) > {
390
- infer_from_directory ( & package_root. join ( "tests" ) )
391
- }
392
-
393
- fn inferred_benches ( package_root : & Path ) -> Vec < ( String , PathBuf ) > {
394
- infer_from_directory ( & package_root. join ( "benches" ) )
395
- }
396
-
397
374
fn infer_from_directory ( directory : & Path ) -> Vec < ( String , PathBuf ) > {
398
375
let entries = match fs:: read_dir ( directory) {
399
376
Err ( _) => return Vec :: new ( ) ,
@@ -403,15 +380,42 @@ fn infer_from_directory(directory: &Path) -> Vec<(String, PathBuf)> {
403
380
entries
404
381
. filter_map ( |e| e. ok ( ) )
405
382
. filter ( is_not_dotfile)
406
- . map ( |e| e. path ( ) )
407
- . filter ( |f| f. extension ( ) . and_then ( |s| s. to_str ( ) ) == Some ( "rs" ) )
408
- . filter_map ( |f| {
409
- f. file_stem ( ) . and_then ( |s| s. to_str ( ) )
410
- . map ( |s| ( s. to_owned ( ) , f. clone ( ) ) )
411
- } )
383
+ . filter_map ( infer_any)
412
384
. collect ( )
413
385
}
414
386
387
+
388
+ fn infer_any ( entry : DirEntry ) -> Option < ( String , PathBuf ) > {
389
+ if entry. path ( ) . extension ( ) . and_then ( |p| p. to_str ( ) ) == Some ( "rs" ) {
390
+ infer_file ( entry)
391
+ } else if entry. file_type ( ) . map ( |t| t. is_dir ( ) ) . ok ( ) == Some ( true ) {
392
+ infer_subdirectory ( entry)
393
+ } else {
394
+ None
395
+ }
396
+ }
397
+
398
+
399
+ fn infer_file ( entry : DirEntry ) -> Option < ( String , PathBuf ) > {
400
+ let path = entry. path ( ) ;
401
+ path
402
+ . file_stem ( )
403
+ . and_then ( |p| p. to_str ( ) )
404
+ . map ( |p| ( p. to_owned ( ) , path. clone ( ) ) )
405
+ }
406
+
407
+
408
+ fn infer_subdirectory ( entry : DirEntry ) -> Option < ( String , PathBuf ) > {
409
+ let path = entry. path ( ) ;
410
+ let main = path. join ( "main.rs" ) ;
411
+ let name = path. file_name ( ) . and_then ( |n| n. to_str ( ) ) ;
412
+ match ( name, main. exists ( ) ) {
413
+ ( Some ( name) , true ) => Some ( ( name. to_owned ( ) , main) ) ,
414
+ _ => None
415
+ }
416
+ }
417
+
418
+
415
419
fn is_not_dotfile ( entry : & DirEntry ) -> bool {
416
420
entry. file_name ( ) . to_str ( ) . map ( |s| s. starts_with ( '.' ) ) == Some ( false )
417
421
}
0 commit comments