]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_errors/src/emitter.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_errors / src / emitter.rs
CommitLineData
dc9dc135
XL
1//! The current rustc diagnostics emitter.
2//!
3//! An `Emitter` takes care of generating the output from a `DiagnosticBuilder` struct.
4//!
5//! There are various `Emitter` implementations that generate different output formats such as
6//! JSON and human readable output.
7//!
ba9703b0 8//! The output types are defined in `rustc_session::config::ErrorOutputType`.
dc9dc135 9
9fa01778 10use Destination::*;
1a4d82fc 11
dfeec247
XL
12use rustc_span::source_map::SourceMap;
13use rustc_span::{MultiSpan, SourceFile, Span};
223e47cc 14
60c5eb7d
XL
15use crate::snippet::{Annotation, AnnotationType, Line, MultilineAnnotation, Style, StyledString};
16use crate::styled_buffer::StyledBuffer;
94222f64 17use crate::{
3c0e092e 18 CodeSuggestion, Diagnostic, DiagnosticId, Handler, Level, SubDiagnostic, SubstitutionHighlight,
94222f64
XL
19 SuggestionStyle,
20};
29967ef6
XL
21
22use rustc_lint_defs::pluralize;
9cc50fc6 23
b7449926 24use rustc_data_structures::fx::FxHashMap;
0531ce1d 25use rustc_data_structures::sync::Lrc;
dfeec247 26use rustc_span::hygiene::{ExpnKind, MacroKind};
041b39d2 27use std::borrow::Cow;
60c5eb7d 28use std::cmp::{max, min, Reverse};
c34b1796 29use std::io;
60c5eb7d 30use std::io::prelude::*;
74b04a01 31use std::iter;
48663c56 32use std::path::Path;
60c5eb7d
XL
33use termcolor::{Ansi, BufferWriter, ColorChoice, ColorSpec, StandardStream};
34use termcolor::{Buffer, Color, WriteColor};
3dfed10e 35use tracing::*;
1a4d82fc 36
f035d41b
XL
37/// Default column width, used in tests and when terminal dimensions cannot be determined.
38const DEFAULT_COLUMN_WIDTH: usize = 140;
39
48663c56
XL
40/// Describes the way the content of the `rendered` field of the json output is generated
41#[derive(Clone, Copy, Debug, PartialEq, Eq)]
42pub enum HumanReadableErrorType {
43 Default(ColorConfig),
dc9dc135 44 AnnotateSnippet(ColorConfig),
48663c56
XL
45 Short(ColorConfig),
46}
47
48impl HumanReadableErrorType {
49 /// Returns a (`short`, `color`) tuple
50 pub fn unzip(self) -> (bool, ColorConfig) {
51 match self {
52 HumanReadableErrorType::Default(cc) => (false, cc),
53 HumanReadableErrorType::Short(cc) => (true, cc),
dc9dc135 54 HumanReadableErrorType::AnnotateSnippet(cc) => (false, cc),
48663c56
XL
55 }
56 }
57 pub fn new_emitter(
58 self,
59 dst: Box<dyn Write + Send>,
60c5eb7d 60 source_map: Option<Lrc<SourceMap>>,
48663c56 61 teach: bool,
e1599b0c 62 terminal_width: Option<usize>,
74b04a01 63 macro_backtrace: bool,
48663c56
XL
64 ) -> EmitterWriter {
65 let (short, color_config) = self.unzip();
e1599b0c 66 let color = color_config.suggests_using_colors();
74b04a01 67 EmitterWriter::new(dst, source_map, short, teach, color, terminal_width, macro_backtrace)
e1599b0c
XL
68 }
69}
70
71#[derive(Clone, Copy, Debug)]
72struct Margin {
73 /// The available whitespace in the left that can be consumed when centering.
74 pub whitespace_left: usize,
75 /// The column of the beginning of left-most span.
76 pub span_left: usize,
77 /// The column of the end of right-most span.
78 pub span_right: usize,
79 /// The beginning of the line to be displayed.
80 pub computed_left: usize,
81 /// The end of the line to be displayed.
82 pub computed_right: usize,
f035d41b
XL
83 /// The current width of the terminal. Uses value of `DEFAULT_COLUMN_WIDTH` constant by default
84 /// and in tests.
e1599b0c
XL
85 pub column_width: usize,
86 /// The end column of a span label, including the span. Doesn't account for labels not in the
87 /// same line as the span.
88 pub label_right: usize,
89}
90
91impl Margin {
92 fn new(
93 whitespace_left: usize,
94 span_left: usize,
95 span_right: usize,
96 label_right: usize,
97 column_width: usize,
98 max_line_len: usize,
99 ) -> Self {
100 // The 6 is padding to give a bit of room for `...` when displaying:
101 // ```
102 // error: message
103 // --> file.rs:16:58
104 // |
105 // 16 | ... fn foo(self) -> Self::Bar {
106 // | ^^^^^^^^^
107 // ```
108
109 let mut m = Margin {
e74abb32
XL
110 whitespace_left: whitespace_left.saturating_sub(6),
111 span_left: span_left.saturating_sub(6),
e1599b0c
XL
112 span_right: span_right + 6,
113 computed_left: 0,
114 computed_right: 0,
115 column_width,
116 label_right: label_right + 6,
117 };
118 m.compute(max_line_len);
119 m
120 }
121
122 fn was_cut_left(&self) -> bool {
123 self.computed_left > 0
124 }
125
126 fn was_cut_right(&self, line_len: usize) -> bool {
60c5eb7d
XL
127 let right =
128 if self.computed_right == self.span_right || self.computed_right == self.label_right {
dfeec247
XL
129 // Account for the "..." padding given above. Otherwise we end up with code lines that
130 // do fit but end in "..." as if they were trimmed.
60c5eb7d
XL
131 self.computed_right - 6
132 } else {
133 self.computed_right
134 };
e74abb32 135 right < line_len && self.computed_left + self.column_width < line_len
e1599b0c
XL
136 }
137
138 fn compute(&mut self, max_line_len: usize) {
139 // When there's a lot of whitespace (>20), we want to trim it as it is useless.
140 self.computed_left = if self.whitespace_left > 20 {
141 self.whitespace_left - 16 // We want some padding.
142 } else {
143 0
144 };
145 // We want to show as much as possible, max_line_len is the right-most boundary for the
146 // relevant code.
147 self.computed_right = max(max_line_len, self.computed_left);
148
149 if self.computed_right - self.computed_left > self.column_width {
150 // Trimming only whitespace isn't enough, let's get craftier.
151 if self.label_right - self.whitespace_left <= self.column_width {
152 // Attempt to fit the code window only trimming whitespace.
153 self.computed_left = self.whitespace_left;
154 self.computed_right = self.computed_left + self.column_width;
155 } else if self.label_right - self.span_left <= self.column_width {
156 // Attempt to fit the code window considering only the spans and labels.
157 let padding_left = (self.column_width - (self.label_right - self.span_left)) / 2;
158 self.computed_left = self.span_left.saturating_sub(padding_left);
159 self.computed_right = self.computed_left + self.column_width;
160 } else if self.span_right - self.span_left <= self.column_width {
161 // Attempt to fit the code window considering the spans and labels plus padding.
162 let padding_left = (self.column_width - (self.span_right - self.span_left)) / 5 * 2;
163 self.computed_left = self.span_left.saturating_sub(padding_left);
164 self.computed_right = self.computed_left + self.column_width;
60c5eb7d
XL
165 } else {
166 // Mostly give up but still don't show the full line.
e1599b0c
XL
167 self.computed_left = self.span_left;
168 self.computed_right = self.span_right;
169 }
170 }
171 }
172
173 fn left(&self, line_len: usize) -> usize {
174 min(self.computed_left, line_len)
175 }
176
177 fn right(&self, line_len: usize) -> usize {
e74abb32 178 if line_len.saturating_sub(self.computed_left) <= self.column_width {
e1599b0c
XL
179 line_len
180 } else {
e74abb32 181 min(line_len, self.computed_right)
e1599b0c 182 }
48663c56
XL
183 }
184}
185
0531ce1d
XL
186const ANONYMIZED_LINE_NUM: &str = "LL";
187
5bcae85e 188/// Emitter trait for emitting errors.
9cc50fc6 189pub trait Emitter {
9cc50fc6 190 /// Emit a structured diagnostic.
e74abb32 191 fn emit_diagnostic(&mut self, diag: &Diagnostic);
48663c56
XL
192
193 /// Emit a notification that an artifact has been output.
194 /// This is currently only supported for the JSON format,
195 /// other formats can, and will, simply ignore it.
dc9dc135 196 fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str) {}
0531ce1d 197
136023e0 198 fn emit_future_breakage_report(&mut self, _diags: Vec<Diagnostic>) {}
29967ef6 199
cdc7bbd5
XL
200 /// Emit list of unused externs
201 fn emit_unused_externs(&mut self, _lint_level: &str, _unused_externs: &[&str]) {}
202
9fa01778 203 /// Checks if should show explanations about "rustc --explain"
0531ce1d
XL
204 fn should_show_explain(&self) -> bool {
205 true
206 }
a7813a04 207
fc512014
XL
208 /// Checks if we can use colors in the current output stream.
209 fn supports_color(&self) -> bool {
210 false
211 }
212
60c5eb7d 213 fn source_map(&self) -> Option<&Lrc<SourceMap>>;
e74abb32 214
e1599b0c
XL
215 /// Formats the substitutions of the primary_span
216 ///
a2a8927a 217 /// There are a lot of conditions to this method, but in short:
e1599b0c
XL
218 ///
219 /// * If the current `Diagnostic` has only one visible `CodeSuggestion`,
220 /// we format the `help` suggestion depending on the content of the
221 /// substitutions. In that case, we return the modified span only.
222 ///
223 /// * If the current `Diagnostic` has multiple suggestions,
224 /// we return the original `primary_span` and the original suggestions.
225 fn primary_span_formatted<'a>(
226 &mut self,
e74abb32 227 diag: &'a Diagnostic,
e1599b0c 228 ) -> (MultiSpan, &'a [CodeSuggestion]) {
e74abb32 229 let mut primary_span = diag.span.clone();
5099ac24
FG
230 let suggestions = diag.suggestions.as_ref().map_or(&[][..], |suggestions| &suggestions[..]);
231 if let Some((sugg, rest)) = suggestions.split_first() {
7cac9316 232 if rest.is_empty() &&
e1599b0c 233 // ^ if there is only one suggestion
7cac9316 234 // don't display multi-suggestions as labels
abe05a73
XL
235 sugg.substitutions.len() == 1 &&
236 // don't display multipart suggestions as labels
237 sugg.substitutions[0].parts.len() == 1 &&
7cac9316
XL
238 // don't display long messages as labels
239 sugg.msg.split_whitespace().count() < 10 &&
240 // don't display multiline suggestions as labels
9fa01778 241 !sugg.substitutions[0].parts[0].snippet.contains('\n') &&
e74abb32
XL
242 ![
243 // when this style is set we want the suggestion to be a message, not inline
244 SuggestionStyle::HideCodeAlways,
245 // trivial suggestion for tooling's sake, never shown
246 SuggestionStyle::CompletelyHidden,
247 // subtle suggestion, never shown inline
248 SuggestionStyle::ShowAlways,
249 ].contains(&sugg.style)
9fa01778 250 {
ff7c6d11 251 let substitution = &sugg.substitutions[0].parts[0].snippet.trim();
74b04a01 252 let msg = if substitution.is_empty() || sugg.style.hide_inline() {
e1599b0c
XL
253 // This substitution is only removal OR we explicitly don't want to show the
254 // code inline (`hide_inline`). Therefore, we don't show the substitution.
041b39d2
XL
255 format!("help: {}", sugg.msg)
256 } else {
e1599b0c 257 // Show the default suggestion text with the substitution
e74abb32
XL
258 format!(
259 "help: {}{}: `{}`",
260 sugg.msg,
60c5eb7d
XL
261 if self
262 .source_map()
263 .map(|sm| is_case_difference(
264 &**sm,
265 substitution,
266 sugg.substitutions[0].parts[0].span,
267 ))
268 .unwrap_or(false)
269 {
e74abb32
XL
270 " (notice the capitalization)"
271 } else {
272 ""
273 },
274 substitution,
275 )
041b39d2 276 };
abe05a73 277 primary_span.push_span_label(sugg.substitutions[0].parts[0].span, msg);
e1599b0c
XL
278
279 // We return only the modified primary_span
280 (primary_span, &[])
7cac9316
XL
281 } else {
282 // if there are multiple suggestions, print them all in full
283 // to be consistent. We could try to figure out if we can
284 // make one (or the first one) inline, but that would give
285 // undue importance to a semi-random suggestion
5099ac24 286 (primary_span, suggestions)
7cac9316 287 }
e1599b0c 288 } else {
5099ac24 289 (primary_span, suggestions)
e1599b0c
XL
290 }
291 }
292
74b04a01 293 fn fix_multispans_in_extern_macros_and_render_macro_backtrace(
60c5eb7d
XL
294 &self,
295 source_map: &Option<Lrc<SourceMap>>,
296 span: &mut MultiSpan,
297 children: &mut Vec<SubDiagnostic>,
298 level: &Level,
299 backtrace: bool,
300 ) {
74b04a01
XL
301 // Check for spans in macros, before `fix_multispans_in_extern_macros`
302 // has a chance to replace them.
303 let has_macro_spans = iter::once(&*span)
304 .chain(children.iter().map(|child| &child.span))
305 .flat_map(|span| span.primary_spans())
f9f354fc
XL
306 .flat_map(|sp| sp.macro_backtrace())
307 .find_map(|expn_data| {
308 match expn_data.kind {
309 ExpnKind::Root => None,
74b04a01 310
f9f354fc
XL
311 // Skip past non-macro entries, just in case there
312 // are some which do actually involve macros.
29967ef6 313 ExpnKind::Inlined | ExpnKind::Desugaring(..) | ExpnKind::AstPass(..) => None,
74b04a01 314
136023e0 315 ExpnKind::Macro(macro_kind, name) => Some((macro_kind, name)),
f9f354fc
XL
316 }
317 });
74b04a01
XL
318
319 if !backtrace {
320 self.fix_multispans_in_extern_macros(source_map, span, children);
7cac9316
XL
321 }
322
74b04a01
XL
323 self.render_multispans_macro_backtrace(span, children, backtrace);
324
325 if !backtrace {
17df50a5
XL
326 if let Some((macro_kind, name)) = has_macro_spans {
327 let descr = macro_kind.descr();
328
74b04a01 329 let msg = format!(
17df50a5 330 "this {level} originates in the {descr} `{name}` \
74b04a01 331 (in Nightly builds, run with -Z macro-backtrace for more info)",
74b04a01
XL
332 );
333
334 children.push(SubDiagnostic {
335 level: Level::Note,
336 message: vec![(msg, Style::NoStyle)],
337 span: MultiSpan::new(),
338 render_span: None,
339 });
340 }
e1599b0c
XL
341 }
342 }
343
74b04a01 344 fn render_multispans_macro_backtrace(
60c5eb7d 345 &self,
60c5eb7d 346 span: &mut MultiSpan,
74b04a01
XL
347 children: &mut Vec<SubDiagnostic>,
348 backtrace: bool,
349 ) {
350 for span in iter::once(span).chain(children.iter_mut().map(|child| &mut child.span)) {
351 self.render_multispan_macro_backtrace(span, backtrace);
352 }
353 }
e1599b0c 354
74b04a01 355 fn render_multispan_macro_backtrace(&self, span: &mut MultiSpan, always_backtrace: bool) {
e74abb32 356 let mut new_labels: Vec<(Span, String)> = vec![];
e1599b0c 357
74b04a01 358 for &sp in span.primary_spans() {
e74abb32
XL
359 if sp.is_dummy() {
360 continue;
361 }
74b04a01
XL
362
363 // FIXME(eddyb) use `retain` on `macro_backtrace` to remove all the
364 // entries we don't want to print, to make sure the indices being
365 // printed are contiguous (or omitted if there's only one entry).
dfeec247 366 let macro_backtrace: Vec<_> = sp.macro_backtrace().collect();
dfeec247 367 for (i, trace) in macro_backtrace.iter().rev().enumerate() {
dfeec247 368 if trace.def_site.is_dummy() {
e1599b0c
XL
369 continue;
370 }
74b04a01 371
136023e0 372 if always_backtrace && !matches!(trace.kind, ExpnKind::Inlined) {
60c5eb7d 373 new_labels.push((
dfeec247 374 trace.def_site,
60c5eb7d 375 format!(
136023e0 376 "in this expansion of `{}`{}",
dfeec247 377 trace.kind.descr(),
3dfed10e 378 if macro_backtrace.len() > 1 {
74b04a01
XL
379 // if macro_backtrace.len() == 1 it'll be
380 // pointed at by "in this macro invocation"
60c5eb7d
XL
381 format!(" (#{})", i + 1)
382 } else {
383 String::new()
74b04a01 384 },
60c5eb7d
XL
385 ),
386 ));
e1599b0c 387 }
74b04a01
XL
388
389 // Don't add a label on the call site if the diagnostic itself
390 // already points to (a part of) that call site, as the label
391 // is meant for showing the relevant invocation when the actual
392 // diagnostic is pointing to some part of macro definition.
393 //
394 // This also handles the case where an external span got replaced
395 // with the call site span by `fix_multispans_in_extern_macros`.
396 //
397 // NB: `-Zmacro-backtrace` overrides this, for uniformity, as the
398 // "in this expansion of" label above is always added in that mode,
399 // and it needs an "in this macro invocation" label to match that.
400 let redundant_span = trace.call_site.contains(sp);
401
136023e0
XL
402 if !redundant_span || always_backtrace {
403 let msg: Cow<'static, _> = match trace.kind {
404 ExpnKind::Macro(MacroKind::Attr, _) => {
405 "this procedural macro expansion".into()
406 }
407 ExpnKind::Macro(MacroKind::Derive, _) => {
408 "this derive macro expansion".into()
409 }
410 ExpnKind::Macro(MacroKind::Bang, _) => "this macro invocation".into(),
5e7ed085
FG
411 ExpnKind::Inlined => "this inlined function call".into(),
412 ExpnKind::Root => "the crate root".into(),
136023e0
XL
413 ExpnKind::AstPass(kind) => kind.descr().into(),
414 ExpnKind::Desugaring(kind) => {
415 format!("this {} desugaring", kind.descr()).into()
416 }
417 };
60c5eb7d
XL
418 new_labels.push((
419 trace.call_site,
420 format!(
136023e0
XL
421 "in {}{}",
422 msg,
3dfed10e 423 if macro_backtrace.len() > 1 && always_backtrace {
60c5eb7d
XL
424 // only specify order when the macro
425 // backtrace is multiple levels deep
426 format!(" (#{})", i + 1)
427 } else {
428 String::new()
74b04a01 429 },
60c5eb7d
XL
430 ),
431 ));
74b04a01
XL
432 }
433 if !always_backtrace {
434 break;
e1599b0c
XL
435 }
436 }
e74abb32 437 }
74b04a01 438
e74abb32
XL
439 for (label_span, label_text) in new_labels {
440 span.push_span_label(label_span, label_text);
441 }
74b04a01
XL
442 }
443
444 // This does a small "fix" for multispans by looking to see if it can find any that
ba9703b0
XL
445 // point directly at external macros. Since these are often difficult to read,
446 // this will change the span to point at the use site.
74b04a01
XL
447 fn fix_multispans_in_extern_macros(
448 &self,
449 source_map: &Option<Lrc<SourceMap>>,
450 span: &mut MultiSpan,
451 children: &mut Vec<SubDiagnostic>,
452 ) {
3c0e092e 453 let Some(source_map) = source_map else { return };
ba9703b0 454 debug!("fix_multispans_in_extern_macros: before: span={:?} children={:?}", span, children);
cdc7bbd5
XL
455 self.fix_multispan_in_extern_macros(source_map, span);
456 for child in children.iter_mut() {
457 self.fix_multispan_in_extern_macros(source_map, &mut child.span);
e74abb32 458 }
ba9703b0 459 debug!("fix_multispans_in_extern_macros: after: span={:?} children={:?}", span, children);
74b04a01
XL
460 }
461
ba9703b0
XL
462 // This "fixes" MultiSpans that contain `Span`s pointing to locations inside of external macros.
463 // Since these locations are often difficult to read,
464 // we move these spans from the external macros to their corresponding use site.
cdc7bbd5 465 fn fix_multispan_in_extern_macros(&self, source_map: &Lrc<SourceMap>, span: &mut MultiSpan) {
ba9703b0 466 // First, find all the spans in external macros and point instead at their use site.
74b04a01
XL
467 let replacements: Vec<(Span, Span)> = span
468 .primary_spans()
469 .iter()
470 .copied()
471 .chain(span.span_labels().iter().map(|sp_label| sp_label.span))
472 .filter_map(|sp| {
cdc7bbd5 473 if !sp.is_dummy() && source_map.is_imported(sp) {
74b04a01
XL
474 let maybe_callsite = sp.source_callsite();
475 if sp != maybe_callsite {
476 return Some((sp, maybe_callsite));
477 }
478 }
479 None
480 })
481 .collect();
482
ba9703b0 483 // After we have them, make sure we replace these 'bad' def sites with their use sites.
74b04a01
XL
484 for (from, to) in replacements {
485 span.replace(from, to);
e1599b0c 486 }
e1599b0c
XL
487 }
488}
489
490impl Emitter for EmitterWriter {
60c5eb7d 491 fn source_map(&self) -> Option<&Lrc<SourceMap>> {
e74abb32
XL
492 self.sm.as_ref()
493 }
494
495 fn emit_diagnostic(&mut self, diag: &Diagnostic) {
496 let mut children = diag.children.clone();
497 let (mut primary_span, suggestions) = self.primary_span_formatted(&diag);
ba9703b0 498 debug!("emit_diagnostic: suggestions={:?}", suggestions);
e1599b0c 499
74b04a01 500 self.fix_multispans_in_extern_macros_and_render_macro_backtrace(
60c5eb7d
XL
501 &self.sm,
502 &mut primary_span,
503 &mut children,
504 &diag.level,
74b04a01 505 self.macro_backtrace,
60c5eb7d
XL
506 );
507
508 self.emit_messages_default(
509 &diag.level,
510 &diag.styled_message(),
511 &diag.code,
512 &primary_span,
513 &children,
514 &suggestions,
515 );
1a4d82fc 516 }
0531ce1d
XL
517
518 fn should_show_explain(&self) -> bool {
519 !self.short_message
520 }
fc512014
XL
521
522 fn supports_color(&self) -> bool {
523 self.dst.supports_color()
524 }
223e47cc
LB
525}
526
3c0e092e
XL
527/// An emitter that does nothing when emitting a non-fatal diagnostic.
528/// Fatal diagnostics are forwarded to `fatal_handler` to avoid silent
529/// failures of rustc, as witnessed e.g. in issue #89358.
530pub struct SilentEmitter {
531 pub fatal_handler: Handler,
532 pub fatal_note: Option<String>,
533}
60c5eb7d
XL
534
535impl Emitter for SilentEmitter {
536 fn source_map(&self) -> Option<&Lrc<SourceMap>> {
537 None
538 }
3c0e092e
XL
539 fn emit_diagnostic(&mut self, d: &Diagnostic) {
540 if d.level == Level::Fatal {
541 let mut d = d.clone();
542 if let Some(ref note) = self.fatal_note {
543 d.note(note);
544 }
5e7ed085 545 self.fatal_handler.emit_diagnostic(&mut d);
3c0e092e
XL
546 }
547 }
60c5eb7d
XL
548}
549
dfeec247
XL
550/// Maximum number of lines we will print for a multiline suggestion; arbitrary.
551///
552/// This should be replaced with a more involved mechanism to output multiline suggestions that
29967ef6 553/// more closely mimics the regular diagnostic output, where irrelevant code lines are elided.
dfeec247
XL
554pub const MAX_SUGGESTION_HIGHLIGHT_LINES: usize = 6;
555/// Maximum number of suggestions to be shown
7cac9316
XL
556///
557/// Arbitrary, but taken from trait import suggestion limit
558pub const MAX_SUGGESTIONS: usize = 4;
7453a54e 559
9cc50fc6 560#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1a4d82fc
JJ
561pub enum ColorConfig {
562 Auto,
563 Always,
9cc50fc6 564 Never,
223e47cc
LB
565}
566
9cc50fc6 567impl ColorConfig {
48663c56
XL
568 fn to_color_choice(self) -> ColorChoice {
569 match self {
a1dfa0c6
XL
570 ColorConfig::Always => {
571 if atty::is(atty::Stream::Stderr) {
572 ColorChoice::Always
573 } else {
574 ColorChoice::AlwaysAnsi
575 }
576 }
0531ce1d 577 ColorConfig::Never => ColorChoice::Never,
60c5eb7d 578 ColorConfig::Auto if atty::is(atty::Stream::Stderr) => ColorChoice::Auto,
0531ce1d 579 ColorConfig::Auto => ColorChoice::Never,
9cc50fc6 580 }
d9579d0f 581 }
48663c56
XL
582 fn suggests_using_colors(self) -> bool {
583 match self {
60c5eb7d 584 ColorConfig::Always | ColorConfig::Auto => true,
48663c56
XL
585 ColorConfig::Never => false,
586 }
587 }
d9579d0f
AL
588}
589
dc9dc135 590/// Handles the writing of `HumanReadableErrorType::Default` and `HumanReadableErrorType::Short`
9cc50fc6
SL
591pub struct EmitterWriter {
592 dst: Destination,
60c5eb7d 593 sm: Option<Lrc<SourceMap>>,
abe05a73 594 short_message: bool,
2c00a5a8 595 teach: bool,
0531ce1d 596 ui_testing: bool,
e1599b0c
XL
597 terminal_width: Option<usize>,
598
74b04a01 599 macro_backtrace: bool,
a7813a04 600}
223e47cc 601
dc9dc135
XL
602#[derive(Debug)]
603pub struct FileWithAnnotatedLines {
604 pub file: Lrc<SourceFile>,
605 pub lines: Vec<Line>,
476ff2be 606 multiline_depth: usize,
223e47cc
LB
607}
608
1a4d82fc 609impl EmitterWriter {
e1599b0c
XL
610 pub fn stderr(
611 color_config: ColorConfig,
60c5eb7d 612 source_map: Option<Lrc<SourceMap>>,
e1599b0c
XL
613 short_message: bool,
614 teach: bool,
615 terminal_width: Option<usize>,
74b04a01 616 macro_backtrace: bool,
e1599b0c 617 ) -> EmitterWriter {
0531ce1d
XL
618 let dst = Destination::from_stderr(color_config);
619 EmitterWriter {
620 dst,
a1dfa0c6 621 sm: source_map,
0531ce1d
XL
622 short_message,
623 teach,
624 ui_testing: false,
e1599b0c 625 terminal_width,
74b04a01 626 macro_backtrace,
1a4d82fc
JJ
627 }
628 }
629
48663c56
XL
630 pub fn new(
631 dst: Box<dyn Write + Send>,
60c5eb7d 632 source_map: Option<Lrc<SourceMap>>,
48663c56
XL
633 short_message: bool,
634 teach: bool,
635 colored: bool,
e1599b0c 636 terminal_width: Option<usize>,
74b04a01 637 macro_backtrace: bool,
48663c56 638 ) -> EmitterWriter {
c30ab7b3 639 EmitterWriter {
48663c56 640 dst: Raw(dst, colored),
a1dfa0c6 641 sm: source_map,
2c00a5a8
XL
642 short_message,
643 teach,
0531ce1d 644 ui_testing: false,
e1599b0c 645 terminal_width,
74b04a01 646 macro_backtrace,
0531ce1d
XL
647 }
648 }
649
650 pub fn ui_testing(mut self, ui_testing: bool) -> Self {
651 self.ui_testing = ui_testing;
652 self
653 }
654
655 fn maybe_anonymized(&self, line_num: usize) -> String {
60c5eb7d 656 if self.ui_testing { ANONYMIZED_LINE_NUM.to_string() } else { line_num.to_string() }
a7813a04
XL
657 }
658
e1599b0c
XL
659 fn draw_line(
660 &self,
661 buffer: &mut StyledBuffer,
662 source_string: &str,
663 line_index: usize,
664 line_offset: usize,
665 width_offset: usize,
666 code_offset: usize,
667 margin: Margin,
668 ) {
5869c6ff
XL
669 // Tabs are assumed to have been replaced by spaces in calling code.
670 debug_assert!(!source_string.contains('\t'));
e1599b0c
XL
671 let line_len = source_string.len();
672 // Create the source line we will highlight.
673 let left = margin.left(line_len);
674 let right = margin.right(line_len);
675 // On long lines, we strip the source line, accounting for unicode.
676 let mut taken = 0;
60c5eb7d
XL
677 let code: String = source_string
678 .chars()
679 .skip(left)
680 .take_while(|ch| {
dfeec247
XL
681 // Make sure that the trimming on the right will fall within the terminal width.
682 // FIXME: `unicode_width` sometimes disagrees with terminals on how wide a `char` is.
683 // For now, just accept that sometimes the code line will be longer than desired.
60c5eb7d
XL
684 let next = unicode_width::UnicodeWidthChar::width(*ch).unwrap_or(1);
685 if taken + next > right - left {
686 return false;
687 }
688 taken += next;
689 true
690 })
691 .collect();
e1599b0c
XL
692 buffer.puts(line_offset, code_offset, &code, Style::Quotation);
693 if margin.was_cut_left() {
694 // We have stripped some code/whitespace from the beginning, make it clear.
695 buffer.puts(line_offset, code_offset, "...", Style::LineNumber);
696 }
697 if margin.was_cut_right(line_len) {
698 // We have stripped some code after the right-most span end, make it clear we did so.
699 buffer.puts(line_offset, code_offset + taken - 3, "...", Style::LineNumber);
700 }
701 buffer.puts(line_offset, 0, &self.maybe_anonymized(line_index), Style::LineNumber);
702
703 draw_col_separator(buffer, line_offset, width_offset - 2);
704 }
705
706 fn render_source_line(
707 &self,
708 buffer: &mut StyledBuffer,
709 file: Lrc<SourceFile>,
710 line: &Line,
711 width_offset: usize,
712 code_offset: usize,
713 margin: Margin,
714 ) -> Vec<(usize, Style)> {
715 // Draw:
716 //
717 // LL | ... code ...
718 // | ^^-^ span label
719 // | |
720 // | secondary span label
721 //
722 // ^^ ^ ^^^ ^^^^ ^^^ we don't care about code too far to the right of a span, we trim it
723 // | | | |
724 // | | | actual code found in your source code and the spans we use to mark it
725 // | | when there's too much wasted space to the left, trim it
726 // | vertical divider between the column number and the code
727 // column number
728
2c00a5a8
XL
729 if line.line_index == 0 {
730 return Vec::new();
731 }
732
7cac9316 733 let source_string = match file.get_line(line.line_index - 1) {
3c0e092e 734 Some(s) => normalize_whitespace(&*s),
7cac9316
XL
735 None => return Vec::new(),
736 };
5bcae85e
SL
737
738 let line_offset = buffer.num_lines();
c1a9b12d 739
a2a8927a
XL
740 // Left trim
741 let left = margin.left(source_string.len());
742
e1599b0c 743 // Account for unicode characters of width !=0 that were removed.
60c5eb7d
XL
744 let left = source_string
745 .chars()
746 .take(left)
e74abb32
XL
747 .map(|ch| unicode_width::UnicodeWidthChar::width(ch).unwrap_or(1))
748 .sum();
5bcae85e 749
e1599b0c
XL
750 self.draw_line(
751 buffer,
752 &source_string,
753 line.line_index,
754 line_offset,
755 width_offset,
756 code_offset,
757 margin,
758 );
5bcae85e 759
cc61c64b
XL
760 // Special case when there's only one annotation involved, it is the start of a multiline
761 // span and there's no text at the beginning of the code line. Instead of doing the whole
762 // graph:
763 //
764 // 2 | fn foo() {
765 // | _^
766 // 3 | |
767 // 4 | | }
768 // | |_^ test
769 //
770 // we simplify the output to:
771 //
772 // 2 | / fn foo() {
773 // 3 | |
774 // 4 | | }
775 // | |_^ test
e74abb32
XL
776 if let [ann] = &line.annotations[..] {
777 if let AnnotationType::MultilineStart(depth) = ann.annotation_type {
778 if source_string.chars().take(ann.start_col).all(|c| c.is_whitespace()) {
779 let style = if ann.is_primary {
780 Style::UnderlinePrimary
781 } else {
782 Style::UnderlineSecondary
783 };
784 buffer.putc(line_offset, width_offset + depth - 1, '/', style);
785 return vec![(depth, style)];
cc61c64b
XL
786 }
787 }
788 }
789
5bcae85e
SL
790 // We want to display like this:
791 //
792 // vec.push(vec.pop().unwrap());
476ff2be 793 // --- ^^^ - previous borrow ends here
5bcae85e
SL
794 // | |
795 // | error occurs here
796 // previous borrow of `vec` occurs here
797 //
798 // But there are some weird edge cases to be aware of:
799 //
800 // vec.push(vec.pop().unwrap());
801 // -------- - previous borrow ends here
802 // ||
803 // |this makes no sense
804 // previous borrow of `vec` occurs here
805 //
806 // For this reason, we group the lines into "highlight lines"
cc61c64b 807 // and "annotations lines", where the highlight lines have the `^`.
5bcae85e
SL
808
809 // Sort the annotations by (start, end col)
3b2f2976
XL
810 // The labels are reversed, sort and then reversed again.
811 // Consider a list of annotations (A1, A2, C1, C2, B1, B2) where
812 // the letter signifies the span. Here we are only sorting by the
813 // span and hence, the order of the elements with the same span will
814 // not change. On reversing the ordering (|a, b| but b.cmp(a)), you get
815 // (C1, C2, B1, B2, A1, A2). All the elements with the same span are
816 // still ordered first to last, but all the elements with different
817 // spans are ordered by their spans in last to first order. Last to
818 // first order is important, because the jiggly lines and | are on
819 // the left, so the rightmost span needs to be rendered first,
820 // otherwise the lines would end up needing to go over a message.
821
5bcae85e 822 let mut annotations = line.annotations.clone();
8faf50e0 823 annotations.sort_by_key(|a| Reverse(a.start_col));
5bcae85e 824
476ff2be
SL
825 // First, figure out where each label will be positioned.
826 //
827 // In the case where you have the following annotations:
828 //
829 // vec.push(vec.pop().unwrap());
830 // -------- - previous borrow ends here [C]
831 // ||
832 // |this makes no sense [B]
833 // previous borrow of `vec` occurs here [A]
834 //
835 // `annotations_position` will hold [(2, A), (1, B), (0, C)].
836 //
837 // We try, when possible, to stick the rightmost annotation at the end
838 // of the highlight line:
5bcae85e
SL
839 //
840 // vec.push(vec.pop().unwrap());
841 // --- --- - previous borrow ends here
842 //
843 // But sometimes that's not possible because one of the other
844 // annotations overlaps it. For example, from the test
845 // `span_overlap_label`, we have the following annotations
846 // (written on distinct lines for clarity):
847 //
848 // fn foo(x: u32) {
849 // --------------
850 // -
851 //
852 // In this case, we can't stick the rightmost-most label on
853 // the highlight line, or we would get:
854 //
855 // fn foo(x: u32) {
856 // -------- x_span
857 // |
858 // fn_span
859 //
860 // which is totally weird. Instead we want:
861 //
862 // fn foo(x: u32) {
863 // --------------
864 // | |
865 // | x_span
866 // fn_span
867 //
868 // which is...less weird, at least. In fact, in general, if
869 // the rightmost span overlaps with any other span, we should
870 // use the "hang below" version, so we can at least make it
32a655c1
SL
871 // clear where the span *starts*. There's an exception for this
872 // logic, when the labels do not have a message:
873 //
874 // fn foo(x: u32) {
875 // --------------
876 // |
877 // x_span
878 //
879 // instead of:
880 //
881 // fn foo(x: u32) {
882 // --------------
883 // | |
884 // | x_span
885 // <EMPTY LINE>
886 //
476ff2be
SL
887 let mut annotations_position = vec![];
888 let mut line_len = 0;
889 let mut p = 0;
8bb4bdeb
XL
890 for (i, annotation) in annotations.iter().enumerate() {
891 for (j, next) in annotations.iter().enumerate() {
892 if overlaps(next, annotation, 0) // This label overlaps with another one and both
cc61c64b
XL
893 && annotation.has_label() // take space (they have text and are not
894 && j > i // multiline lines).
60c5eb7d
XL
895 && p == 0
896 // We're currently on the first line, move the label one line down
32a655c1 897 {
48663c56
XL
898 // If we're overlapping with an un-labelled annotation with the same span
899 // we can just merge them in the output
900 if next.start_col == annotation.start_col
60c5eb7d
XL
901 && next.end_col == annotation.end_col
902 && !next.has_label()
48663c56
XL
903 {
904 continue;
905 }
906
32a655c1 907 // This annotation needs a new line in the output.
476ff2be 908 p += 1;
8bb4bdeb 909 break;
a7813a04 910 }
c1a9b12d 911 }
476ff2be 912 annotations_position.push((p, annotation));
8bb4bdeb 913 for (j, next) in annotations.iter().enumerate() {
60c5eb7d 914 if j > i {
e74abb32 915 let l = next.label.as_ref().map_or(0, |label| label.len() + 2);
cc61c64b 916 if (overlaps(next, annotation, l) // Do not allow two labels to be in the same
8bb4bdeb
XL
917 // line if they overlap including padding, to
918 // avoid situations like:
919 //
920 // fn foo(x: u32) {
921 // -------^------
922 // | |
923 // fn_spanx_span
924 //
8bb4bdeb 925 && annotation.has_label() // Both labels must have some text, otherwise
cc61c64b
XL
926 && next.has_label()) // they are not overlapping.
927 // Do not add a new line if this annotation
928 // or the next are vertical line placeholders.
929 || (annotation.takes_space() // If either this or the next annotation is
930 && next.has_label()) // multiline start/end, move it to a new line
29967ef6 931 || (annotation.has_label() // so as not to overlap the horizontal lines.
cc61c64b 932 && next.takes_space())
041b39d2
XL
933 || (annotation.takes_space() && next.takes_space())
934 || (overlaps(next, annotation, l)
935 && next.end_col <= annotation.end_col
936 && next.has_label()
60c5eb7d
XL
937 && p == 0)
938 // Avoid #42595.
8bb4bdeb 939 {
cc61c64b 940 // This annotation needs a new line in the output.
8bb4bdeb
XL
941 p += 1;
942 break;
943 }
476ff2be
SL
944 }
945 }
e74abb32 946 line_len = max(line_len, p);
476ff2be 947 }
cc61c64b 948
476ff2be
SL
949 if line_len != 0 {
950 line_len += 1;
5bcae85e
SL
951 }
952
476ff2be
SL
953 // If there are no annotations or the only annotations on this line are
954 // MultilineLine, then there's only code being shown, stop processing.
8faf50e0 955 if line.annotations.iter().all(|a| a.is_line()) {
cc61c64b 956 return vec![];
5bcae85e
SL
957 }
958
60c5eb7d 959 // Write the column separator.
32a655c1
SL
960 //
961 // After this we will have:
962 //
963 // 2 | fn foo() {
964 // |
965 // |
966 // |
967 // 3 |
968 // 4 | }
969 // |
0731742a 970 for pos in 0..=line_len {
476ff2be 971 draw_col_separator(buffer, line_offset + pos + 1, width_offset - 2);
476ff2be
SL
972 }
973
974 // Write the horizontal lines for multiline annotations
975 // (only the first and last lines need this).
976 //
977 // After this we will have:
978 //
979 // 2 | fn foo() {
980 // | __________
981 // |
982 // |
983 // 3 |
984 // 4 | }
985 // | _
986 for &(pos, annotation) in &annotations_position {
987 let style = if annotation.is_primary {
988 Style::UnderlinePrimary
989 } else {
990 Style::UnderlineSecondary
991 };
992 let pos = pos + 1;
993 match annotation.annotation_type {
60c5eb7d 994 AnnotationType::MultilineStart(depth) | AnnotationType::MultilineEnd(depth) => {
e1599b0c
XL
995 draw_range(
996 buffer,
997 '_',
998 line_offset + pos,
999 width_offset + depth,
6c58768f 1000 (code_offset + annotation.start_col).saturating_sub(left),
e1599b0c
XL
1001 style,
1002 );
476ff2be 1003 }
2c00a5a8 1004 _ if self.teach => {
e1599b0c
XL
1005 buffer.set_style_range(
1006 line_offset,
6c58768f
XL
1007 (code_offset + annotation.start_col).saturating_sub(left),
1008 (code_offset + annotation.end_col).saturating_sub(left),
e1599b0c
XL
1009 style,
1010 annotation.is_primary,
1011 );
2c00a5a8
XL
1012 }
1013 _ => {}
476ff2be
SL
1014 }
1015 }
1016
cc61c64b 1017 // Write the vertical lines for labels that are on a different line as the underline.
476ff2be
SL
1018 //
1019 // After this we will have:
1020 //
1021 // 2 | fn foo() {
1022 // | __________
1023 // | | |
1024 // | |
60c5eb7d 1025 // 3 | |
476ff2be
SL
1026 // 4 | | }
1027 // | |_
1028 for &(pos, annotation) in &annotations_position {
1029 let style = if annotation.is_primary {
1030 Style::UnderlinePrimary
1031 } else {
1032 Style::UnderlineSecondary
1033 };
1034 let pos = pos + 1;
32a655c1 1035
cc61c64b 1036 if pos > 1 && (annotation.has_label() || annotation.takes_space()) {
0731742a 1037 for p in line_offset + 1..=line_offset + pos {
60c5eb7d
XL
1038 buffer.putc(
1039 p,
1040 (code_offset + annotation.start_col).saturating_sub(left),
1041 '|',
1042 style,
1043 );
476ff2be
SL
1044 }
1045 }
1046 match annotation.annotation_type {
1047 AnnotationType::MultilineStart(depth) => {
1048 for p in line_offset + pos + 1..line_offset + line_len + 2 {
60c5eb7d 1049 buffer.putc(p, width_offset + depth - 1, '|', style);
476ff2be
SL
1050 }
1051 }
1052 AnnotationType::MultilineEnd(depth) => {
0731742a 1053 for p in line_offset..=line_offset + pos {
60c5eb7d 1054 buffer.putc(p, width_offset + depth - 1, '|', style);
476ff2be
SL
1055 }
1056 }
476ff2be
SL
1057 _ => (),
1058 }
1059 }
1060
1061 // Write the labels on the annotations that actually have a label.
1062 //
1063 // After this we will have:
1064 //
1065 // 2 | fn foo() {
cc61c64b
XL
1066 // | __________
1067 // | |
1068 // | something about `foo`
1069 // 3 |
1070 // 4 | }
1071 // | _ test
476ff2be 1072 for &(pos, annotation) in &annotations_position {
60c5eb7d
XL
1073 let style =
1074 if annotation.is_primary { Style::LabelPrimary } else { Style::LabelSecondary };
476ff2be 1075 let (pos, col) = if pos == 0 {
e74abb32 1076 (pos + 1, (annotation.end_col + 1).saturating_sub(left))
476ff2be 1077 } else {
e74abb32 1078 (pos + 2, annotation.start_col.saturating_sub(left))
476ff2be
SL
1079 };
1080 if let Some(ref label) = annotation.label {
e1599b0c 1081 buffer.puts(line_offset + pos, code_offset + col, &label, style);
476ff2be
SL
1082 }
1083 }
1084
1085 // Sort from biggest span to smallest span so that smaller spans are
1086 // represented in the output:
1087 //
1088 // x | fn foo()
1089 // | ^^^---^^
1090 // | | |
1091 // | | something about `foo`
1092 // | something about `fn foo()`
e74abb32
XL
1093 annotations_position.sort_by_key(|(_, ann)| {
1094 // Decreasing order. When annotations share the same length, prefer `Primary`.
1095 (Reverse(ann.len()), ann.is_primary)
476ff2be 1096 });
5bcae85e 1097
476ff2be
SL
1098 // Write the underlines.
1099 //
1100 // After this we will have:
1101 //
1102 // 2 | fn foo() {
cc61c64b
XL
1103 // | ____-_____^
1104 // | |
1105 // | something about `foo`
1106 // 3 |
1107 // 4 | }
1108 // | _^ test
476ff2be
SL
1109 for &(_, annotation) in &annotations_position {
1110 let (underline, style) = if annotation.is_primary {
1111 ('^', Style::UnderlinePrimary)
5bcae85e 1112 } else {
476ff2be
SL
1113 ('-', Style::UnderlineSecondary)
1114 };
1115 for p in annotation.start_col..annotation.end_col {
e1599b0c
XL
1116 buffer.putc(
1117 line_offset + 1,
e74abb32 1118 (code_offset + p).saturating_sub(left),
e1599b0c
XL
1119 underline,
1120 style,
1121 );
c1a9b12d
SL
1122 }
1123 }
60c5eb7d
XL
1124 annotations_position
1125 .iter()
1126 .filter_map(|&(_, annotation)| match annotation.annotation_type {
cc61c64b
XL
1127 AnnotationType::MultilineStart(p) | AnnotationType::MultilineEnd(p) => {
1128 let style = if annotation.is_primary {
1129 Style::LabelPrimary
1130 } else {
1131 Style::LabelSecondary
1132 };
1133 Some((p, style))
abe05a73 1134 }
60c5eb7d
XL
1135 _ => None,
1136 })
1137 .collect::<Vec<_>>()
5bcae85e
SL
1138 }
1139
1140 fn get_multispan_max_line_num(&mut self, msp: &MultiSpan) -> usize {
5e7ed085
FG
1141 let Some(ref sm) = self.sm else {
1142 return 0;
e74abb32
XL
1143 };
1144
5bcae85e 1145 let mut max = 0;
e74abb32
XL
1146 for primary_span in msp.primary_spans() {
1147 if !primary_span.is_dummy() {
1148 let hi = sm.lookup_char_pos(primary_span.hi());
1149 max = (hi.line).max(max);
5bcae85e 1150 }
e74abb32
XL
1151 }
1152 if !self.short_message {
1153 for span_label in msp.span_labels() {
1154 if !span_label.span.is_dummy() {
1155 let hi = sm.lookup_char_pos(span_label.span.hi());
1156 max = (hi.line).max(max);
a7813a04 1157 }
7453a54e 1158 }
c1a9b12d 1159 }
e74abb32 1160
5bcae85e 1161 max
c1a9b12d
SL
1162 }
1163
8faf50e0 1164 fn get_max_line_num(&mut self, span: &MultiSpan, children: &[SubDiagnostic]) -> usize {
9e0c209e 1165 let primary = self.get_multispan_max_line_num(span);
60c5eb7d
XL
1166 children
1167 .iter()
e74abb32
XL
1168 .map(|sub| self.get_multispan_max_line_num(&sub.span))
1169 .max()
1170 .unwrap_or(0)
1171 .max(primary)
c1a9b12d
SL
1172 }
1173
9fa01778 1174 /// Adds a left margin to every line but the first, given a padding length and the label being
32a655c1 1175 /// displayed, keeping the provided highlighting.
60c5eb7d
XL
1176 fn msg_to_buffer(
1177 &self,
1178 buffer: &mut StyledBuffer,
1179 msg: &[(String, Style)],
1180 padding: usize,
1181 label: &str,
1182 override_style: Option<Style>,
1183 ) {
32a655c1
SL
1184 // The extra 5 ` ` is padding that's always needed to align to the `note: `:
1185 //
1186 // error: message
1187 // --> file.rs:13:20
1188 // |
1189 // 13 | <CODE>
1190 // | ^^^^
1191 // |
1192 // = note: multiline
1193 // message
1194 // ++^^^----xx
1195 // | | | |
1196 // | | | magic `2`
1197 // | | length of label
1198 // | magic `3`
1199 // `max_line_num_len`
8faf50e0 1200 let padding = " ".repeat(padding + label.len() + 5);
32a655c1 1201
e74abb32
XL
1202 /// Returns `override` if it is present and `style` is `NoStyle` or `style` otherwise
1203 fn style_or_override(style: Style, override_: Option<Style>) -> Style {
1204 match (style, override_) {
1205 (Style::NoStyle, Some(override_)) => override_,
1206 _ => style,
32a655c1 1207 }
32a655c1
SL
1208 }
1209
1210 let mut line_number = 0;
1211
1212 // Provided the following diagnostic message:
1213 //
1214 // let msg = vec![
1215 // ("
1216 // ("highlighted multiline\nstring to\nsee how it ", Style::NoStyle),
1217 // ("looks", Style::Highlight),
1218 // ("with\nvery ", Style::NoStyle),
1219 // ("weird", Style::Highlight),
1220 // (" formats\n", Style::NoStyle),
1221 // ("see?", Style::Highlight),
1222 // ];
1223 //
ff7c6d11 1224 // the expected output on a note is (* surround the highlighted text)
32a655c1
SL
1225 //
1226 // = note: highlighted multiline
1227 // string to
1228 // see how it *looks* with
1229 // very *weird* formats
1230 // see?
1231 for &(ref text, ref style) in msg.iter() {
1232 let lines = text.split('\n').collect::<Vec<_>>();
1233 if lines.len() > 1 {
1234 for (i, line) in lines.iter().enumerate() {
1235 if i != 0 {
1236 line_number += 1;
1237 buffer.append(line_number, &padding, Style::NoStyle);
1238 }
1239 buffer.append(line_number, line, style_or_override(*style, override_style));
1240 }
1241 } else {
1242 buffer.append(line_number, text, style_or_override(*style, override_style));
1243 }
1244 }
1245 }
1246
9fa01778
XL
1247 fn emit_message_default(
1248 &mut self,
1249 msp: &MultiSpan,
1250 msg: &[(String, Style)],
1251 code: &Option<DiagnosticId>,
1252 level: &Level,
1253 max_line_num_len: usize,
1254 is_secondary: bool,
1255 ) -> io::Result<()> {
5bcae85e
SL
1256 let mut buffer = StyledBuffer::new();
1257
60c5eb7d
XL
1258 if !msp.has_primary_spans() && !msp.has_span_labels() && is_secondary && !self.short_message
1259 {
5bcae85e
SL
1260 // This is a secondary message with no span info
1261 for _ in 0..max_line_num_len {
1262 buffer.prepend(0, " ", Style::NoStyle);
1263 }
1264 draw_note_separator(&mut buffer, 0, max_line_num_len + 1);
e1599b0c 1265 if *level != Level::FailureNote {
1b1a35ee
XL
1266 buffer.append(0, level.to_str(), Style::MainHeaderMsg);
1267 buffer.append(0, ": ", Style::NoStyle);
0531ce1d 1268 }
32a655c1 1269 self.msg_to_buffer(&mut buffer, msg, max_line_num_len, "note", None);
c30ab7b3 1270 } else {
3c0e092e 1271 let mut label_width = 0;
e1599b0c 1272 // The failure note level itself does not provide any useful diagnostic information
1b1a35ee
XL
1273 if *level != Level::FailureNote {
1274 buffer.append(0, level.to_str(), Style::Level(*level));
3c0e092e 1275 label_width += level.to_str().len();
0531ce1d 1276 }
abe05a73
XL
1277 // only render error codes, not lint codes
1278 if let Some(DiagnosticId::Error(ref code)) = *code {
dfeec247
XL
1279 buffer.append(0, "[", Style::Level(*level));
1280 buffer.append(0, &code, Style::Level(*level));
1281 buffer.append(0, "]", Style::Level(*level));
3c0e092e 1282 label_width += 2 + code.len();
5bcae85e 1283 }
cdc7bbd5 1284 let header_style = if is_secondary { Style::HeaderMsg } else { Style::MainHeaderMsg };
1b1a35ee 1285 if *level != Level::FailureNote {
8faf50e0 1286 buffer.append(0, ": ", header_style);
3c0e092e 1287 label_width += 2;
0531ce1d 1288 }
32a655c1 1289 for &(ref text, _) in msg.iter() {
3c0e092e
XL
1290 // Account for newlines to align output to its label.
1291 for (line, text) in normalize_whitespace(text).lines().enumerate() {
1292 buffer.append(
1293 0 + line,
1294 &format!(
1295 "{}{}",
1296 if line == 0 { String::new() } else { " ".repeat(label_width) },
1297 text
1298 ),
1299 header_style,
1300 );
1301 }
32a655c1 1302 }
5bcae85e
SL
1303 }
1304
dc9dc135 1305 let mut annotated_files = FileWithAnnotatedLines::collect_annotations(msp, &self.sm);
a7813a04 1306
5bcae85e 1307 // Make sure our primary file comes first
a1dfa0c6 1308 let (primary_lo, sm) = if let (Some(sm), Some(ref primary_span)) =
60c5eb7d
XL
1309 (self.sm.as_ref(), msp.primary_span().as_ref())
1310 {
8faf50e0 1311 if !primary_span.is_dummy() {
a1dfa0c6 1312 (sm.lookup_char_pos(primary_span.lo()), sm)
5bcae85e 1313 } else {
abe05a73 1314 emit_to_destination(&buffer.render(), level, &mut self.dst, self.short_message)?;
5bcae85e 1315 return Ok(());
c30ab7b3
SL
1316 }
1317 } else {
1318 // If we don't have span information, emit and exit
abe05a73 1319 emit_to_destination(&buffer.render(), level, &mut self.dst, self.short_message)?;
c30ab7b3
SL
1320 return Ok(());
1321 };
5bcae85e 1322 if let Ok(pos) =
60c5eb7d
XL
1323 annotated_files.binary_search_by(|x| x.file.name.cmp(&primary_lo.file.name))
1324 {
5bcae85e
SL
1325 annotated_files.swap(0, pos);
1326 }
1327
1328 // Print out the annotate source lines that correspond with the error
1329 for annotated_file in annotated_files {
7cac9316 1330 // we can't annotate anything if the source is unavailable.
a1dfa0c6 1331 if !sm.ensure_source_file_source_present(annotated_file.file.clone()) {
7cac9316
XL
1332 continue;
1333 }
1334
5bcae85e
SL
1335 // print out the span location and spacer before we print the annotated source
1336 // to do this, we need to know if this span will be primary
1337 let is_primary = primary_lo.file.name == annotated_file.file.name;
1338 if is_primary {
5bcae85e 1339 let loc = primary_lo.clone();
abe05a73
XL
1340 if !self.short_message {
1341 // remember where we are in the output buffer for easy reference
1342 let buffer_msg_line_offset = buffer.num_lines();
1343
1344 buffer.prepend(buffer_msg_line_offset, "--> ", Style::LineNumber);
e1599b0c
XL
1345 buffer.append(
1346 buffer_msg_line_offset,
1347 &format!(
1348 "{}:{}:{}",
94222f64 1349 sm.filename_for_diagnostics(&loc.file.name),
e1599b0c
XL
1350 sm.doctest_offset_line(&loc.file.name, loc.line),
1351 loc.col.0 + 1,
1352 ),
1353 Style::LineAndColumn,
1354 );
abe05a73
XL
1355 for _ in 0..max_line_num_len {
1356 buffer.prepend(buffer_msg_line_offset, " ", Style::NoStyle);
1357 }
1358 } else {
e1599b0c
XL
1359 buffer.prepend(
1360 0,
1361 &format!(
1362 "{}:{}:{}: ",
94222f64 1363 sm.filename_for_diagnostics(&loc.file.name),
e1599b0c
XL
1364 sm.doctest_offset_line(&loc.file.name, loc.line),
1365 loc.col.0 + 1,
1366 ),
1367 Style::LineAndColumn,
1368 );
5bcae85e 1369 }
abe05a73 1370 } else if !self.short_message {
5bcae85e
SL
1371 // remember where we are in the output buffer for easy reference
1372 let buffer_msg_line_offset = buffer.num_lines();
1373
1374 // Add spacing line
94222f64
XL
1375 draw_col_separator_no_space(
1376 &mut buffer,
1377 buffer_msg_line_offset,
1378 max_line_num_len + 1,
1379 );
5bcae85e
SL
1380
1381 // Then, the secondary file indicator
1382 buffer.prepend(buffer_msg_line_offset + 1, "::: ", Style::LineNumber);
2c00a5a8
XL
1383 let loc = if let Some(first_line) = annotated_file.lines.first() {
1384 let col = if let Some(first_annotation) = first_line.annotations.first() {
1385 format!(":{}", first_annotation.start_col + 1)
1386 } else {
b7449926 1387 String::new()
2c00a5a8 1388 };
60c5eb7d
XL
1389 format!(
1390 "{}:{}{}",
94222f64 1391 sm.filename_for_diagnostics(&annotated_file.file.name),
60c5eb7d
XL
1392 sm.doctest_offset_line(&annotated_file.file.name, first_line.line_index),
1393 col
1394 )
2c00a5a8 1395 } else {
94222f64 1396 format!("{}", sm.filename_for_diagnostics(&annotated_file.file.name))
2c00a5a8 1397 };
60c5eb7d 1398 buffer.append(buffer_msg_line_offset + 1, &loc, Style::LineAndColumn);
5bcae85e
SL
1399 for _ in 0..max_line_num_len {
1400 buffer.prepend(buffer_msg_line_offset + 1, " ", Style::NoStyle);
c1a9b12d 1401 }
a7813a04 1402 }
c1a9b12d 1403
abe05a73
XL
1404 if !self.short_message {
1405 // Put in the spacer between the location and annotated source
1406 let buffer_msg_line_offset = buffer.num_lines();
60c5eb7d
XL
1407 draw_col_separator_no_space(
1408 &mut buffer,
1409 buffer_msg_line_offset,
1410 max_line_num_len + 1,
1411 );
5bcae85e 1412
abe05a73 1413 // Contains the vertical lines' positions for active multiline annotations
b7449926 1414 let mut multilines = FxHashMap::default();
cc61c64b 1415
e1599b0c 1416 // Get the left-side margin to remove it
ba9703b0 1417 let mut whitespace_margin = usize::MAX;
e1599b0c
XL
1418 for line_idx in 0..annotated_file.lines.len() {
1419 let file = annotated_file.file.clone();
1420 let line = &annotated_file.lines[line_idx];
1421 if let Some(source_string) = file.get_line(line.line_index - 1) {
5869c6ff
XL
1422 let leading_whitespace = source_string
1423 .chars()
1424 .take_while(|c| c.is_whitespace())
1425 .map(|c| {
1426 match c {
1427 // Tabs are displayed as 4 spaces
1428 '\t' => 4,
1429 _ => 1,
1430 }
1431 })
1432 .sum();
e1599b0c 1433 if source_string.chars().any(|c| !c.is_whitespace()) {
60c5eb7d 1434 whitespace_margin = min(whitespace_margin, leading_whitespace);
e1599b0c
XL
1435 }
1436 }
1437 }
ba9703b0 1438 if whitespace_margin == usize::MAX {
e1599b0c
XL
1439 whitespace_margin = 0;
1440 }
1441
1442 // Left-most column any visible span points at.
ba9703b0 1443 let mut span_left_margin = usize::MAX;
e1599b0c
XL
1444 for line in &annotated_file.lines {
1445 for ann in &line.annotations {
1446 span_left_margin = min(span_left_margin, ann.start_col);
1447 span_left_margin = min(span_left_margin, ann.end_col);
1448 }
1449 }
ba9703b0 1450 if span_left_margin == usize::MAX {
e1599b0c
XL
1451 span_left_margin = 0;
1452 }
1453
1454 // Right-most column any visible span points at.
1455 let mut span_right_margin = 0;
1456 let mut label_right_margin = 0;
1457 let mut max_line_len = 0;
1458 for line in &annotated_file.lines {
60c5eb7d
XL
1459 max_line_len = max(
1460 max_line_len,
1461 annotated_file.file.get_line(line.line_index - 1).map_or(0, |s| s.len()),
1462 );
e1599b0c
XL
1463 for ann in &line.annotations {
1464 span_right_margin = max(span_right_margin, ann.start_col);
1465 span_right_margin = max(span_right_margin, ann.end_col);
1466 // FIXME: account for labels not in the same line
e74abb32 1467 let label_right = ann.label.as_ref().map_or(0, |l| l.len() + 1);
e1599b0c
XL
1468 label_right_margin = max(label_right_margin, ann.end_col + label_right);
1469 }
1470 }
1471
1472 let width_offset = 3 + max_line_num_len;
1473 let code_offset = if annotated_file.multiline_depth == 0 {
1474 width_offset
1475 } else {
1476 width_offset + annotated_file.multiline_depth + 1
1477 };
1478
1479 let column_width = if let Some(width) = self.terminal_width {
1480 width.saturating_sub(code_offset)
1481 } else if self.ui_testing {
f035d41b 1482 DEFAULT_COLUMN_WIDTH
e1599b0c 1483 } else {
74b04a01 1484 termize::dimensions()
e1599b0c 1485 .map(|(w, _)| w.saturating_sub(code_offset))
f035d41b 1486 .unwrap_or(DEFAULT_COLUMN_WIDTH)
e1599b0c
XL
1487 };
1488
1489 let margin = Margin::new(
1490 whitespace_margin,
1491 span_left_margin,
1492 span_right_margin,
1493 label_right_margin,
1494 column_width,
1495 max_line_len,
1496 );
1497
abe05a73
XL
1498 // Next, output the annotate source for this file
1499 for line_idx in 0..annotated_file.lines.len() {
1500 let previous_buffer_line = buffer.num_lines();
cc61c64b 1501
e1599b0c
XL
1502 let depths = self.render_source_line(
1503 &mut buffer,
1504 annotated_file.file.clone(),
1505 &annotated_file.lines[line_idx],
1506 width_offset,
1507 code_offset,
1508 margin,
1509 );
cc61c64b 1510
b7449926 1511 let mut to_add = FxHashMap::default();
5bcae85e 1512
abe05a73 1513 for (depth, style) in depths {
cdc7bbd5 1514 if multilines.remove(&depth).is_none() {
abe05a73
XL
1515 to_add.insert(depth, style);
1516 }
cc61c64b 1517 }
cc61c64b 1518
abe05a73
XL
1519 // Set the multiline annotation vertical lines to the left of
1520 // the code in this line.
1521 for (depth, style) in &multilines {
1522 for line in previous_buffer_line..buffer.num_lines() {
60c5eb7d 1523 draw_multiline_line(&mut buffer, line, width_offset, *depth, *style);
cc61c64b 1524 }
abe05a73
XL
1525 }
1526 // check to see if we need to print out or elide lines that come between
1527 // this annotated line and the next one.
1528 if line_idx < (annotated_file.lines.len() - 1) {
60c5eb7d
XL
1529 let line_idx_delta = annotated_file.lines[line_idx + 1].line_index
1530 - annotated_file.lines[line_idx].line_index;
abe05a73
XL
1531 if line_idx_delta > 2 {
1532 let last_buffer_line_num = buffer.num_lines();
1533 buffer.puts(last_buffer_line_num, 0, "...", Style::LineNumber);
1534
1535 // Set the multiline annotation vertical lines on `...` bridging line.
1536 for (depth, style) in &multilines {
60c5eb7d
XL
1537 draw_multiline_line(
1538 &mut buffer,
1539 last_buffer_line_num,
1540 width_offset,
1541 *depth,
1542 *style,
1543 );
abe05a73
XL
1544 }
1545 } else if line_idx_delta == 2 {
60c5eb7d
XL
1546 let unannotated_line = annotated_file
1547 .file
abe05a73
XL
1548 .get_line(annotated_file.lines[line_idx].line_index)
1549 .unwrap_or_else(|| Cow::from(""));
1550
1551 let last_buffer_line_num = buffer.num_lines();
1552
e1599b0c
XL
1553 self.draw_line(
1554 &mut buffer,
3c0e092e 1555 &normalize_whitespace(&unannotated_line),
e1599b0c
XL
1556 annotated_file.lines[line_idx + 1].line_index - 1,
1557 last_buffer_line_num,
1558 width_offset,
1559 code_offset,
1560 margin,
1561 );
abe05a73
XL
1562
1563 for (depth, style) in &multilines {
e1599b0c
XL
1564 draw_multiline_line(
1565 &mut buffer,
1566 last_buffer_line_num,
1567 width_offset,
1568 *depth,
1569 *style,
1570 );
abe05a73 1571 }
cc61c64b 1572 }
c1a9b12d 1573 }
cc61c64b 1574
abe05a73
XL
1575 multilines.extend(&to_add);
1576 }
7453a54e
SL
1577 }
1578 }
5bcae85e 1579
5bcae85e 1580 // final step: take our styled buffer, render it, then output it
abe05a73 1581 emit_to_destination(&buffer.render(), level, &mut self.dst, self.short_message)?;
5bcae85e
SL
1582
1583 Ok(())
1584 }
ff7c6d11 1585
9fa01778
XL
1586 fn emit_suggestion_default(
1587 &mut self,
1588 suggestion: &CodeSuggestion,
1589 level: &Level,
1590 max_line_num_len: usize,
1591 ) -> io::Result<()> {
5e7ed085
FG
1592 let Some(ref sm) = self.sm else {
1593 return Ok(());
e74abb32 1594 };
5bcae85e 1595
60c5eb7d
XL
1596 // Render the replacements for each suggestion
1597 let suggestions = suggestion.splice_lines(&**sm);
ba9703b0 1598 debug!("emit_suggestion_default: suggestions={:?}", suggestions);
60c5eb7d
XL
1599
1600 if suggestions.is_empty() {
1601 // Suggestions coming from macros can have malformed spans. This is a heavy handed
1602 // approach to avoid ICEs by ignoring the suggestion outright.
1603 return Ok(());
1604 }
1605
e74abb32
XL
1606 let mut buffer = StyledBuffer::new();
1607
1608 // Render the suggestion message
1b1a35ee
XL
1609 buffer.append(0, level.to_str(), Style::Level(*level));
1610 buffer.append(0, ": ", Style::HeaderMsg);
1611
e74abb32
XL
1612 self.msg_to_buffer(
1613 &mut buffer,
1614 &[(suggestion.msg.to_owned(), Style::NoStyle)],
1615 max_line_num_len,
1616 "suggestion",
1617 Some(Style::HeaderMsg),
1618 );
1619
e74abb32 1620 let mut row_num = 2;
94222f64 1621 draw_col_separator_no_space(&mut buffer, 1, max_line_num_len + 1);
e74abb32 1622 let mut notice_capitalization = false;
94222f64
XL
1623 for (complete, parts, highlights, only_capitalization) in
1624 suggestions.iter().take(MAX_SUGGESTIONS)
1625 {
e74abb32 1626 notice_capitalization |= only_capitalization;
e74abb32 1627
94222f64
XL
1628 let has_deletion = parts.iter().any(|p| p.is_deletion());
1629 let is_multiline = complete.lines().count() > 1;
1630
a2a8927a
XL
1631 enum DisplaySuggestion {
1632 Underline,
1633 Diff,
1634 None,
1635 }
1636
1637 let show_code_change = if has_deletion && !is_multiline {
1638 DisplaySuggestion::Diff
1639 } else if (parts.len() != 1 || parts[0].snippet.trim() != complete.trim())
1640 && !is_multiline
1641 {
1642 DisplaySuggestion::Underline
1643 } else {
1644 DisplaySuggestion::None
1645 };
94222f64 1646
a2a8927a 1647 if let DisplaySuggestion::Diff = show_code_change {
94222f64
XL
1648 row_num += 1;
1649 }
1650
1651 let file_lines = sm
60c5eb7d
XL
1652 .span_to_lines(parts[0].span)
1653 .expect("span_to_lines failed when emitting suggestion");
e74abb32 1654
94222f64 1655 assert!(!file_lines.lines.is_empty() || parts[0].span.is_dummy());
e74abb32
XL
1656
1657 let line_start = sm.lookup_char_pos(parts[0].span.lo()).line;
1658 draw_col_separator_no_space(&mut buffer, 1, max_line_num_len + 1);
e74abb32 1659 let mut lines = complete.lines();
5e7ed085
FG
1660 if lines.clone().next().is_none() {
1661 // Account for a suggestion to completely remove a line(s) with whitespace (#94192).
1662 let line_end = sm.lookup_char_pos(parts[0].span.hi()).line;
1663 for line in line_start..=line_end {
1664 buffer.puts(
1665 row_num - 1 + line - line_start,
1666 0,
1667 &self.maybe_anonymized(line),
1668 Style::LineNumber,
1669 );
1670 buffer.puts(
1671 row_num - 1 + line - line_start,
1672 max_line_num_len + 1,
1673 "- ",
1674 Style::Removal,
1675 );
1676 buffer.puts(
1677 row_num - 1 + line - line_start,
1678 max_line_num_len + 3,
1679 &normalize_whitespace(&*file_lines.file.get_line(line - 1).unwrap()),
1680 Style::Removal,
1681 );
1682 }
1683 row_num += line_end - line_start;
1684 }
94222f64
XL
1685 for (line_pos, (line, highlight_parts)) in
1686 lines.by_ref().zip(highlights).take(MAX_SUGGESTION_HIGHLIGHT_LINES).enumerate()
74b04a01 1687 {
e74abb32 1688 // Print the span column to avoid confusion
60c5eb7d
XL
1689 buffer.puts(
1690 row_num,
1691 0,
1692 &self.maybe_anonymized(line_start + line_pos),
1693 Style::LineNumber,
1694 );
a2a8927a 1695 if let DisplaySuggestion::Diff = show_code_change {
94222f64
XL
1696 // Add the line number for both addition and removal to drive the point home.
1697 //
1698 // N - fn foo<A: T>(bar: A) {
1699 // N + fn foo(bar: impl T) {
1700 buffer.puts(
1701 row_num - 1,
1702 0,
1703 &self.maybe_anonymized(line_start + line_pos),
1704 Style::LineNumber,
1705 );
1706 buffer.puts(row_num - 1, max_line_num_len + 1, "- ", Style::Removal);
1707 buffer.puts(
1708 row_num - 1,
1709 max_line_num_len + 3,
3c0e092e 1710 &normalize_whitespace(
94222f64
XL
1711 &*file_lines
1712 .file
1713 .get_line(file_lines.lines[line_pos].line_index)
1714 .unwrap(),
1715 ),
1716 Style::NoStyle,
1717 );
1718 buffer.puts(row_num, max_line_num_len + 1, "+ ", Style::Addition);
1719 } else if is_multiline {
1720 match &highlight_parts[..] {
1721 [SubstitutionHighlight { start: 0, end }] if *end == line.len() => {
1722 buffer.puts(row_num, max_line_num_len + 1, "+ ", Style::Addition);
1723 }
1724 [] => {
1725 draw_col_separator(&mut buffer, row_num, max_line_num_len + 1);
1726 }
1727 _ => {
1728 buffer.puts(row_num, max_line_num_len + 1, "~ ", Style::Addition);
1729 }
1730 }
1731 } else {
1732 draw_col_separator(&mut buffer, row_num, max_line_num_len + 1);
1733 }
1734
e74abb32 1735 // print the suggestion
3c0e092e 1736 buffer.append(row_num, &normalize_whitespace(line), Style::NoStyle);
94222f64
XL
1737
1738 // Colorize addition/replacements with green.
1739 for &SubstitutionHighlight { start, end } in highlight_parts {
1740 // Account for tabs when highlighting (#87972).
1741 let tabs: usize = line
1742 .chars()
1743 .take(start)
1744 .map(|ch| match ch {
1745 '\t' => 3,
1746 _ => 0,
1747 })
1748 .sum();
1749 buffer.set_style_range(
1750 row_num,
1751 max_line_num_len + 3 + start + tabs,
1752 max_line_num_len + 3 + end + tabs,
1753 Style::Addition,
1754 true,
1755 );
1756 }
e74abb32 1757 row_num += 1;
0531ce1d 1758 }
94b46f34 1759
e74abb32
XL
1760 // This offset and the ones below need to be signed to account for replacement code
1761 // that is shorter than the original code.
dfeec247 1762 let mut offsets: Vec<(usize, isize)> = Vec::new();
e74abb32
XL
1763 // Only show an underline in the suggestions if the suggestion is not the
1764 // entirety of the code being shown and the displayed code is not multiline.
a2a8927a 1765 if let DisplaySuggestion::Diff | DisplaySuggestion::Underline = show_code_change {
e74abb32
XL
1766 draw_col_separator(&mut buffer, row_num, max_line_num_len + 1);
1767 for part in parts {
1768 let span_start_pos = sm.lookup_char_pos(part.span.lo()).col_display;
1769 let span_end_pos = sm.lookup_char_pos(part.span.hi()).col_display;
1770
1771 // Do not underline the leading...
60c5eb7d 1772 let start = part.snippet.len().saturating_sub(part.snippet.trim_start().len());
e74abb32
XL
1773 // ...or trailing spaces. Account for substitutions containing unicode
1774 // characters.
60c5eb7d
XL
1775 let sub_len: usize = part
1776 .snippet
1777 .trim()
1778 .chars()
e74abb32
XL
1779 .map(|ch| unicode_width::UnicodeWidthChar::width(ch).unwrap_or(1))
1780 .sum();
1781
dfeec247
XL
1782 let offset: isize = offsets
1783 .iter()
1784 .filter_map(
1785 |(start, v)| if span_start_pos <= *start { None } else { Some(v) },
1786 )
1787 .sum();
e74abb32
XL
1788 let underline_start = (span_start_pos + start) as isize + offset;
1789 let underline_end = (span_start_pos + start + sub_len) as isize + offset;
dfeec247 1790 assert!(underline_start >= 0 && underline_end >= 0);
94222f64 1791 let padding: usize = max_line_num_len + 3;
e74abb32 1792 for p in underline_start..underline_end {
a2a8927a 1793 if let DisplaySuggestion::Underline = show_code_change {
94222f64
XL
1794 // If this is a replacement, underline with `^`, if this is an addition
1795 // underline with `+`.
60c5eb7d
XL
1796 buffer.putc(
1797 row_num,
94222f64
XL
1798 (padding as isize + p) as usize,
1799 if part.is_addition(&sm) { '+' } else { '~' },
1800 Style::Addition,
60c5eb7d 1801 );
94b46f34 1802 }
041b39d2 1803 }
a2a8927a 1804 if let DisplaySuggestion::Diff = show_code_change {
94222f64
XL
1805 // Colorize removal with red in diff format.
1806 buffer.set_style_range(
1807 row_num - 2,
1808 (padding as isize + span_start_pos as isize) as usize,
1809 (padding as isize + span_end_pos as isize) as usize,
1810 Style::Removal,
1811 true,
1812 );
1813 }
5bcae85e 1814
e74abb32 1815 // length of the code after substitution
60c5eb7d
XL
1816 let full_sub_len = part
1817 .snippet
1818 .chars()
e74abb32
XL
1819 .map(|ch| unicode_width::UnicodeWidthChar::width(ch).unwrap_or(1))
1820 .sum::<usize>() as isize;
1821
1822 // length of the code to be substituted
1823 let snippet_len = span_end_pos as isize - span_start_pos as isize;
1824 // For multiple substitutions, use the position *after* the previous
dfeec247
XL
1825 // substitutions have happened, only when further substitutions are
1826 // located strictly after.
1827 offsets.push((span_end_pos, full_sub_len - snippet_len));
7cac9316 1828 }
e74abb32 1829 row_num += 1;
7cac9316 1830 }
e74abb32
XL
1831
1832 // if we elided some lines, add an ellipsis
1833 if lines.next().is_some() {
1834 buffer.puts(row_num, max_line_num_len - 1, "...", Style::LineNumber);
a2a8927a 1835 } else if let DisplaySuggestion::None = show_code_change {
e74abb32
XL
1836 draw_col_separator_no_space(&mut buffer, row_num, max_line_num_len + 1);
1837 row_num += 1;
7453a54e 1838 }
c1a9b12d 1839 }
e74abb32
XL
1840 if suggestions.len() > MAX_SUGGESTIONS {
1841 let others = suggestions.len() - MAX_SUGGESTIONS;
60c5eb7d 1842 let msg = format!("and {} other candidate{}", others, pluralize!(others));
e74abb32
XL
1843 buffer.puts(row_num, max_line_num_len + 3, &msg, Style::NoStyle);
1844 } else if notice_capitalization {
1845 let msg = "notice the capitalization difference";
1846 buffer.puts(row_num, max_line_num_len + 3, &msg, Style::NoStyle);
1847 }
1848 emit_to_destination(&buffer.render(), level, &mut self.dst, self.short_message)?;
7453a54e 1849 Ok(())
c1a9b12d 1850 }
ff7c6d11 1851
e74abb32
XL
1852 fn emit_messages_default(
1853 &mut self,
1854 level: &Level,
1855 message: &[(String, Style)],
1856 code: &Option<DiagnosticId>,
1857 span: &MultiSpan,
1858 children: &[SubDiagnostic],
1859 suggestions: &[CodeSuggestion],
1860 ) {
0531ce1d
XL
1861 let max_line_num_len = if self.ui_testing {
1862 ANONYMIZED_LINE_NUM.len()
1863 } else {
6a06907d
XL
1864 let n = self.get_max_line_num(span, children);
1865 num_decimal_digits(n)
0531ce1d 1866 };
5bcae85e 1867
e74abb32 1868 match self.emit_message_default(span, message, code, level, max_line_num_len, false) {
5bcae85e 1869 Ok(()) => {
60c5eb7d
XL
1870 if !children.is_empty()
1871 || suggestions.iter().any(|s| s.style != SuggestionStyle::CompletelyHidden)
1872 {
5bcae85e 1873 let mut buffer = StyledBuffer::new();
abe05a73
XL
1874 if !self.short_message {
1875 draw_col_separator_no_space(&mut buffer, 0, max_line_num_len + 1);
1876 }
cdc7bbd5 1877 if let Err(e) = emit_to_destination(
60c5eb7d
XL
1878 &buffer.render(),
1879 level,
1880 &mut self.dst,
1881 self.short_message,
1882 ) {
cdc7bbd5 1883 panic!("failed to emit error: {}", e)
5bcae85e
SL
1884 }
1885 }
abe05a73
XL
1886 if !self.short_message {
1887 for child in children {
1888 let span = child.render_span.as_ref().unwrap_or(&child.span);
ba9703b0 1889 if let Err(err) = self.emit_message_default(
9fa01778
XL
1890 &span,
1891 &child.styled_message(),
1892 &None,
1893 &child.level,
1894 max_line_num_len,
1895 true,
1896 ) {
ba9703b0 1897 panic!("failed to emit error: {}", err);
abe05a73
XL
1898 }
1899 }
1900 for sugg in suggestions {
9fa01778
XL
1901 if sugg.style == SuggestionStyle::CompletelyHidden {
1902 // do not display this suggestion, it is meant only for tools
1903 } else if sugg.style == SuggestionStyle::HideCodeAlways {
ba9703b0 1904 if let Err(e) = self.emit_message_default(
9fa01778
XL
1905 &MultiSpan::new(),
1906 &[(sugg.msg.to_owned(), Style::HeaderMsg)],
1907 &None,
1908 &Level::Help,
1909 max_line_num_len,
1910 true,
1911 ) {
ba9703b0 1912 panic!("failed to emit error: {}", e);
9fa01778 1913 }
ba9703b0
XL
1914 } else if let Err(e) =
1915 self.emit_suggestion_default(sugg, &Level::Help, max_line_num_len)
1916 {
1917 panic!("failed to emit error: {}", e);
1918 };
5bcae85e
SL
1919 }
1920 }
1921 }
c30ab7b3 1922 Err(e) => panic!("failed to emit error: {}", e),
5bcae85e 1923 }
0531ce1d
XL
1924
1925 let mut dst = self.dst.writable();
dc9dc135 1926 match writeln!(dst) {
5bcae85e 1927 Err(e) => panic!("failed to emit error: {}", e),
ba9703b0
XL
1928 _ => {
1929 if let Err(e) = dst.flush() {
1930 panic!("failed to emit error: {}", e)
1931 }
1932 }
c1a9b12d 1933 }
c1a9b12d 1934 }
1a4d82fc 1935}
970d7e83 1936
dc9dc135
XL
1937impl FileWithAnnotatedLines {
1938 /// Preprocess all the annotations so that they are grouped by file and by line number
1939 /// This helps us quickly iterate over the whole message (including secondary file spans)
1940 pub fn collect_annotations(
1941 msp: &MultiSpan,
60c5eb7d 1942 source_map: &Option<Lrc<SourceMap>>,
dc9dc135 1943 ) -> Vec<FileWithAnnotatedLines> {
60c5eb7d
XL
1944 fn add_annotation_to_file(
1945 file_vec: &mut Vec<FileWithAnnotatedLines>,
1946 file: Lrc<SourceFile>,
1947 line_index: usize,
1948 ann: Annotation,
1949 ) {
dc9dc135
XL
1950 for slot in file_vec.iter_mut() {
1951 // Look through each of our files for the one we're adding to
1952 if slot.file.name == file.name {
1953 // See if we already have a line for it
1954 for line_slot in &mut slot.lines {
1955 if line_slot.line_index == line_index {
1956 line_slot.annotations.push(ann);
1957 return;
1958 }
1959 }
1960 // We don't have a line yet, create one
60c5eb7d 1961 slot.lines.push(Line { line_index, annotations: vec![ann] });
dc9dc135
XL
1962 slot.lines.sort();
1963 return;
1964 }
1965 }
1966 // This is the first time we're seeing the file
1967 file_vec.push(FileWithAnnotatedLines {
1968 file,
60c5eb7d 1969 lines: vec![Line { line_index, annotations: vec![ann] }],
dc9dc135
XL
1970 multiline_depth: 0,
1971 });
1972 }
1973
1974 let mut output = vec![];
1975 let mut multiline_annotations = vec![];
1976
1977 if let Some(ref sm) = source_map {
1978 for span_label in msp.span_labels() {
1979 if span_label.span.is_dummy() {
1980 continue;
1981 }
1982
1983 let lo = sm.lookup_char_pos(span_label.span.lo());
1984 let mut hi = sm.lookup_char_pos(span_label.span.hi());
1985
1986 // Watch out for "empty spans". If we get a span like 6..6, we
1987 // want to just display a `^` at 6, so convert that to
1988 // 6..7. This is degenerate input, but it's best to degrade
1989 // gracefully -- and the parser likes to supply a span like
1990 // that for EOF, in particular.
1991
1992 if lo.col_display == hi.col_display && lo.line == hi.line {
1993 hi.col_display += 1;
1994 }
1995
e74abb32 1996 if lo.line != hi.line {
dc9dc135
XL
1997 let ml = MultilineAnnotation {
1998 depth: 1,
1999 line_start: lo.line,
2000 line_end: hi.line,
2001 start_col: lo.col_display,
2002 end_col: hi.col_display,
2003 is_primary: span_label.is_primary,
e74abb32 2004 label: span_label.label,
dc9dc135
XL
2005 overlaps_exactly: false,
2006 };
e74abb32 2007 multiline_annotations.push((lo.file, ml));
dc9dc135 2008 } else {
e74abb32
XL
2009 let ann = Annotation {
2010 start_col: lo.col_display,
2011 end_col: hi.col_display,
2012 is_primary: span_label.is_primary,
2013 label: span_label.label,
2014 annotation_type: AnnotationType::Singleline,
2015 };
dc9dc135 2016 add_annotation_to_file(&mut output, lo.file, lo.line, ann);
e74abb32 2017 };
dc9dc135
XL
2018 }
2019 }
2020
2021 // Find overlapping multiline annotations, put them at different depths
2022 multiline_annotations.sort_by_key(|&(_, ref ml)| (ml.line_start, ml.line_end));
e74abb32
XL
2023 for (_, ann) in multiline_annotations.clone() {
2024 for (_, a) in multiline_annotations.iter_mut() {
dc9dc135
XL
2025 // Move all other multiline annotations overlapping with this one
2026 // one level to the right.
60c5eb7d
XL
2027 if !(ann.same_span(a))
2028 && num_overlap(ann.line_start, ann.line_end, a.line_start, a.line_end, true)
dc9dc135
XL
2029 {
2030 a.increase_depth();
2031 } else if ann.same_span(a) && &ann != a {
2032 a.overlaps_exactly = true;
2033 } else {
2034 break;
2035 }
2036 }
2037 }
2038
60c5eb7d 2039 let mut max_depth = 0; // max overlapping multiline spans
dc9dc135 2040 for (file, ann) in multiline_annotations {
e74abb32 2041 max_depth = max(max_depth, ann.depth);
dc9dc135
XL
2042 let mut end_ann = ann.as_end();
2043 if !ann.overlaps_exactly {
2044 // avoid output like
2045 //
2046 // | foo(
2047 // | _____^
2048 // | |_____|
2049 // | || bar,
2050 // | || );
2051 // | || ^
2052 // | ||______|
2053 // | |______foo
2054 // | baz
2055 //
2056 // and instead get
2057 //
2058 // | foo(
2059 // | _____^
2060 // | | bar,
2061 // | | );
2062 // | | ^
2063 // | | |
2064 // | |______foo
2065 // | baz
2066 add_annotation_to_file(&mut output, file.clone(), ann.line_start, ann.as_start());
2067 // 4 is the minimum vertical length of a multiline span when presented: two lines
2068 // of code and two lines of underline. This is not true for the special case where
2069 // the beginning doesn't have an underline, but the current logic seems to be
2070 // working correctly.
2071 let middle = min(ann.line_start + 4, ann.line_end);
2072 for line in ann.line_start + 1..middle {
2073 // Every `|` that joins the beginning of the span (`___^`) to the end (`|__^`).
2074 add_annotation_to_file(&mut output, file.clone(), line, ann.as_line());
2075 }
e74abb32
XL
2076 let line_end = ann.line_end - 1;
2077 if middle < line_end {
2078 add_annotation_to_file(&mut output, file.clone(), line_end, ann.as_line());
dc9dc135
XL
2079 }
2080 } else {
2081 end_ann.annotation_type = AnnotationType::Singleline;
2082 }
2083 add_annotation_to_file(&mut output, file, ann.line_end, end_ann);
2084 }
2085 for file_vec in output.iter_mut() {
2086 file_vec.multiline_depth = max_depth;
2087 }
2088 output
2089 }
2090}
2091
6a06907d
XL
2092// instead of taking the String length or dividing by 10 while > 0, we multiply a limit by 10 until
2093// we're higher. If the loop isn't exited by the `return`, the last multiplication will wrap, which
2094// is OK, because while we cannot fit a higher power of 10 in a usize, the loop will end anyway.
2095// This is also why we need the max number of decimal digits within a `usize`.
2096fn num_decimal_digits(num: usize) -> usize {
2097 #[cfg(target_pointer_width = "64")]
2098 const MAX_DIGITS: usize = 20;
2099
2100 #[cfg(target_pointer_width = "32")]
2101 const MAX_DIGITS: usize = 10;
2102
2103 #[cfg(target_pointer_width = "16")]
2104 const MAX_DIGITS: usize = 5;
2105
2106 let mut lim = 10;
2107 for num_digits in 1..MAX_DIGITS {
2108 if num < lim {
2109 return num_digits;
2110 }
2111 lim = lim.wrapping_mul(10);
2112 }
2113 MAX_DIGITS
2114}
2115
c295e0f8
XL
2116// We replace some characters so the CLI output is always consistent and underlines aligned.
2117const OUTPUT_REPLACEMENTS: &[(char, &str)] = &[
2118 ('\t', " "), // We do our own tab replacement
3c0e092e 2119 ('\u{200D}', ""), // Replace ZWJ with nothing for consistent terminal output of grapheme clusters.
c295e0f8 2120 ('\u{202A}', ""), // The following unicode text flow control characters are inconsistently
a2a8927a 2121 ('\u{202B}', ""), // supported across CLIs and can cause confusion due to the bytes on disk
c295e0f8
XL
2122 ('\u{202D}', ""), // not corresponding to the visible source code, so we replace them always.
2123 ('\u{202E}', ""),
2124 ('\u{2066}', ""),
2125 ('\u{2067}', ""),
2126 ('\u{2068}', ""),
2127 ('\u{202C}', ""),
2128 ('\u{2069}', ""),
2129];
2130
3c0e092e 2131fn normalize_whitespace(str: &str) -> String {
c295e0f8
XL
2132 let mut s = str.to_string();
2133 for (c, replacement) in OUTPUT_REPLACEMENTS {
2134 s = s.replace(*c, replacement);
2135 }
2136 s
5869c6ff
XL
2137}
2138
5bcae85e
SL
2139fn draw_col_separator(buffer: &mut StyledBuffer, line: usize, col: usize) {
2140 buffer.puts(line, col, "| ", Style::LineNumber);
7453a54e
SL
2141}
2142
5bcae85e 2143fn draw_col_separator_no_space(buffer: &mut StyledBuffer, line: usize, col: usize) {
476ff2be
SL
2144 draw_col_separator_no_space_with_style(buffer, line, col, Style::LineNumber);
2145}
2146
60c5eb7d
XL
2147fn draw_col_separator_no_space_with_style(
2148 buffer: &mut StyledBuffer,
2149 line: usize,
2150 col: usize,
2151 style: Style,
2152) {
476ff2be
SL
2153 buffer.putc(line, col, '|', style);
2154}
2155
60c5eb7d
XL
2156fn draw_range(
2157 buffer: &mut StyledBuffer,
2158 symbol: char,
2159 line: usize,
2160 col_from: usize,
2161 col_to: usize,
2162 style: Style,
2163) {
476ff2be
SL
2164 for col in col_from..col_to {
2165 buffer.putc(line, col, symbol, style);
2166 }
5bcae85e
SL
2167}
2168
2169fn draw_note_separator(buffer: &mut StyledBuffer, line: usize, col: usize) {
2170 buffer.puts(line, col, "= ", Style::LineNumber);
2171}
2172
60c5eb7d
XL
2173fn draw_multiline_line(
2174 buffer: &mut StyledBuffer,
2175 line: usize,
2176 offset: usize,
2177 depth: usize,
2178 style: Style,
2179) {
cc61c64b
XL
2180 buffer.putc(line, offset + depth - 1, '|', style);
2181}
2182
60c5eb7d
XL
2183fn num_overlap(
2184 a_start: usize,
2185 a_end: usize,
2186 b_start: usize,
2187 b_end: usize,
2188 inclusive: bool,
2189) -> bool {
2190 let extra = if inclusive { 1 } else { 0 };
2191 (b_start..b_end + extra).contains(&a_start) || (a_start..a_end + extra).contains(&b_start)
476ff2be 2192}
8bb4bdeb
XL
2193fn overlaps(a1: &Annotation, a2: &Annotation, padding: usize) -> bool {
2194 num_overlap(a1.start_col, a1.end_col + padding, a2.start_col, a2.end_col, false)
5bcae85e
SL
2195}
2196
60c5eb7d
XL
2197fn emit_to_destination(
2198 rendered_buffer: &[Vec<StyledString>],
2199 lvl: &Level,
2200 dst: &mut Destination,
2201 short_message: bool,
2202) -> io::Result<()> {
9fa01778 2203 use crate::lock;
9e0c209e 2204
0531ce1d
XL
2205 let mut dst = dst.writable();
2206
9e0c209e
SL
2207 // In order to prevent error message interleaving, where multiple error lines get intermixed
2208 // when multiple compiler processes error simultaneously, we emit errors with additional
2209 // steps.
2210 //
2211 // On Unix systems, we write into a buffered terminal rather than directly to a terminal. When
2212 // the .flush() is called we take the buffer created from the buffered writes and write it at
2213 // one shot. Because the Unix systems use ANSI for the colors, which is a text-based styling
2214 // scheme, this buffered approach works and maintains the styling.
2215 //
2216 // On Windows, styling happens through calls to a terminal API. This prevents us from using the
2217 // same buffering approach. Instead, we use a global Windows mutex, which we acquire long
2218 // enough to output the full error message, then we release.
2219 let _buffer_lock = lock::acquire_global_lock("rustc_errors");
0531ce1d 2220 for (pos, line) in rendered_buffer.iter().enumerate() {
5bcae85e 2221 for part in line {
ba9703b0 2222 dst.apply_style(*lvl, part.style)?;
5bcae85e 2223 write!(dst, "{}", part.text)?;
0531ce1d 2224 dst.reset()?;
a7813a04 2225 }
0531ce1d 2226 if !short_message && (!lvl.is_failure_note() || pos != rendered_buffer.len() - 1) {
dc9dc135 2227 writeln!(dst)?;
abe05a73 2228 }
9cc50fc6 2229 }
9e0c209e 2230 dst.flush()?;
9cc50fc6
SL
2231 Ok(())
2232}
2233
5bcae85e 2234pub enum Destination {
0531ce1d
XL
2235 Terminal(StandardStream),
2236 Buffered(BufferWriter),
48663c56
XL
2237 // The bool denotes whether we should be emitting ansi color codes or not
2238 Raw(Box<(dyn Write + Send)>, bool),
9cc50fc6
SL
2239}
2240
0531ce1d
XL
2241pub enum WritableDst<'a> {
2242 Terminal(&'a mut StandardStream),
2243 Buffered(&'a mut BufferWriter, Buffer),
48663c56
XL
2244 Raw(&'a mut (dyn Write + Send)),
2245 ColoredRaw(Ansi<&'a mut (dyn Write + Send)>),
9e0c209e
SL
2246}
2247
9cc50fc6 2248impl Destination {
0531ce1d
XL
2249 fn from_stderr(color: ColorConfig) -> Destination {
2250 let choice = color.to_color_choice();
2251 // On Windows we'll be performing global synchronization on the entire
2252 // system for emitting rustc errors, so there's no need to buffer
2253 // anything.
2254 //
2255 // On non-Windows we rely on the atomicity of `write` to ensure errors
2256 // don't get all jumbled up.
2257 if cfg!(windows) {
2258 Terminal(StandardStream::stderr(choice))
2259 } else {
2260 Buffered(BufferWriter::stderr(choice))
9e0c209e
SL
2261 }
2262 }
2263
416331ca 2264 fn writable(&mut self) -> WritableDst<'_> {
0531ce1d
XL
2265 match *self {
2266 Destination::Terminal(ref mut t) => WritableDst::Terminal(t),
2267 Destination::Buffered(ref mut t) => {
2268 let buf = t.buffer();
2269 WritableDst::Buffered(t, buf)
2270 }
48663c56
XL
2271 Destination::Raw(ref mut t, false) => WritableDst::Raw(t),
2272 Destination::Raw(ref mut t, true) => WritableDst::ColoredRaw(Ansi::new(t)),
9cc50fc6
SL
2273 }
2274 }
fc512014
XL
2275
2276 fn supports_color(&self) -> bool {
2277 match *self {
2278 Self::Terminal(ref stream) => stream.supports_color(),
2279 Self::Buffered(ref buffer) => buffer.buffer().supports_color(),
2280 Self::Raw(_, supports_color) => supports_color,
2281 }
2282 }
0531ce1d 2283}
9cc50fc6 2284
0531ce1d 2285impl<'a> WritableDst<'a> {
c30ab7b3 2286 fn apply_style(&mut self, lvl: Level, style: Style) -> io::Result<()> {
0531ce1d 2287 let mut spec = ColorSpec::new();
a7813a04 2288 match style {
94222f64
XL
2289 Style::Addition => {
2290 spec.set_fg(Some(Color::Green)).set_intense(true);
2291 }
2292 Style::Removal => {
2293 spec.set_fg(Some(Color::Red)).set_intense(true);
2294 }
041b39d2 2295 Style::LineAndColumn => {}
a7813a04 2296 Style::LineNumber => {
0531ce1d
XL
2297 spec.set_bold(true);
2298 spec.set_intense(true);
9e0c209e 2299 if cfg!(windows) {
0531ce1d 2300 spec.set_fg(Some(Color::Cyan));
9e0c209e 2301 } else {
0531ce1d 2302 spec.set_fg(Some(Color::Blue));
9e0c209e 2303 }
a7813a04 2304 }
5bcae85e 2305 Style::Quotation => {}
dc9dc135 2306 Style::MainHeaderMsg => {
0531ce1d 2307 spec.set_bold(true);
9e0c209e 2308 if cfg!(windows) {
60c5eb7d 2309 spec.set_intense(true).set_fg(Some(Color::White));
9e0c209e 2310 }
a7813a04
XL
2311 }
2312 Style::UnderlinePrimary | Style::LabelPrimary => {
0531ce1d
XL
2313 spec = lvl.color();
2314 spec.set_bold(true);
a7813a04 2315 }
60c5eb7d
XL
2316 Style::UnderlineSecondary | Style::LabelSecondary => {
2317 spec.set_bold(true).set_intense(true);
9e0c209e 2318 if cfg!(windows) {
0531ce1d 2319 spec.set_fg(Some(Color::Cyan));
9e0c209e 2320 } else {
0531ce1d 2321 spec.set_fg(Some(Color::Blue));
9e0c209e 2322 }
a7813a04 2323 }
60c5eb7d 2324 Style::HeaderMsg | Style::NoStyle => {}
0531ce1d
XL
2325 Style::Level(lvl) => {
2326 spec = lvl.color();
2327 spec.set_bold(true);
2328 }
2329 Style::Highlight => {
2330 spec.set_bold(true);
a7813a04
XL
2331 }
2332 }
0531ce1d 2333 self.set_color(&spec)
a7813a04
XL
2334 }
2335
0531ce1d 2336 fn set_color(&mut self, color: &ColorSpec) -> io::Result<()> {
a7813a04 2337 match *self {
0531ce1d
XL
2338 WritableDst::Terminal(ref mut t) => t.set_color(color),
2339 WritableDst::Buffered(_, ref mut t) => t.set_color(color),
48663c56 2340 WritableDst::ColoredRaw(ref mut t) => t.set_color(color),
60c5eb7d 2341 WritableDst::Raw(_) => Ok(()),
a7813a04 2342 }
a7813a04
XL
2343 }
2344
0531ce1d 2345 fn reset(&mut self) -> io::Result<()> {
a7813a04 2346 match *self {
0531ce1d
XL
2347 WritableDst::Terminal(ref mut t) => t.reset(),
2348 WritableDst::Buffered(_, ref mut t) => t.reset(),
48663c56 2349 WritableDst::ColoredRaw(ref mut t) => t.reset(),
0531ce1d 2350 WritableDst::Raw(_) => Ok(()),
a7813a04 2351 }
a7813a04 2352 }
9cc50fc6
SL
2353}
2354
0531ce1d 2355impl<'a> Write for WritableDst<'a> {
c34b1796
AL
2356 fn write(&mut self, bytes: &[u8]) -> io::Result<usize> {
2357 match *self {
0531ce1d
XL
2358 WritableDst::Terminal(ref mut t) => t.write(bytes),
2359 WritableDst::Buffered(_, ref mut buf) => buf.write(bytes),
2360 WritableDst::Raw(ref mut w) => w.write(bytes),
48663c56 2361 WritableDst::ColoredRaw(ref mut t) => t.write(bytes),
c34b1796
AL
2362 }
2363 }
0531ce1d 2364
c34b1796 2365 fn flush(&mut self) -> io::Result<()> {
1a4d82fc 2366 match *self {
0531ce1d
XL
2367 WritableDst::Terminal(ref mut t) => t.flush(),
2368 WritableDst::Buffered(_, ref mut buf) => buf.flush(),
2369 WritableDst::Raw(ref mut w) => w.flush(),
48663c56 2370 WritableDst::ColoredRaw(ref mut w) => w.flush(),
0531ce1d
XL
2371 }
2372 }
2373}
2374
2375impl<'a> Drop for WritableDst<'a> {
2376 fn drop(&mut self) {
ba9703b0
XL
2377 if let WritableDst::Buffered(ref mut dst, ref mut buf) = self {
2378 drop(dst.print(buf));
1a4d82fc
JJ
2379 }
2380 }
9e0c209e 2381}
e74abb32
XL
2382
2383/// Whether the original and suggested code are visually similar enough to warrant extra wording.
60c5eb7d 2384pub fn is_case_difference(sm: &SourceMap, suggested: &str, sp: Span) -> bool {
e74abb32 2385 // FIXME: this should probably be extended to also account for `FO0` → `FOO` and unicode.
60c5eb7d
XL
2386 let found = match sm.span_to_snippet(sp) {
2387 Ok(snippet) => snippet,
2388 Err(e) => {
c295e0f8 2389 warn!(error = ?e, "Invalid span {:?}", sp);
60c5eb7d
XL
2390 return false;
2391 }
2392 };
e74abb32
XL
2393 let ascii_confusables = &['c', 'f', 'i', 'k', 'o', 's', 'u', 'v', 'w', 'x', 'y', 'z'];
2394 // All the chars that differ in capitalization are confusable (above):
cdc7bbd5 2395 let confusable = iter::zip(found.chars(), suggested.chars())
60c5eb7d
XL
2396 .filter(|(f, s)| f != s)
2397 .all(|(f, s)| (ascii_confusables.contains(&f) || ascii_confusables.contains(&s)));
e74abb32
XL
2398 confusable && found.to_lowercase() == suggested.to_lowercase()
2399 // FIXME: We sometimes suggest the same thing we already have, which is a
2400 // bug, but be defensive against that here.
2401 && found != suggested
2402}