1
+ use crate :: utils:: { ClippyInfo , ErrAction , UpdateMode , panic_action, run_with_args_split, run_with_output} ;
1
2
use itertools:: Itertools ;
2
3
use rustc_lexer:: { TokenKind , tokenize} ;
3
- use shell_escape:: escape;
4
- use std:: ffi:: { OsStr , OsString } ;
5
4
use std:: ops:: ControlFlow ;
6
- use std:: path:: { Path , PathBuf } ;
5
+ use std:: path:: PathBuf ;
7
6
use std:: process:: { self , Command , Stdio } ;
8
7
use std:: { fs, io} ;
9
8
use walkdir:: WalkDir ;
10
9
11
10
pub enum Error {
12
- CommandFailed ( String , String ) ,
13
11
Io ( io:: Error ) ,
14
- RustfmtNotInstalled ,
15
- WalkDir ( walkdir:: Error ) ,
16
- IntellijSetupActive ,
17
12
Parse ( PathBuf , usize , String ) ,
18
13
CheckFailed ,
19
14
}
@@ -24,50 +19,22 @@ impl From<io::Error> for Error {
24
19
}
25
20
}
26
21
27
- impl From < walkdir:: Error > for Error {
28
- fn from ( error : walkdir:: Error ) -> Self {
29
- Self :: WalkDir ( error)
30
- }
31
- }
32
-
33
22
impl Error {
34
23
fn display ( & self ) {
35
24
match self {
36
25
Self :: CheckFailed => {
37
26
eprintln ! ( "Formatting check failed!\n Run `cargo dev fmt` to update." ) ;
38
27
} ,
39
- Self :: CommandFailed ( command, stderr) => {
40
- eprintln ! ( "error: command `{command}` failed!\n stderr: {stderr}" ) ;
41
- } ,
42
28
Self :: Io ( err) => {
43
29
eprintln ! ( "error: {err}" ) ;
44
30
} ,
45
- Self :: RustfmtNotInstalled => {
46
- eprintln ! ( "error: rustfmt nightly is not installed." ) ;
47
- } ,
48
- Self :: WalkDir ( err) => {
49
- eprintln ! ( "error: {err}" ) ;
50
- } ,
51
- Self :: IntellijSetupActive => {
52
- eprintln ! (
53
- "error: a local rustc repo is enabled as path dependency via `cargo dev setup intellij`.\n \
54
- Not formatting because that would format the local repo as well!\n \
55
- Please revert the changes to `Cargo.toml`s with `cargo dev remove intellij`."
56
- ) ;
57
- } ,
58
31
Self :: Parse ( path, line, msg) => {
59
32
eprintln ! ( "error parsing `{}:{line}`: {msg}" , path. display( ) ) ;
60
33
} ,
61
34
}
62
35
}
63
36
}
64
37
65
- struct FmtContext {
66
- check : bool ,
67
- verbose : bool ,
68
- rustfmt_path : String ,
69
- }
70
-
71
38
struct ClippyConf < ' a > {
72
39
name : & ' a str ,
73
40
attrs : & ' a str ,
@@ -257,155 +224,90 @@ fn fmt_conf(check: bool) -> Result<(), Error> {
257
224
Ok ( ( ) )
258
225
}
259
226
260
- fn run_rustfmt ( context : & FmtContext ) -> Result < ( ) , Error > {
261
- // if we added a local rustc repo as path dependency to clippy for rust analyzer, we do NOT want to
262
- // format because rustfmt would also format the entire rustc repo as it is a local
263
- // dependency
264
- if fs:: read_to_string ( "Cargo.toml" )
265
- . expect ( "Failed to read clippy Cargo.toml" )
266
- . contains ( "[target.'cfg(NOT_A_PLATFORM)'.dependencies]" )
267
- {
268
- return Err ( Error :: IntellijSetupActive ) ;
269
- }
270
-
271
- check_for_rustfmt ( context) ?;
227
+ fn run_rustfmt ( clippy : & ClippyInfo , update_mode : UpdateMode ) {
228
+ let mut rustfmt_path = String :: from_utf8 ( run_with_output (
229
+ "rustup which rustfmt" ,
230
+ Command :: new ( "rustup" ) . args ( [ "which" , "rustfmt" ] ) ,
231
+ ) )
232
+ . expect ( "invalid rustfmt path" ) ;
233
+ rustfmt_path. truncate ( rustfmt_path. trim_end ( ) . len ( ) ) ;
272
234
273
- cargo_fmt ( context, "." . as_ref ( ) ) ?;
274
- cargo_fmt ( context, "clippy_dev" . as_ref ( ) ) ?;
275
- cargo_fmt ( context, "rustc_tools_util" . as_ref ( ) ) ?;
276
- cargo_fmt ( context, "lintcheck" . as_ref ( ) ) ?;
235
+ // Start all format jobs first before waiting on the results.
236
+ let mut children = Vec :: with_capacity ( 16 ) ;
237
+ for & path in & [ "." , "clippy_dev" , "rustc_tools_util" , "lintcheck" ] {
238
+ let mut cmd = Command :: new ( "cargo" ) ;
239
+ if update_mode. is_check ( ) {
240
+ cmd. arg ( "--check" ) ;
241
+ }
242
+ match cmd
243
+ . current_dir ( clippy. path . join ( path) )
244
+ . arg ( "fmt" )
245
+ . stdout ( Stdio :: null ( ) )
246
+ . stdin ( Stdio :: null ( ) )
247
+ . stderr ( Stdio :: inherit ( ) )
248
+ . spawn ( )
249
+ {
250
+ Ok ( x) => children. push ( x) ,
251
+ Err ( ref e) => panic_action ( & e, ErrAction :: Run , "cargo fmt" . as_ref ( ) ) ,
252
+ }
253
+ }
277
254
278
- let chunks = WalkDir :: new ( "tests" )
279
- . into_iter ( )
280
- . filter_map ( |entry| {
281
- let entry = entry. expect ( "failed to find tests" ) ;
282
- let path = entry. path ( ) ;
283
- if path. extension ( ) != Some ( "rs" . as_ref ( ) )
284
- || path
285
- . components ( )
286
- . nth_back ( 1 )
287
- . is_some_and ( |c| c. as_os_str ( ) == "syntax-error-recovery" )
288
- || entry. file_name ( ) == "ice-3891.rs"
289
- {
290
- None
291
- } else {
292
- Some ( entry. into_path ( ) . into_os_string ( ) )
255
+ run_with_args_split (
256
+ || {
257
+ let mut cmd = Command :: new ( & rustfmt_path) ;
258
+ if update_mode. is_check ( ) {
259
+ cmd. arg ( "--check" ) ;
293
260
}
294
- } )
295
- . chunks ( 250 ) ;
261
+ // Inherit stderr https://github.com/rust-lang/rustfmt/issues/6543 is fixed.
262
+ cmd. stdout ( Stdio :: null ( ) ) . stdin ( Stdio :: null ( ) ) . stderr ( Stdio :: null ( ) ) ;
263
+ cmd
264
+ } ,
265
+ |cmd| match cmd. spawn ( ) {
266
+ Ok ( x) => children. push ( x) ,
267
+ Err ( ref e) => panic_action ( & e, ErrAction :: Run , "rustfmt" . as_ref ( ) ) ,
268
+ } ,
269
+ WalkDir :: new ( "tests" )
270
+ . into_iter ( )
271
+ . filter_entry ( |p| p. path ( ) . file_name ( ) . is_none_or ( |x| x != "skip_rustfmt" ) )
272
+ . filter_map ( |e| {
273
+ let e = e. expect ( "error reading `tests`" ) ;
274
+ e. path ( )
275
+ . as_os_str ( )
276
+ . as_encoded_bytes ( )
277
+ . ends_with ( b".rs" )
278
+ . then ( || e. into_path ( ) . into_os_string ( ) )
279
+ } ) ,
280
+ ) ;
296
281
297
- for chunk in & chunks {
298
- rustfmt ( context, chunk) ?;
282
+ for child in & mut children {
283
+ match child. wait ( ) {
284
+ Ok ( status) => match ( update_mode, status. exit_ok ( ) ) {
285
+ ( UpdateMode :: Check | UpdateMode :: Change , Ok ( ( ) ) ) => { } ,
286
+ ( UpdateMode :: Check , Err ( _) ) => {
287
+ eprintln ! ( "Formatting check failed!\n Run `cargo dev fmt` to update." ) ;
288
+ process:: exit ( 1 ) ;
289
+ } ,
290
+ ( UpdateMode :: Change , Err ( e) ) => panic_action ( & e, ErrAction :: Run , "cargo fmt" . as_ref ( ) ) ,
291
+ } ,
292
+ Err ( ref e) => panic_action ( e, ErrAction :: Run , "cargo fmt" . as_ref ( ) ) ,
293
+ }
299
294
}
300
- Ok ( ( ) )
301
295
}
302
296
303
297
// the "main" function of cargo dev fmt
304
- pub fn run ( check : bool , verbose : bool ) {
305
- let output = Command :: new ( "rustup" )
306
- . args ( [ "which" , "rustfmt" ] )
307
- . stderr ( Stdio :: inherit ( ) )
308
- . output ( )
309
- . expect ( "error running `rustup which rustfmt`" ) ;
310
- if !output. status . success ( ) {
311
- eprintln ! ( "`rustup which rustfmt` did not execute successfully" ) ;
312
- process:: exit ( 1 ) ;
298
+ pub fn run ( clippy : & ClippyInfo , update_mode : UpdateMode ) {
299
+ if clippy. has_intellij_hook {
300
+ eprintln ! (
301
+ "error: a local rustc repo is enabled as path dependency via `cargo dev setup intellij`.\n \
302
+ Not formatting because that would format the local repo as well!\n \
303
+ Please revert the changes to `Cargo.toml`s with `cargo dev remove intellij`."
304
+ ) ;
305
+ return ;
313
306
}
314
- let mut rustfmt_path = String :: from_utf8 ( output. stdout ) . expect ( "invalid rustfmt path" ) ;
315
- rustfmt_path. truncate ( rustfmt_path. trim_end ( ) . len ( ) ) ;
307
+ run_rustfmt ( clippy, update_mode) ;
316
308
317
- let context = FmtContext {
318
- check,
319
- verbose,
320
- rustfmt_path,
321
- } ;
322
- if let Err ( e) = run_rustfmt ( & context) . and_then ( |( ) | fmt_conf ( check) ) {
309
+ if let Err ( e) = fmt_conf ( update_mode. is_check ( ) ) {
323
310
e. display ( ) ;
324
311
process:: exit ( 1 ) ;
325
312
}
326
313
}
327
-
328
- fn format_command ( program : impl AsRef < OsStr > , dir : impl AsRef < Path > , args : & [ impl AsRef < OsStr > ] ) -> String {
329
- let arg_display: Vec < _ > = args. iter ( ) . map ( |a| escape ( a. as_ref ( ) . to_string_lossy ( ) ) ) . collect ( ) ;
330
-
331
- format ! (
332
- "cd {} && {} {}" ,
333
- escape( dir. as_ref( ) . to_string_lossy( ) ) ,
334
- escape( program. as_ref( ) . to_string_lossy( ) ) ,
335
- arg_display. join( " " )
336
- )
337
- }
338
-
339
- fn exec_fmt_command (
340
- context : & FmtContext ,
341
- program : impl AsRef < OsStr > ,
342
- dir : impl AsRef < Path > ,
343
- args : & [ impl AsRef < OsStr > ] ,
344
- ) -> Result < ( ) , Error > {
345
- if context. verbose {
346
- println ! ( "{}" , format_command( & program, & dir, args) ) ;
347
- }
348
-
349
- let output = Command :: new ( & program)
350
- . env ( "RUSTFMT" , & context. rustfmt_path )
351
- . current_dir ( & dir)
352
- . args ( args. iter ( ) )
353
- . output ( )
354
- . unwrap ( ) ;
355
- let success = output. status . success ( ) ;
356
-
357
- match ( context. check , success) {
358
- ( _, true ) => Ok ( ( ) ) ,
359
- ( true , false ) => Err ( Error :: CheckFailed ) ,
360
- ( false , false ) => {
361
- let stderr = std:: str:: from_utf8 ( & output. stderr ) . unwrap_or ( "" ) ;
362
- Err ( Error :: CommandFailed (
363
- format_command ( & program, & dir, args) ,
364
- String :: from ( stderr) ,
365
- ) )
366
- } ,
367
- }
368
- }
369
-
370
- fn cargo_fmt ( context : & FmtContext , path : & Path ) -> Result < ( ) , Error > {
371
- let mut args = vec ! [ "fmt" , "--all" ] ;
372
- if context. check {
373
- args. push ( "--check" ) ;
374
- }
375
- exec_fmt_command ( context, "cargo" , path, & args)
376
- }
377
-
378
- fn check_for_rustfmt ( context : & FmtContext ) -> Result < ( ) , Error > {
379
- let program = "rustfmt" ;
380
- let dir = std:: env:: current_dir ( ) ?;
381
- let args = & [ "--version" ] ;
382
-
383
- if context. verbose {
384
- println ! ( "{}" , format_command( program, & dir, args) ) ;
385
- }
386
-
387
- let output = Command :: new ( program) . current_dir ( & dir) . args ( args. iter ( ) ) . output ( ) ?;
388
-
389
- if output. status . success ( ) {
390
- Ok ( ( ) )
391
- } else if std:: str:: from_utf8 ( & output. stderr )
392
- . unwrap_or ( "" )
393
- . starts_with ( "error: 'rustfmt' is not installed" )
394
- {
395
- Err ( Error :: RustfmtNotInstalled )
396
- } else {
397
- Err ( Error :: CommandFailed (
398
- format_command ( program, & dir, args) ,
399
- std:: str:: from_utf8 ( & output. stderr ) . unwrap_or ( "" ) . to_string ( ) ,
400
- ) )
401
- }
402
- }
403
-
404
- fn rustfmt ( context : & FmtContext , paths : impl Iterator < Item = OsString > ) -> Result < ( ) , Error > {
405
- let mut args = Vec :: new ( ) ;
406
- if context. check {
407
- args. push ( OsString :: from ( "--check" ) ) ;
408
- }
409
- args. extend ( paths) ;
410
- exec_fmt_command ( context, & context. rustfmt_path , std:: env:: current_dir ( ) ?, & args)
411
- }
0 commit comments