@@ -283,36 +283,10 @@ fn rustc<'a, 'cfg>(
283
283
& package_id,
284
284
& target,
285
285
mode,
286
- & mut |line| {
287
- if !line. is_empty ( ) {
288
- Err ( internal ( & format ! (
289
- "compiler stdout is not empty: `{}`" ,
290
- line
291
- ) ) )
292
- } else {
293
- Ok ( ( ) )
294
- }
295
- } ,
296
- & mut |line| {
297
- // stderr from rustc can have a mix of JSON and non-JSON output
298
- if line. starts_with ( '{' ) {
299
- // Handle JSON lines
300
- let compiler_message = serde_json:: from_str ( line) . map_err ( |_| {
301
- internal ( & format ! ( "compiler produced invalid json: `{}`" , line) )
302
- } ) ?;
303
-
304
- machine_message:: emit ( & machine_message:: FromCompiler {
305
- package_id : & package_id,
306
- target : & target,
307
- message : compiler_message,
308
- } ) ;
309
- } else {
310
- // Forward non-JSON to stderr
311
- writeln ! ( io:: stderr( ) , "{}" , line) ?;
312
- }
313
- Ok ( ( ) )
314
- } ,
315
- ) . map_err ( Internal :: new) . chain_err ( || format ! ( "Could not compile `{}`." , name) ) ?;
286
+ & mut assert_is_empty,
287
+ & mut |line| json_stderr ( line, & package_id, & target) ,
288
+ ) . map_err ( Internal :: new)
289
+ . chain_err ( || format ! ( "Could not compile `{}`." , name) ) ?;
316
290
} else if build_plan {
317
291
state. build_plan ( buildkey, rustc. clone ( ) , outputs. clone ( ) ) ;
318
292
} else {
@@ -631,6 +605,10 @@ fn rustdoc<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>) -> CargoResult
631
605
rustdoc. arg ( "--cfg" ) . arg ( & format ! ( "feature=\" {}\" " , feat) ) ;
632
606
}
633
607
608
+ if bcx. build_config . json_messages ( ) {
609
+ rustdoc. arg ( "--error-format" ) . arg ( "json" ) ;
610
+ }
611
+
634
612
if let Some ( ref args) = bcx. extra_args_for ( unit) {
635
613
rustdoc. args ( args) ;
636
614
}
@@ -642,6 +620,9 @@ fn rustdoc<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>) -> CargoResult
642
620
let name = unit. pkg . name ( ) . to_string ( ) ;
643
621
let build_state = cx. build_state . clone ( ) ;
644
622
let key = ( unit. pkg . package_id ( ) . clone ( ) , unit. kind ) ;
623
+ let json_messages = bcx. build_config . json_messages ( ) ;
624
+ let package_id = unit. pkg . package_id ( ) . clone ( ) ;
625
+ let target = unit. target . clone ( ) ;
645
626
646
627
let should_capture_output = cx. bcx . config . cli_unstable ( ) . compile_progress ;
647
628
@@ -656,7 +637,14 @@ fn rustdoc<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>) -> CargoResult
656
637
}
657
638
state. running ( & rustdoc) ;
658
639
659
- let exec_result = if should_capture_output {
640
+ let exec_result = if json_messages {
641
+ rustdoc
642
+ . exec_with_streaming (
643
+ & mut assert_is_empty,
644
+ & mut |line| json_stderr ( line, & package_id, & target) ,
645
+ false ,
646
+ ) . map ( drop)
647
+ } else if should_capture_output {
660
648
state. capture_output ( rustdoc, false ) . map ( drop)
661
649
} else {
662
650
rustdoc. exec ( )
@@ -999,3 +987,33 @@ impl Kind {
999
987
}
1000
988
}
1001
989
}
990
+
991
+ fn assert_is_empty ( line : & str ) -> CargoResult < ( ) > {
992
+ if !line. is_empty ( ) {
993
+ Err ( internal ( & format ! (
994
+ "compiler stdout is not empty: `{}`" ,
995
+ line
996
+ ) ) )
997
+ } else {
998
+ Ok ( ( ) )
999
+ }
1000
+ }
1001
+
1002
+ fn json_stderr ( line : & str , package_id : & PackageId , target : & Target ) -> CargoResult < ( ) > {
1003
+ // stderr from rustc/rustdoc can have a mix of JSON and non-JSON output
1004
+ if line. starts_with ( '{' ) {
1005
+ // Handle JSON lines
1006
+ let compiler_message = serde_json:: from_str ( line)
1007
+ . map_err ( |_| internal ( & format ! ( "compiler produced invalid json: `{}`" , line) ) ) ?;
1008
+
1009
+ machine_message:: emit ( & machine_message:: FromCompiler {
1010
+ package_id : package_id,
1011
+ target : target,
1012
+ message : compiler_message,
1013
+ } ) ;
1014
+ } else {
1015
+ // Forward non-JSON to stderr
1016
+ writeln ! ( io:: stderr( ) , "{}" , line) ?;
1017
+ }
1018
+ Ok ( ( ) )
1019
+ }
0 commit comments