From 853db7431ad63fbf0fa58879dd179876d25e0997 Mon Sep 17 00:00:00 2001 From: fmdkdd Date: Fri, 16 Dec 2016 00:05:58 +0100 Subject: [PATCH 1/2] Fix `--message-format JSON` when rustc emits non-JSON warnings The `--message-format JSON` flag parses all the stderr output of rustc to JSON, but rustc can emit non-JSON lines to stderr (e.g., for warning about the unstable `-Z` flag on the stable channel), causing cargo to fail reporting compilation errors when using `--message-format JSON`. This commit adds a check to look for lines beginning with `{` to only parse these lines as JSON. Other lines from rustc are forwarded to the stderr of cargo. Fixes #3390. --- src/cargo/ops/cargo_rustc/mod.rs | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/src/cargo/ops/cargo_rustc/mod.rs b/src/cargo/ops/cargo_rustc/mod.rs index 6c59910537c..24f9deb0a80 100644 --- a/src/cargo/ops/cargo_rustc/mod.rs +++ b/src/cargo/ops/cargo_rustc/mod.rs @@ -2,6 +2,7 @@ use std::collections::{HashMap, HashSet}; use std::env; use std::ffi::{OsStr, OsString}; use std::fs; +use std::io::{self, Write}; use std::path::{self, PathBuf}; use std::sync::Arc; @@ -297,15 +298,22 @@ fn rustc(cx: &mut Context, unit: &Unit) -> CargoResult { Ok(()) }, &mut |line| { - let compiler_message = json::Json::from_str(line).map_err(|_| { - internal(&format!("compiler produced invalid json: `{}`", line)) - })?; - - machine_message::emit(machine_message::FromCompiler { - package_id: &package_id, - target: &target, - message: compiler_message, - }); + // stderr from rustc can have a mix of JSON and non-JSON output + if line.starts_with("{") { + // Handle JSON lines + let compiler_message = json::Json::from_str(line).map_err(|_| { + internal(&format!("compiler produced invalid json: `{}`", line)) + })?; + + machine_message::emit(machine_message::FromCompiler { + package_id: &package_id, + target: &target, + message: compiler_message, + }); + } else { + // Forward non-JSON to stderr + writeln!(io::stderr(), "{}", line)?; + } Ok(()) }, ).map(|_| ()) From 3e3250373277b0af4d8dc35181ebf76b9d9fb316 Mon Sep 17 00:00:00 2001 From: fmdkdd Date: Fri, 16 Dec 2016 14:16:37 +0100 Subject: [PATCH 2/2] Add a test for `--message-format` parsing the mixed output of rustc --- tests/build.rs | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/tests/build.rs b/tests/build.rs index e6ae434c5e7..7b19633b994 100644 --- a/tests/build.rs +++ b/tests/build.rs @@ -2470,6 +2470,55 @@ fn wrong_message_format_option() { r#"[ERROR] Could not match 'xml' with any of the allowed variants: ["Human", "Json"]"#)); } +#[test] +fn message_format_json_forward_stderr() { + if is_nightly() { return } + + let p = project("foo") + .file("Cargo.toml", &basic_bin_manifest("foo")) + .file("src/main.rs", "fn main() { let unused = 0; }"); + + assert_that(p.cargo_process("rustc").arg("--bin").arg("foo") + .arg("--message-format").arg("JSON").arg("--").arg("-Zno-trans"), + execs() + .with_stderr_contains("[WARNING] the option `Z` is unstable [..]") + .with_json(r#" + { + "reason":"compiler-message", + "package_id":"foo 0.5.0 ([..])", + "target":{"kind":["bin"],"name":"foo","src_path":"[..]"}, + "message":{ + "children":[],"code":null,"level":"warning","rendered":null, + "message":"unused variable: `unused`, #[warn(unused_variables)] on by default", + "spans":[{ + "byte_end":22,"byte_start":16,"column_end":23,"column_start":17,"expansion":null, + "file_name":"[..]","is_primary":true,"label":null,"line_end":1,"line_start":1, + "suggested_replacement":null, + "text":[{ + "highlight_end":23, + "highlight_start":17, + "text":"fn main() { let unused = 0; }" + }] + }] + } + } + + { + "reason":"compiler-artifact", + "package_id":"foo 0.5.0 ([..])", + "target":{"kind":["bin"],"name":"foo","src_path":"[..]"}, + "profile":{ + "debug_assertions":true, + "debuginfo":true, + "opt_level":"0", + "test":false + }, + "features":[], + "filenames":["[..]"] + } +"#)); +} + #[test] fn no_warn_about_package_metadata() { let p = project("foo")