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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
mod display;
mod draw;
mod source;
mod write;
pub use crate::{
draw::{ColorGenerator, Fmt},
source::{sources, Cache, FileCache, FnCache, Line, Source},
};
pub use yansi::Color;
#[cfg(any(feature = "concolor", doc))]
pub use crate::draw::StdoutFmt;
use crate::display::*;
use std::{
cmp::{Eq, PartialEq},
fmt,
hash::Hash,
io::{self, Write},
ops::Range,
};
use unicode_width::UnicodeWidthChar;
/// A trait implemented by spans within a character-based source.
pub trait Span {
/// The identifier used to uniquely refer to a source. In most cases, this is the fully-qualified path of the file.
type SourceId: PartialEq + ToOwned + ?Sized;
/// Get the identifier of the source that this span refers to.
fn source(&self) -> &Self::SourceId;
/// Get the start offset of this span.
///
/// Offsets are zero-indexed character offsets from the beginning of the source.
fn start(&self) -> usize;
/// Get the (exclusive) end offset of this span.
///
/// The end offset should *always* be greater than or equal to the start offset as given by [`Span::start`].
///
/// Offsets are zero-indexed character offsets from the beginning of the source.
fn end(&self) -> usize;
/// Get the length of this span (difference between the start of the span and the end of the span).
fn len(&self) -> usize {
self.end().saturating_sub(self.start())
}
/// Returns `true` if this span has length zero.
fn is_empty(&self) -> bool {
self.len() == 0
}
/// Determine whether the span contains the given offset.
fn contains(&self, offset: usize) -> bool {
(self.start()..self.end()).contains(&offset)
}
}
impl Span for Range<usize> {
type SourceId = ();
fn source(&self) -> &Self::SourceId {
&()
}
fn start(&self) -> usize {
self.start
}
fn end(&self) -> usize {
self.end
}
}
impl<Id: fmt::Debug + Hash + PartialEq + Eq + ToOwned> Span for (Id, Range<usize>) {
type SourceId = Id;
fn source(&self) -> &Self::SourceId {
&self.0
}
fn start(&self) -> usize {
self.1.start
}
fn end(&self) -> usize {
self.1.end
}
}
/// A type that represents the way a label should be displayed.
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
struct LabelDisplay {
msg: Option<String>,
color: Option<Color>,
order: i32,
priority: i32,
}
/// A type that represents a labelled section of source code.
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub struct Label<S = Range<usize>> {
span: S,
display_info: LabelDisplay,
}
impl<S: Span> Label<S> {
/// Create a new [`Label`].
/// If the span is specified as a `Range<usize>` the numbers have to be zero-indexed character offsets.
///
/// # Panics
///
/// Panics if the given span is backwards.
pub fn new(span: S) -> Self {
assert!(span.start() <= span.end(), "Label start is after its end");
Self {
span,
display_info: LabelDisplay {
msg: None,
color: None,
order: 0,
priority: 0,
},
}
}
/// Give this label a message.
pub fn with_message<M: ToString>(mut self, msg: M) -> Self {
self.display_info.msg = Some(msg.to_string());
self
}
/// Give this label a highlight colour.
pub fn with_color(mut self, color: Color) -> Self {
self.display_info.color = Some(color);
self
}
/// Specify the order of this label relative to other labels.
///
/// Lower values correspond to this label having an earlier order.
///
/// If unspecified, labels default to an order of `0`.
///
/// When labels are displayed after a line the crate needs to decide which labels should be displayed first. By
/// Default, the orders labels based on where their associated line meets the text (see [`LabelAttach`]).
/// Additionally, multi-line labels are ordered before inline labels. You can use this function to override this
/// behaviour.
pub fn with_order(mut self, order: i32) -> Self {
self.display_info.order = order;
self
}
/// Specify the priority of this label relative to other labels.
///
/// Higher values correspond to this label having a higher priority.
///
/// If unspecified, labels default to a priority of `0`.
///
/// Label spans can overlap. When this happens, the crate needs to decide which labels to prioritise for various
/// purposes such as highlighting. By default, spans with a smaller length get a higher priority. You can use this
/// function to override this behaviour.
pub fn with_priority(mut self, priority: i32) -> Self {
self.display_info.priority = priority;
self
}
}
/// A type representing a diagnostic that is ready to be written to output.
pub struct Report<'a, S: Span = Range<usize>> {
kind: ReportKind<'a>,
code: Option<String>,
msg: Option<String>,
note: Option<String>,
help: Option<String>,
location: (<S::SourceId as ToOwned>::Owned, usize),
labels: Vec<Label<S>>,
config: Config,
}
impl<S: Span> Report<'_, S> {
/// Begin building a new [`Report`].
pub fn build<Id: Into<<S::SourceId as ToOwned>::Owned>>(
kind: ReportKind,
src_id: Id,
offset: usize,
) -> ReportBuilder<S> {
ReportBuilder {
kind,
code: None,
msg: None,
note: None,
help: None,
location: (src_id.into(), offset),
labels: Vec::new(),
config: Config::default(),
}
}
/// Write this diagnostic out to `stderr`.
pub fn eprint<C: Cache<S::SourceId>>(&self, cache: C) -> io::Result<()> {
self.write(cache, io::stderr())
}
/// Write this diagnostic out to `stdout`.
///
/// In most cases, [`Report::eprint`] is the
/// ['more correct'](https://en.wikipedia.org/wiki/Standard_streams#Standard_error_(stderr)) function to use.
pub fn print<C: Cache<S::SourceId>>(&self, cache: C) -> io::Result<()> {
self.write_for_stdout(cache, io::stdout())
}
}
impl<'a, S: Span> fmt::Debug for Report<'a, S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Report")
.field("kind", &self.kind)
.field("code", &self.code)
.field("msg", &self.msg)
.field("note", &self.note)
.field("help", &self.help)
.field("config", &self.config)
.finish()
}
}
/// A type that defines the kind of report being produced.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ReportKind<'a> {
/// The report is an error and indicates a critical problem that prevents the program performing the requested
/// action.
Error,
/// The report is a warning and indicates a likely problem, but not to the extent that the requested action cannot
/// be performed.
Warning,
/// The report is advice to the user about a potential anti-pattern of other benign issues.
Advice,
/// The report is of a kind not built into Ariadne.
Custom(&'a str, Color),
}
impl fmt::Display for ReportKind<'_> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
ReportKind::Error => write!(f, "Error"),
ReportKind::Warning => write!(f, "Warning"),
ReportKind::Advice => write!(f, "Advice"),
ReportKind::Custom(s, _) => write!(f, "{}", s),
}
}
}
/// A type used to build a [`Report`].
pub struct ReportBuilder<'a, S: Span> {
kind: ReportKind<'a>,
code: Option<String>,
msg: Option<String>,
note: Option<String>,
help: Option<String>,
location: (<S::SourceId as ToOwned>::Owned, usize),
labels: Vec<Label<S>>,
config: Config,
}
impl<'a, S: Span> ReportBuilder<'a, S> {
/// Give this report a numerical code that may be used to more precisely look up the error in documentation.
pub fn with_code<C: fmt::Display>(mut self, code: C) -> Self {
self.code = Some(format!("{:02}", code));
self
}
/// Set the message of this report.
pub fn set_message<M: ToString>(&mut self, msg: M) {
self.msg = Some(msg.to_string());
}
/// Add a message to this report.
pub fn with_message<M: ToString>(mut self, msg: M) -> Self {
self.msg = Some(msg.to_string());
self
}
/// Set the note of this report.
pub fn set_note<N: ToString>(&mut self, note: N) {
self.note = Some(note.to_string());
}
/// Set the note of this report.
pub fn with_note<N: ToString>(mut self, note: N) -> Self {
self.set_note(note);
self
}
/// Set the help message of this report.
pub fn set_help<N: ToString>(&mut self, note: N) {
self.help = Some(note.to_string());
}
/// Set the help message of this report.
pub fn with_help<N: ToString>(mut self, note: N) -> Self {
self.set_help(note);
self
}
/// Add a label to the report.
pub fn add_label(&mut self, label: Label<S>) {
self.add_labels(std::iter::once(label));
}
/// Add multiple labels to the report.
pub fn add_labels<L: IntoIterator<Item = Label<S>>>(&mut self, labels: L) {
let config = &self.config; // This would not be necessary in Rust 2021 edition
self.labels.extend(labels.into_iter().map(|mut label| {
label.display_info.color = config.filter_color(label.display_info.color);
label
}));
}
/// Add a label to the report.
pub fn with_label(mut self, label: Label<S>) -> Self {
self.add_label(label);
self
}
/// Add multiple labels to the report.
pub fn with_labels<L: IntoIterator<Item = Label<S>>>(mut self, labels: L) -> Self {
self.add_labels(labels);
self
}
/// Use the given [`Config`] to determine diagnostic attributes.
pub fn with_config(mut self, config: Config) -> Self {
self.config = config;
self
}
/// Finish building the [`Report`].
pub fn finish(self) -> Report<'a, S> {
Report {
kind: self.kind,
code: self.code,
msg: self.msg,
note: self.note,
help: self.help,
location: self.location,
labels: self.labels,
config: self.config,
}
}
}
impl<'a, S: Span> fmt::Debug for ReportBuilder<'a, S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ReportBuilder")
.field("kind", &self.kind)
.field("code", &self.code)
.field("msg", &self.msg)
.field("note", &self.note)
.field("help", &self.help)
.field("config", &self.config)
.finish()
}
}
/// The attachment point of inline label arrows
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum LabelAttach {
/// Arrows should attach to the start of the label span.
Start,
/// Arrows should attach to the middle of the label span (or as close to the middle as we can get).
Middle,
/// Arrows should attach to the end of the label span.
End,
}
/// Possible character sets to use when rendering diagnostics.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum CharSet {
/// Unicode characters (an attempt is made to use only commonly-supported characters).
Unicode,
/// ASCII-only characters.
Ascii,
}
/// Possible character sets to use when rendering diagnostics.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum IndexType {
/// Byte spans. Always results in O(1) loopups
Byte,
/// Char based spans. May incur O(n) lookups
Char,
}
/// A type used to configure a report
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct Config {
cross_gap: bool,
label_attach: LabelAttach,
compact: bool,
underlines: bool,
multiline_arrows: bool,
color: bool,
tab_width: usize,
char_set: CharSet,
index_type: IndexType,
}
impl Config {
/// When label lines cross one-another, should there be a gap?
///
/// The alternative to this is to insert crossing characters. However, these interact poorly with label colours.
///
/// If unspecified, this defaults to [`false`].
pub fn with_cross_gap(mut self, cross_gap: bool) -> Self {
self.cross_gap = cross_gap;
self
}
/// Where should inline labels attach to their spans?
///
/// If unspecified, this defaults to [`LabelAttach::Middle`].
pub fn with_label_attach(mut self, label_attach: LabelAttach) -> Self {
self.label_attach = label_attach;
self
}
/// Should the report remove gaps to minimise used space?
///
/// If unspecified, this defaults to [`false`].
pub fn with_compact(mut self, compact: bool) -> Self {
self.compact = compact;
self
}
/// Should underlines be used for label span where possible?
///
/// If unspecified, this defaults to [`true`].
pub fn with_underlines(mut self, underlines: bool) -> Self {
self.underlines = underlines;
self
}
/// Should arrows be used to point to the bounds of multi-line spans?
///
/// If unspecified, this defaults to [`true`].
pub fn with_multiline_arrows(mut self, multiline_arrows: bool) -> Self {
self.multiline_arrows = multiline_arrows;
self
}
/// Should colored output should be enabled?
///
/// If unspecified, this defaults to [`true`].
pub fn with_color(mut self, color: bool) -> Self {
self.color = color;
self
}
/// How many characters width should tab characters be?
///
/// If unspecified, this defaults to `4`.
pub fn with_tab_width(mut self, tab_width: usize) -> Self {
self.tab_width = tab_width;
self
}
/// What character set should be used to display dynamic elements such as boxes and arrows?
///
/// If unspecified, this defaults to [`CharSet::Unicode`].
pub fn with_char_set(mut self, char_set: CharSet) -> Self {
self.char_set = char_set;
self
}
/// Should this report use byte spans instead of char spans?
///
/// If unspecified, this defaults to 'false'
pub fn with_index_type(mut self, index_type: IndexType) -> Self {
self.index_type = index_type;
self
}
fn error_color(&self) -> Option<Color> {
Some(Color::Red).filter(|_| self.color)
}
fn warning_color(&self) -> Option<Color> {
Some(Color::Yellow).filter(|_| self.color)
}
fn advice_color(&self) -> Option<Color> {
Some(Color::Fixed(147)).filter(|_| self.color)
}
fn margin_color(&self) -> Option<Color> {
Some(Color::Fixed(246)).filter(|_| self.color)
}
fn skipped_margin_color(&self) -> Option<Color> {
Some(Color::Fixed(240)).filter(|_| self.color)
}
fn unimportant_color(&self) -> Option<Color> {
Some(Color::Fixed(249)).filter(|_| self.color)
}
fn note_color(&self) -> Option<Color> {
Some(Color::Fixed(115)).filter(|_| self.color)
}
fn filter_color(&self, color: Option<Color>) -> Option<Color> {
color.filter(|_| self.color)
}
// Find the character that should be drawn and the number of times it should be drawn for each char
fn char_width(&self, c: char, col: usize) -> (char, usize) {
match c {
'\t' => {
// Find the column that the tab should end at
let tab_end = (col / self.tab_width + 1) * self.tab_width;
(' ', tab_end - col)
}
c if c.is_whitespace() => (' ', 1),
_ => (c, c.width().unwrap_or(1)),
}
}
}
impl Default for Config {
fn default() -> Self {
Self {
cross_gap: true,
label_attach: LabelAttach::Middle,
compact: false,
underlines: true,
multiline_arrows: true,
color: true,
tab_width: 4,
char_set: CharSet::Unicode,
index_type: IndexType::Char,
}
}
}
#[test]
#[should_panic]
#[allow(clippy::reversed_empty_ranges)]
fn backwards_label_should_panic() {
Label::new(1..0);
}