mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-12 20:16:49 +00:00
Implement JSON error emission
[breaking-change] syntax::errors::Handler::new has been renamed to with_tty_emitter Many functions which used to take a syntax::errors::ColorConfig, now take a rustc::session::config::ErrorOutputType. If you previously used ColorConfig::Auto as a default, you should now use ErrorOutputType::default().
This commit is contained in:
parent
fd46c78f8f
commit
b976d9e666
@ -940,8 +940,8 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
|
||||
None => ErrorOutputType::default(),
|
||||
|
||||
Some(arg) => {
|
||||
early_error(ErrorOutputType::default(), &format!("argument for --output must be tty or \
|
||||
json (instead was `{}`)",
|
||||
early_error(ErrorOutputType::default(), &format!("argument for --output must be \
|
||||
tty or json (instead was `{}`)",
|
||||
arg))
|
||||
}
|
||||
}
|
||||
|
@ -9,45 +9,225 @@
|
||||
// except according to those terms.
|
||||
|
||||
//! A JSON emitter for errors.
|
||||
//!
|
||||
//! This works by converting errors to a simplified structural format (see the
|
||||
//! structs at the start of the file) and then serialising them. These should
|
||||
//! contain as much information about the error as possible.
|
||||
//!
|
||||
//! The format of the JSON output should be considered *unstable*. For now the
|
||||
//! structs at the end of this file (Diagnostic*) specify the error format.
|
||||
|
||||
// FIXME spec the JSON output properly.
|
||||
|
||||
|
||||
use codemap::{Span, CodeMap};
|
||||
use diagnostics::registry::Registry;
|
||||
use errors::{Level, DiagnosticBuilder, RenderSpan};
|
||||
use errors::{Level, DiagnosticBuilder, SubDiagnostic, RenderSpan};
|
||||
use errors::emitter::Emitter;
|
||||
|
||||
use std::rc::Rc;
|
||||
use std::io::{self, Write};
|
||||
|
||||
use rustc_serialize::json::as_json;
|
||||
|
||||
pub struct JsonEmitter {
|
||||
todo: i32
|
||||
dst: Box<Write + Send>,
|
||||
registry: Option<Registry>,
|
||||
cm: Rc<CodeMap>,
|
||||
}
|
||||
|
||||
impl JsonEmitter {
|
||||
pub fn basic() -> JsonEmitter {
|
||||
JsonEmitter {
|
||||
todo: 42,
|
||||
}
|
||||
JsonEmitter::stderr(None, Rc::new(CodeMap::new()))
|
||||
}
|
||||
|
||||
pub fn stderr(registry: Option<Registry>,
|
||||
code_map: Rc<CodeMap>) -> JsonEmitter {
|
||||
JsonEmitter {
|
||||
todo: 42,
|
||||
dst: Box::new(io::stderr()),
|
||||
registry: registry,
|
||||
cm: code_map,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Emitter for JsonEmitter {
|
||||
fn emit(&mut self, span: Option<Span>, msg: &str, code: Option<&str>, lvl: Level) {
|
||||
unimplemented!();
|
||||
|
||||
fn emit(&mut self, span: Option<Span>, msg: &str, code: Option<&str>, level: Level) {
|
||||
let data = Diagnostic::new(span, msg, code, level, self);
|
||||
if let Err(e) = writeln!(&mut self.dst, "{}", as_json(&data)) {
|
||||
panic!("failed to print diagnostics: {:?}", e);
|
||||
}
|
||||
}
|
||||
|
||||
fn custom_emit(&mut self, sp: RenderSpan, msg: &str, lvl: Level) {
|
||||
unimplemented!();
|
||||
|
||||
fn custom_emit(&mut self, sp: RenderSpan, msg: &str, level: Level) {
|
||||
let data = Diagnostic::from_render_span(&sp, msg, level, self);
|
||||
if let Err(e) = writeln!(&mut self.dst, "{}", as_json(&data)) {
|
||||
panic!("failed to print diagnostics: {:?}", e);
|
||||
}
|
||||
}
|
||||
|
||||
fn emit_struct(&mut self, db: &DiagnosticBuilder) {
|
||||
unimplemented!();
|
||||
let data = Diagnostic::from_diagnostic_builder(db, self);
|
||||
if let Err(e) = writeln!(&mut self.dst, "{}", as_json(&data)) {
|
||||
panic!("failed to print diagnostics: {:?}", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The following data types are provided just for serialisation.
|
||||
|
||||
#[derive(RustcEncodable)]
|
||||
struct Diagnostic<'a> {
|
||||
/// The primary error message.
|
||||
message: &'a str,
|
||||
code: Option<DiagnosticCode>,
|
||||
/// "error: internal compiler error", "error", "warning", "note", "help".
|
||||
level: &'static str,
|
||||
span: Option<DiagnosticSpan>,
|
||||
/// Assocaited diagnostic messages.
|
||||
children: Vec<Diagnostic<'a>>,
|
||||
}
|
||||
|
||||
#[derive(RustcEncodable)]
|
||||
struct DiagnosticSpan {
|
||||
file_name: String,
|
||||
byte_start: u32,
|
||||
byte_end: u32,
|
||||
/// 1-based.
|
||||
line_start: usize,
|
||||
line_end: usize,
|
||||
/// 1-based, character offset.
|
||||
column_start: usize,
|
||||
column_end: usize,
|
||||
}
|
||||
|
||||
#[derive(RustcEncodable)]
|
||||
struct DiagnosticCode {
|
||||
/// The code itself.
|
||||
code: String,
|
||||
/// An explanation for the code.
|
||||
explanation: Option<&'static str>,
|
||||
}
|
||||
|
||||
impl<'a> Diagnostic<'a> {
|
||||
fn new(span: Option<Span>,
|
||||
msg: &'a str,
|
||||
code: Option<&str>,
|
||||
level: Level,
|
||||
je: &JsonEmitter)
|
||||
-> Diagnostic<'a> {
|
||||
Diagnostic {
|
||||
message: msg,
|
||||
code: DiagnosticCode::map_opt_string(code.map(|c| c.to_owned()), je),
|
||||
level: level.to_str(),
|
||||
span: span.map(|sp| DiagnosticSpan::from_span(sp, je)),
|
||||
children: vec![],
|
||||
}
|
||||
}
|
||||
|
||||
fn from_render_span(span: &RenderSpan,
|
||||
msg: &'a str,
|
||||
level: Level,
|
||||
je: &JsonEmitter)
|
||||
-> Diagnostic<'a> {
|
||||
Diagnostic {
|
||||
msg: msg,
|
||||
code: None,
|
||||
level: level.to_str(),
|
||||
span: Some(DiagnosticSpan::from_render_span(span, je)),
|
||||
children: vec![],
|
||||
}
|
||||
}
|
||||
|
||||
fn from_diagnostic_builder<'c>(db: &'c DiagnosticBuilder,
|
||||
je: &JsonEmitter)
|
||||
-> Diagnostic<'c> {
|
||||
Diagnostic {
|
||||
message: &db.message,
|
||||
code: DiagnosticCode::map_opt_string(db.code.clone(), je),
|
||||
level: db.level.to_str(),
|
||||
span: db.span.map(|sp| DiagnosticSpan::from_span(sp, je)),
|
||||
children: db.children.iter().map(|c| {
|
||||
Diagnostic::from_sub_diagnostic(c, je)
|
||||
}).collect(),
|
||||
}
|
||||
}
|
||||
|
||||
fn from_sub_diagnostic<'c>(db: &'c SubDiagnostic, je: &JsonEmitter) -> Diagnostic<'c> {
|
||||
Diagnostic {
|
||||
message: &db.message,
|
||||
code: None,
|
||||
level: db.level.to_str(),
|
||||
span: db.render_span.as_ref()
|
||||
.map(|sp| DiagnosticSpan::from_render_span(sp, je))
|
||||
.or_else(|| db.span.map(|sp| DiagnosticSpan::from_span(sp, je))),
|
||||
children: vec![],
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl DiagnosticSpan {
|
||||
fn from_span(span: Span, je: &JsonEmitter) -> DiagnosticSpan {
|
||||
let start = je.cm.lookup_char_pos(span.lo);
|
||||
let end = je.cm.lookup_char_pos(span.hi);
|
||||
DiagnosticSpan {
|
||||
file_name: start.file.name.clone(),
|
||||
byte_start: span.lo.0,
|
||||
byte_end: span.hi.0,
|
||||
line_start: start.line,
|
||||
line_end: end.line,
|
||||
column_start: start.col.0 + 1,
|
||||
column_end: end.col.0 + 1,
|
||||
}
|
||||
}
|
||||
|
||||
fn from_render_span(span: &RenderSpan, je: &JsonEmitter) -> DiagnosticSpan {
|
||||
match *span {
|
||||
// FIXME(#30701) handle Suggestion properly
|
||||
RenderSpan::FullSpan(sp) | RenderSpan::Suggestion(sp, _) => {
|
||||
DiagnosticSpan::from_span(sp, je)
|
||||
}
|
||||
RenderSpan::EndSpan(span) => {
|
||||
let end = je.cm.lookup_char_pos(span.hi);
|
||||
DiagnosticSpan {
|
||||
file_name: end.file.name.clone(),
|
||||
byte_start: span.lo.0,
|
||||
byte_end: span.hi.0,
|
||||
line_start: 0,
|
||||
line_end: end.line,
|
||||
column_start: 0,
|
||||
column_end: end.col.0 + 1,
|
||||
}
|
||||
}
|
||||
RenderSpan::FileLine(span) => {
|
||||
let start = je.cm.lookup_char_pos(span.lo);
|
||||
let end = je.cm.lookup_char_pos(span.hi);
|
||||
DiagnosticSpan {
|
||||
file_name: start.file.name.clone(),
|
||||
byte_start: span.lo.0,
|
||||
byte_end: span.hi.0,
|
||||
line_start: start.line,
|
||||
line_end: end.line,
|
||||
column_start: 0,
|
||||
column_end: 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl DiagnosticCode {
|
||||
fn map_opt_string(s: Option<String>, je: &JsonEmitter) -> Option<DiagnosticCode> {
|
||||
s.map(|s| {
|
||||
|
||||
let explanation = je.registry
|
||||
.as_ref()
|
||||
.and_then(|registry| registry.find_description(&s));
|
||||
|
||||
DiagnosticCode {
|
||||
code: s,
|
||||
explanation: explanation,
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -276,13 +276,12 @@ pub struct Handler {
|
||||
}
|
||||
|
||||
impl Handler {
|
||||
// TODO remove
|
||||
pub fn new(color_config: ColorConfig,
|
||||
registry: Option<diagnostics::registry::Registry>,
|
||||
can_emit_warnings: bool,
|
||||
treat_err_as_bug: bool,
|
||||
cm: Rc<codemap::CodeMap>)
|
||||
-> Handler {
|
||||
pub fn with_tty_emitter(color_config: ColorConfig,
|
||||
registry: Option<diagnostics::registry::Registry>,
|
||||
can_emit_warnings: bool,
|
||||
treat_err_as_bug: bool,
|
||||
cm: Rc<codemap::CodeMap>)
|
||||
-> Handler {
|
||||
let emitter = Box::new(EmitterWriter::stderr(color_config, registry, cm));
|
||||
Handler::with_emitter(can_emit_warnings, treat_err_as_bug, emitter)
|
||||
}
|
||||
@ -549,14 +548,7 @@ impl fmt::Display for Level {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
use std::fmt::Display;
|
||||
|
||||
match *self {
|
||||
Bug => "error: internal compiler error".fmt(f),
|
||||
Fatal | Error => "error".fmt(f),
|
||||
Warning => "warning".fmt(f),
|
||||
Note => "note".fmt(f),
|
||||
Help => "help".fmt(f),
|
||||
Cancelled => unreachable!(),
|
||||
}
|
||||
self.to_str().fmt(f)
|
||||
}
|
||||
}
|
||||
|
||||
@ -570,6 +562,17 @@ impl Level {
|
||||
Cancelled => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
fn to_str(self) -> &'static str {
|
||||
match self {
|
||||
Bug => "error: internal compiler error",
|
||||
Fatal | Error => "error",
|
||||
Warning => "warning",
|
||||
Note => "note",
|
||||
Help => "help",
|
||||
Cancelled => panic!("Shouldn't call on cancelled error"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn expect<T, M>(diag: &Handler, opt: Option<T>, msg: M) -> T where
|
||||
|
@ -49,7 +49,7 @@ pub struct ParseSess {
|
||||
impl ParseSess {
|
||||
pub fn new() -> ParseSess {
|
||||
let cm = Rc::new(CodeMap::new());
|
||||
let handler = Handler::new(ColorConfig::Auto, None, true, false, cm.clone());
|
||||
let handler = Handler::with_tty_emitter(ColorConfig::Auto, None, true, false, cm.clone());
|
||||
ParseSess::with_span_handler(handler, cm)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user