@@ -13,8 +13,9 @@ use rustc_span::source_map::{FilePathMapping, SourceMap};
13
13
14
14
use crate :: emitter:: { Emitter , HumanReadableErrorType } ;
15
15
use crate :: registry:: Registry ;
16
- use crate :: { Applicability , DiagnosticId } ;
16
+ use crate :: DiagnosticId ;
17
17
use crate :: { CodeSuggestion , SubDiagnostic } ;
18
+ use rustc_lint_defs:: { Applicability , FutureBreakage } ;
18
19
19
20
use rustc_data_structures:: sync:: Lrc ;
20
21
use rustc_span:: hygiene:: ExpnData ;
@@ -131,6 +132,30 @@ impl Emitter for JsonEmitter {
131
132
}
132
133
}
133
134
135
+ fn emit_future_breakage_report ( & mut self , diags : Vec < ( FutureBreakage , crate :: Diagnostic ) > ) {
136
+ let data: Vec < FutureBreakageItem > = diags
137
+ . into_iter ( )
138
+ . map ( |( breakage, mut diag) | {
139
+ if diag. level == crate :: Level :: Allow {
140
+ diag. level = crate :: Level :: Warning ;
141
+ }
142
+ FutureBreakageItem {
143
+ future_breakage_date : breakage. date ,
144
+ diagnostic : Diagnostic :: from_errors_diagnostic ( & diag, self ) ,
145
+ }
146
+ } )
147
+ . collect ( ) ;
148
+ let result = if self . pretty {
149
+ writeln ! ( & mut self . dst, "{}" , as_pretty_json( & data) )
150
+ } else {
151
+ writeln ! ( & mut self . dst, "{}" , as_json( & data) )
152
+ }
153
+ . and_then ( |_| self . dst . flush ( ) ) ;
154
+ if let Err ( e) = result {
155
+ panic ! ( "failed to print future breakage report: {:?}" , e) ;
156
+ }
157
+ }
158
+
134
159
fn source_map ( & self ) -> Option < & Lrc < SourceMap > > {
135
160
Some ( & self . sm )
136
161
}
@@ -223,6 +248,12 @@ struct ArtifactNotification<'a> {
223
248
emit : & ' a str ,
224
249
}
225
250
251
+ #[ derive( Encodable ) ]
252
+ struct FutureBreakageItem {
253
+ future_breakage_date : Option < & ' static str > ,
254
+ diagnostic : Diagnostic ,
255
+ }
256
+
226
257
impl Diagnostic {
227
258
fn from_errors_diagnostic ( diag : & crate :: Diagnostic , je : & JsonEmitter ) -> Diagnostic {
228
259
let sugg = diag. suggestions . iter ( ) . map ( |sugg| Diagnostic {
@@ -432,7 +463,7 @@ impl DiagnosticCode {
432
463
s. map ( |s| {
433
464
let s = match s {
434
465
DiagnosticId :: Error ( s) => s,
435
- DiagnosticId :: Lint ( s ) => s ,
466
+ DiagnosticId :: Lint { name , has_future_breakage : _ } => name ,
436
467
} ;
437
468
let je_result =
438
469
je. registry . as_ref ( ) . map ( |registry| registry. try_find_description ( & s) ) . unwrap ( ) ;
0 commit comments