@@ -18,7 +18,7 @@ use std::io::Write;
18
18
use std:: path:: { Path , PathBuf } ;
19
19
use std:: sync:: Arc ;
20
20
21
- use failure:: { bail , Error } ;
21
+ use failure:: Error ;
22
22
use lazycell:: LazyCell ;
23
23
use log:: debug;
24
24
use same_file:: is_same_file;
@@ -614,7 +614,6 @@ fn rustdoc<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>) -> CargoResult
614
614
rustdoc. arg ( "--crate-name" ) . arg ( & unit. target . crate_name ( ) ) ;
615
615
add_path_args ( bcx, unit, & mut rustdoc) ;
616
616
add_cap_lints ( bcx, unit, & mut rustdoc) ;
617
- add_color ( bcx, & mut rustdoc) ;
618
617
619
618
if unit. kind != Kind :: Host {
620
619
if let Some ( ref target) = bcx. build_config . requested_target {
@@ -635,7 +634,7 @@ fn rustdoc<'a, 'cfg>(cx: &mut Context<'a, 'cfg>, unit: &Unit<'a>) -> CargoResult
635
634
rustdoc. arg ( "--cfg" ) . arg ( & format ! ( "feature=\" {}\" " , feat) ) ;
636
635
}
637
636
638
- add_error_format ( cx, & mut rustdoc, false , false ) ?;
637
+ add_error_format_and_color ( cx, & mut rustdoc, false ) ?;
639
638
640
639
if let Some ( args) = bcx. extra_args_for ( unit) {
641
640
rustdoc. args ( args) ;
@@ -722,39 +721,20 @@ fn add_cap_lints(bcx: &BuildContext<'_, '_>, unit: &Unit<'_>, cmd: &mut ProcessB
722
721
}
723
722
}
724
723
725
- fn add_color ( bcx : & BuildContext < ' _ , ' _ > , cmd : & mut ProcessBuilder ) {
726
- let shell = bcx. config . shell ( ) ;
727
- let color = if shell. supports_color ( ) {
728
- "always"
729
- } else {
730
- "never"
731
- } ;
732
- cmd. args ( & [ "--color" , color] ) ;
733
- }
734
-
735
724
/// Add error-format flags to the command.
736
725
///
737
- /// This is rather convoluted right now. The general overview is:
738
- /// - If -Zcache-messages or `build.pipelining` is enabled, Cargo always uses
739
- /// JSON output. This has several benefits, such as being easier to parse,
740
- /// handles changing formats (for replaying cached messages), ensures
741
- /// atomic output (so messages aren't interleaved), etc.
742
- /// - `supports_termcolor` is a temporary flag. rustdoc does not yet support
743
- /// the `--json-rendered` flag, but it is intended to fix that soon.
744
- /// - `short` output is not yet supported for JSON output. We haven't yet
745
- /// decided how this problem will be resolved. Probably either adding
746
- /// "short" to the JSON output, or more ambitiously moving diagnostic
747
- /// rendering to an external library that Cargo can share with rustc.
726
+ /// This is somewhat odd right now, but the general overview is that if
727
+ /// `-Zcache-messages` or `pipelined` is enabled then Cargo always uses JSON
728
+ /// output. This has several benefits, such as being easier to parse, handles
729
+ /// changing formats (for replaying cached messages), ensures atomic output (so
730
+ /// messages aren't interleaved), etc.
748
731
///
749
- /// It is intended in the future that Cargo *always* uses the JSON output, and
750
- /// this function can be simplified. The above issues need to be resolved, the
751
- /// flags need to be stabilized, and we need more testing to ensure there
752
- /// aren't any regressions.
753
- fn add_error_format (
732
+ /// It is intended in the future that Cargo *always* uses the JSON output (by
733
+ /// turning on cache-messages by default), and this function can be simplified.
734
+ fn add_error_format_and_color (
754
735
cx : & Context < ' _ , ' _ > ,
755
736
cmd : & mut ProcessBuilder ,
756
737
pipelined : bool ,
757
- supports_termcolor : bool ,
758
738
) -> CargoResult < ( ) > {
759
739
// If this unit is producing a required rmeta file then we need to know
760
740
// when the rmeta file is ready so we can signal to the rest of Cargo that
@@ -769,26 +749,15 @@ fn add_error_format(
769
749
// internally understand that we should extract the `rendered` field and
770
750
// present it if we can.
771
751
if cx. bcx . build_config . cache_messages ( ) || pipelined {
772
- cmd. arg ( "--error-format=json" ) . arg ( "-Zunstable-options" ) ;
773
- if supports_termcolor {
774
- cmd. arg ( "--json-rendered=termcolor" ) ;
752
+ cmd. arg ( "--error-format=json" ) ;
753
+ let mut json = String :: from ( "--json=diagnostic-rendered-ansi" ) ;
754
+ if pipelined {
755
+ json. push_str ( ",artifacts" ) ;
775
756
}
776
757
if cx. bcx . build_config . message_format == MessageFormat :: Short {
777
- // FIXME(rust-lang/rust#60419): right now we have no way of
778
- // turning on JSON messages from the compiler and also asking
779
- // the rendered field to be in the `short` format.
780
- bail ! (
781
- "currently `--message-format short` is incompatible with {}" ,
782
- if pipelined {
783
- "pipelined compilation"
784
- } else {
785
- "cached output"
786
- }
787
- ) ;
788
- }
789
- if pipelined {
790
- cmd. arg ( "-Zemit-artifact-notifications" ) ;
758
+ json. push_str ( ",diagnostic-short" ) ;
791
759
}
760
+ cmd. arg ( json) ;
792
761
} else {
793
762
match cx. bcx . build_config . message_format {
794
763
MessageFormat :: Human => ( ) ,
@@ -799,6 +768,13 @@ fn add_error_format(
799
768
cmd. arg ( "--error-format" ) . arg ( "short" ) ;
800
769
}
801
770
}
771
+
772
+ let color = if cx. bcx . config . shell ( ) . supports_color ( ) {
773
+ "always"
774
+ } else {
775
+ "never"
776
+ } ;
777
+ cmd. args ( & [ "--color" , color] ) ;
802
778
}
803
779
Ok ( ( ) )
804
780
}
@@ -829,8 +805,7 @@ fn build_base_args<'a, 'cfg>(
829
805
cmd. arg ( "--crate-name" ) . arg ( & unit. target . crate_name ( ) ) ;
830
806
831
807
add_path_args ( bcx, unit, cmd) ;
832
- add_color ( bcx, cmd) ;
833
- add_error_format ( cx, cmd, cx. rmeta_required ( unit) , true ) ?;
808
+ add_error_format_and_color ( cx, cmd, cx. rmeta_required ( unit) ) ?;
834
809
835
810
if !test {
836
811
for crate_type in crate_types. iter ( ) {
@@ -1234,11 +1209,11 @@ fn on_stderr_line(
1234
1209
} else {
1235
1210
// Remove color information from the rendered string. rustc has not
1236
1211
// included color in the past, so to avoid breaking anything, strip it
1237
- // out when --json-rendered=termcolor is used. This runs
1212
+ // out when --json=diagnostic -rendered-ansi is used. This runs
1238
1213
// unconditionally under the assumption that Cargo will eventually
1239
1214
// move to this as the default mode. Perhaps in the future, cargo
1240
1215
// could allow the user to enable/disable color (such as with a
1241
- // `--json-rendered ` or `--color` or `--message-format` flag).
1216
+ // `--json` or `--color` or `--message-format` flag).
1242
1217
#[ derive( serde:: Deserialize , serde:: Serialize ) ]
1243
1218
struct CompilerMessage {
1244
1219
rendered : String ,
@@ -1304,10 +1279,8 @@ fn replay_output_cache(
1304
1279
) -> Work {
1305
1280
let target = target. clone ( ) ;
1306
1281
let extract_rendered_messages = match format {
1307
- MessageFormat :: Human => true ,
1282
+ MessageFormat :: Human | MessageFormat :: Short => true ,
1308
1283
MessageFormat :: Json => false ,
1309
- // FIXME: short not supported.
1310
- MessageFormat :: Short => false ,
1311
1284
} ;
1312
1285
let mut options = OutputOptions {
1313
1286
extract_rendered_messages,
0 commit comments