@@ -29,7 +29,7 @@ use std::fmt::{self, Display, Write as _};
29
29
use std:: hash:: Hash ;
30
30
use std:: io:: { self , ErrorKind } ;
31
31
use std:: path:: { Path , PathBuf } ;
32
- use std:: process:: { Command , ExitStatus } ;
32
+ use std:: process:: { Command , ExitStatus , Stdio } ;
33
33
use std:: sync:: atomic:: { AtomicUsize , Ordering } ;
34
34
use std:: time:: Duration ;
35
35
use std:: { env, fs, thread} ;
@@ -348,7 +348,6 @@ impl Crate {
348
348
#[ allow( clippy:: too_many_arguments, clippy:: too_many_lines) ]
349
349
fn run_clippy_lints (
350
350
& self ,
351
- cargo_clippy_path : & Path ,
352
351
clippy_driver_path : & Path ,
353
352
target_dir_index : & AtomicUsize ,
354
353
total_crates_to_lint : usize ,
@@ -374,25 +373,17 @@ impl Crate {
374
373
) ;
375
374
}
376
375
377
- let cargo_clippy_path = fs:: canonicalize ( cargo_clippy_path) . unwrap ( ) ;
378
-
379
376
let shared_target_dir = clippy_project_root ( ) . join ( "target/lintcheck/shared_target_dir" ) ;
380
377
381
- let mut cargo_clippy_args = if config. fix {
382
- vec ! [ "--quiet" , "--fix" , "--" ]
383
- } else {
384
- vec ! [ "--quiet" , "--message-format=json" , "--" ]
385
- } ;
386
-
387
378
let cargo_home = env ! ( "CARGO_HOME" ) ;
388
379
389
380
// `src/lib.rs` -> `target/lintcheck/sources/crate-1.2.3/src/lib.rs`
390
381
let remap_relative = format ! ( "={}" , self . path. display( ) ) ;
391
382
// Fallback for other sources, `~/.cargo/...` -> `$CARGO_HOME/...`
392
383
let remap_cargo_home = format ! ( "{cargo_home}=$CARGO_HOME" ) ;
393
- // `~/.cargo/registry/src/github.com-1ecc6299db9ec823 /crate-2.3.4/src/lib.rs`
384
+ // `~/.cargo/registry/src/index.crates.io-6f17d22bba15001f /crate-2.3.4/src/lib.rs`
394
385
// -> `crate-2.3.4/src/lib.rs`
395
- let remap_crates_io = format ! ( "{cargo_home}/registry/src/github.com-1ecc6299db9ec823 /=" ) ;
386
+ let remap_crates_io = format ! ( "{cargo_home}/registry/src/index.crates.io-6f17d22bba15001f /=" ) ;
396
387
397
388
let mut clippy_args = vec ! [
398
389
"--remap-path-prefix" ,
@@ -418,23 +409,23 @@ impl Crate {
418
409
clippy_args. extend ( lint_filter. iter ( ) . map ( String :: as_str) ) ;
419
410
}
420
411
421
- if let Some ( server) = server {
422
- let target = shared_target_dir. join ( "recursive" ) ;
412
+ let mut cmd = Command :: new ( "cargo" ) ;
413
+ cmd. arg ( if config. fix { "fix" } else { "check" } )
414
+ . arg ( "--quiet" )
415
+ . current_dir ( & self . path )
416
+ . env ( "CLIPPY_ARGS" , clippy_args. join ( "__CLIPPY_HACKERY__" ) ) ;
423
417
418
+ if let Some ( server) = server {
424
419
// `cargo clippy` is a wrapper around `cargo check` that mainly sets `RUSTC_WORKSPACE_WRAPPER` to
425
420
// `clippy-driver`. We do the same thing here with a couple changes:
426
421
//
427
422
// `RUSTC_WRAPPER` is used instead of `RUSTC_WORKSPACE_WRAPPER` so that we can lint all crate
428
423
// dependencies rather than only workspace members
429
424
//
430
- // The wrapper is set to the `lintcheck` so we can force enable linting and ignore certain crates
425
+ // The wrapper is set to `lintcheck` itself so we can force enable linting and ignore certain crates
431
426
// (see `crate::driver`)
432
- let status = Command :: new ( env:: var ( "CARGO" ) . unwrap_or ( "cargo" . into ( ) ) )
433
- . arg ( "check" )
434
- . arg ( "--quiet" )
435
- . current_dir ( & self . path )
436
- . env ( "CLIPPY_ARGS" , clippy_args. join ( "__CLIPPY_HACKERY__" ) )
437
- . env ( "CARGO_TARGET_DIR" , target)
427
+ let status = cmd
428
+ . env ( "CARGO_TARGET_DIR" , shared_target_dir. join ( "recursive" ) )
438
429
. env ( "RUSTC_WRAPPER" , env:: current_exe ( ) . unwrap ( ) )
439
430
// Pass the absolute path so `crate::driver` can find `clippy-driver`, as it's executed in various
440
431
// different working directories
@@ -446,23 +437,19 @@ impl Crate {
446
437
assert_eq ! ( status. code( ) , Some ( 0 ) ) ;
447
438
448
439
return Vec :: new ( ) ;
449
- }
440
+ } ;
450
441
451
- cargo_clippy_args. extend ( clippy_args) ;
442
+ if !config. fix {
443
+ cmd. arg ( "--message-format=json" ) ;
444
+ }
452
445
453
- let all_output = Command :: new ( & cargo_clippy_path )
446
+ let all_output = cmd
454
447
// use the looping index to create individual target dirs
455
448
. env ( "CARGO_TARGET_DIR" , shared_target_dir. join ( format ! ( "_{thread_index:?}" ) ) )
456
- . args ( & cargo_clippy_args )
457
- . current_dir ( & self . path )
449
+ // Roughly equivalent to `cargo clippy`/`cargo clippy --fix`
450
+ . env ( "RUSTC_WORKSPACE_WRAPPER" , clippy_driver_path )
458
451
. output ( )
459
- . unwrap_or_else ( |error| {
460
- panic ! (
461
- "Encountered error:\n {error:?}\n cargo_clippy_path: {}\n crate path:{}\n " ,
462
- & cargo_clippy_path. display( ) ,
463
- & self . path. display( )
464
- ) ;
465
- } ) ;
452
+ . unwrap ( ) ;
466
453
let stdout = String :: from_utf8_lossy ( & all_output. stdout ) ;
467
454
let stderr = String :: from_utf8_lossy ( & all_output. stderr ) ;
468
455
let status = & all_output. status ;
@@ -509,15 +496,17 @@ impl Crate {
509
496
}
510
497
511
498
/// Builds clippy inside the repo to make sure we have a clippy executable we can use.
512
- fn build_clippy ( ) {
513
- let status = Command :: new ( env:: var ( "CARGO" ) . unwrap_or ( "cargo" . into ( ) ) )
514
- . arg ( "build" )
515
- . status ( )
516
- . expect ( "Failed to build clippy!" ) ;
517
- if !status. success ( ) {
499
+ fn build_clippy ( ) -> String {
500
+ let output = Command :: new ( "cargo" )
501
+ . args ( [ "run" , "--bin=clippy-driver" , "--" , "--version" ] )
502
+ . stderr ( Stdio :: inherit ( ) )
503
+ . output ( )
504
+ . unwrap ( ) ;
505
+ if !output. status . success ( ) {
518
506
eprintln ! ( "Error: Failed to compile Clippy!" ) ;
519
507
std:: process:: exit ( 1 ) ;
520
508
}
509
+ String :: from_utf8_lossy ( & output. stdout ) . into_owned ( )
521
510
}
522
511
523
512
/// Read a `lintcheck_crates.toml` file
@@ -633,26 +622,16 @@ fn main() {
633
622
634
623
#[ allow( clippy:: too_many_lines) ]
635
624
fn lintcheck ( config : LintcheckConfig ) {
636
- println ! ( "Compiling clippy..." ) ;
637
- build_clippy ( ) ;
638
- println ! ( "Done compiling" ) ;
639
-
640
- let cargo_clippy_path = fs:: canonicalize ( format ! ( "target/debug/cargo-clippy{EXE_SUFFIX}" ) ) . unwrap ( ) ;
625
+ let clippy_ver = build_clippy ( ) ;
641
626
let clippy_driver_path = fs:: canonicalize ( format ! ( "target/debug/clippy-driver{EXE_SUFFIX}" ) ) . unwrap ( ) ;
642
627
643
628
// assert that clippy is found
644
629
assert ! (
645
- cargo_clippy_path . is_file( ) ,
646
- "target/debug/cargo- clippy binary not found! {}" ,
647
- cargo_clippy_path . display( )
630
+ clippy_driver_path . is_file( ) ,
631
+ "target/debug/clippy-driver binary not found! {}" ,
632
+ clippy_driver_path . display( )
648
633
) ;
649
634
650
- let clippy_ver = Command :: new ( & cargo_clippy_path)
651
- . arg ( "--version" )
652
- . output ( )
653
- . map ( |o| String :: from_utf8_lossy ( & o. stdout ) . into_owned ( ) )
654
- . expect ( "could not get clippy version!" ) ;
655
-
656
635
// download and extract the crates, then run clippy on them and collect clippy's warnings
657
636
// flatten into one big list of warnings
658
637
@@ -715,7 +694,6 @@ fn lintcheck(config: LintcheckConfig) {
715
694
. par_iter ( )
716
695
. flat_map ( |krate| {
717
696
krate. run_clippy_lints (
718
- & cargo_clippy_path,
719
697
& clippy_driver_path,
720
698
& counter,
721
699
crates. len ( ) ,
@@ -914,7 +892,7 @@ fn lintcheck_test() {
914
892
"--crates-toml" ,
915
893
"lintcheck/test_sources.toml" ,
916
894
] ;
917
- let status = Command :: new ( env :: var ( "CARGO" ) . unwrap_or ( " cargo". into ( ) ) )
895
+ let status = Command :: new ( " cargo")
918
896
. args ( args)
919
897
. current_dir ( ".." ) // repo root
920
898
. status ( ) ;
0 commit comments