1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
use display_list::{DisplayAnnotationPart, DisplayAnnotationType, DisplayHeaderType, DisplayLine, DisplayList, DisplayMark, DisplayMarkType, DisplayTextFragment}; use display_list_formatting::DisplayListFormatting; use std::fmt; struct Formatter {} impl DisplayListFormatting for Formatter { fn format_annotation_type(annotation_type: &DisplayAnnotationType) -> String { match annotation_type { DisplayAnnotationType::Error => "error".to_string(), DisplayAnnotationType::Warning => "warning".to_string(), DisplayAnnotationType::Info => "info".to_string(), DisplayAnnotationType::Note => "note".to_string(), DisplayAnnotationType::Help => "help".to_string(), } } fn format_inline_marks(inline_marks: &[DisplayMark], inline_marks_width: usize) -> String { format!( "{:>width$}", inline_marks .iter() .map(|mark| { let sigil = match mark.mark_type { DisplayMarkType::AnnotationThrough => "|", DisplayMarkType::AnnotationStart => "/", }; sigil }) .collect::<Vec<&str>>() .join(""), width = inline_marks_width ) } fn format_source_annotation_lines( f: &mut fmt::Formatter, lineno_width: usize, inline_marks: String, range: &(usize, usize), label: &[DisplayTextFragment], annotation_type: &DisplayAnnotationType, annotation_part: &DisplayAnnotationPart, ) -> fmt::Result { let indent_char = match annotation_part { DisplayAnnotationPart::Singleline => " ", DisplayAnnotationPart::MultilineStart => "_", DisplayAnnotationPart::MultilineEnd => "_", }; let mark = match annotation_type { DisplayAnnotationType::Error => "^", DisplayAnnotationType::Warning => "-", DisplayAnnotationType::Info => "-", DisplayAnnotationType::Note => "-", DisplayAnnotationType::Help => "-", }; if let Some((first, rest)) = Self::format_label(label) .lines() .collect::<Vec<&str>>() .split_first() { let indent = range.1; writeln!( f, "{}{}{}{} {}", format!("{} |", " ".repeat(lineno_width)), inline_marks, indent_char.repeat(range.0), mark.repeat(range.1 - range.0), first, )?; for line in rest { writeln!( f, "{}{}{} {}", format!("{} |", " ".repeat(lineno_width)), inline_marks, " ".repeat(indent), line, )?; } } else { writeln!( f, "{}{}{}{}", format!("{} |", " ".repeat(lineno_width)), inline_marks, indent_char.repeat(range.0), mark.repeat(range.1 - range.0), )?; } Ok(()) } fn format_label(label: &[DisplayTextFragment]) -> String { label .iter() .map(|fragment| fragment.content.as_str()) .collect::<Vec<&str>>() .join("") } fn format_line( f: &mut fmt::Formatter, dl: &DisplayLine, lineno_width: usize, inline_marks_width: usize, ) -> fmt::Result { match dl { DisplayLine::Annotation { annotation_type, id, aligned, label, } => { let name = if let Some(id) = id { format!("{}[{}]", Self::format_annotation_type(&annotation_type), id) } else { Self::format_annotation_type(&annotation_type) }; let prefix = if *aligned { format!("{} = ", " ".repeat(lineno_width)) } else { "".to_string() }; if let Some((first, rest)) = Self::format_label(label) .lines() .collect::<Vec<&str>>() .split_first() { let indent = prefix.len() + name.len() + 2; writeln!(f, "{}{}{}", prefix, name, format!(": {}", first))?; for line in rest { writeln!(f, "{}{}", " ".repeat(indent), format!("{}", line))?; } } Ok(()) } DisplayLine::Origin { path, pos, header_type, } => { let header_sigil = match header_type { DisplayHeaderType::Initial => "-->", DisplayHeaderType::Continuation => ":::", }; if let Some((row, col)) = pos { writeln!( f, "{}{} {}:{}:{}", " ".repeat(lineno_width), header_sigil, path, row, col ) } else { writeln!(f, "{}{} {}", " ".repeat(lineno_width), header_sigil, path,) } } DisplayLine::EmptySource => writeln!(f, "{} |", " ".repeat(lineno_width)), DisplayLine::Source { lineno, inline_marks, content, .. } => writeln!( f, "{:>width$} |{} {}", lineno, Self::format_inline_marks(&inline_marks, inline_marks_width), content, width = lineno_width, ), DisplayLine::SourceAnnotation { inline_marks, range, label, annotation_type, annotation_part, } => Self::format_source_annotation_lines( f, lineno_width, Self::format_inline_marks(&inline_marks, inline_marks_width), range, &label, &annotation_type, &annotation_part, ), DisplayLine::Fold { inline_marks } => writeln!( f, "... {}", Self::format_inline_marks(&inline_marks, inline_marks_width), ), } } } impl fmt::Display for DisplayList { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { let lineno_width = self.body.iter().fold(0, |max, line| match line { DisplayLine::Source { lineno, .. } => { let width = lineno.to_string().len(); if width > max { width } else { max } } _ => max, }); let inline_marks_width = self.body.iter().fold(0, |max, line| match line { DisplayLine::Source { inline_marks, .. } => { let width = inline_marks.len(); if width > max { width + 1 } else { max } } _ => max, }); for line in &self.body { Formatter::format_line(f, line, lineno_width, inline_marks_width)?; } Ok(()) } }