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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
//! # proc-macro-error //! //! This crate aims to make error reporting in proc-macros simple and easy to use. //! Migrate from `panic!`-based errors for as little effort as possible! //! //! Also, there's ability to [append a dummy token stream](dummy/index.html) to your errors. //! //! ## Limitations //! //! - Warnings are emitted only on nightly, they're ignored on stable. //! - "help" suggestions cannot have their own span info on stable, (they inherit parent span). //! - If a panic occurs somewhere in your macro no errors will be displayed. This is not a //! technical limitation but intentional design, `panic` is not for error reporting. //! //! ## Guide //! //! ### Macros //! //! First of all - **all the emitting-related API must be used within a function //! annotated with [`#[proc_macro_error]`](#proc_macro_error-attribute) attribute**. You'll just get a //! panic otherwise, no errors will be shown. //! //! For most of the time you will be using macros. //! //! - [`abort!`]: //! //! Very much panic-like usage - abort execution and show the error. Expands to [`!`] (never type). //! //! - [`abort_call_site!`]: //! //! Shortcut for `abort!(Span::call_site(), ...)`. Expands to [`!`] (never type). //! //! - [`emit_error!`]: //! //! [`proc_macro::Diagnostic`]-like usage - emit the error but do not abort the macro. //! The compilation will fail nonetheless. Expands to [`()`] (unit type). //! //! - [`emit_call_site_error!`]: //! //! Shortcut for `emit_error!(Span::call_site(), ...)`. Expands to [`()`] (unit type). //! //! - [`emit_warning!`]: //! //! Like `emit_error!` but emit a warning instead of error. The compilation won't fail //! because of warnings. //! Expands to [`()`] (unit type). //! //! **Beware**: warnings are nightly only, they are completely ignored on stable. //! //! - [`emit_call_site_warning!`]: //! //! Shortcut for `emit_warning!(Span::call_site(), ...)`. Expands to `()` (unit type). //! //! - [`diagnostic`]: //! //! Build instance of `Diagnostic` in format-like style. //! //! ### Syntax //! //! All the macros have pretty much the same syntax: //! //! 1. ```ignore //! abort!(single_expr) //! ``` //! Shortcut for `Diagnostic::from().abort()` //! //! 2. ```ignore //! abort!(span, message) //! ``` //! Shortcut for `Diagnostic::spanned(span, message.to_string()).abort()` //! //! 3. ```ignore //! abort!(span, format_literal, format_args...) //! ``` //! Shortcut for `Diagnostic::spanned(span, format!(format_literal, format_args...)).abort()` //! //! That's it. `abort!`, `emit_warning`, `emit_error` share this exact syntax. //! `abort_call_site!`, `emit_call_site_warning`, `emit_call_site_error` lack 1 form //! and do not take span in 2 and 3 forms. //! //! `diagnostic!` require `Level` instance between `span` and second argument (1 form is the same). //! //! #### Note attachments //! //! 3. Every macro can have "note" attachments (only 2 and 3 form). //! ```ignore //! let opt_help = if have_some_info { Some("did you mean `this`?") } else { None }; //! //! abort!( //! span, message; // <--- attachments start with `;` (semicolon) //! //! help = "format {} {}", "arg1", "arg2"; // <--- every attachment ends with `;`, //! // maybe except the last one //! //! note = "to_string"; // <--- one arg uses `.to_string()` instead of `format!()` //! //! yay = "I see what {} did here", "you"; // <--- "help =" and "hint =" are mapped to Diagnostic::help //! // anything else is Diagnostic::note //! //! wow = note_span => "custom span"; // <--- attachments can have their own span //! // it takes effect only on nightly though //! //! hint =? opt_help; // <-- "optional" attachment, get displayed only if `Some` //! // must be single `Option` expression //! //! note =? note_span => opt_help // <-- optional attachments can have custom spans too //! ) //! ``` //! //! ### `#[proc_macro_error]` attribute //! //! **This attribute MUST be present on the top level of your macro.** //! //! This attribute performs the setup and cleanup necessary to make things work. //! //! #### Syntax //! //! `#[proc_macro_error]` or `#[proc_macro_error(settings...)]`, where `settings...` //! is a comma-separated list of: //! //! - `proc_macro_hack`: //! //! To correctly cooperate with `#[proc_macro_hack]` `#[proc_macro_error]` //! attribute must be placed *before* (above) it, like this: //! //! ```ignore //! #[proc_macro_error] //! #[proc_macro_hack] //! #[proc_macro] //! fn my_macro(input: TokenStream) -> TokenStream { //! unimplemented!() //! } //! ``` //! //! If, for some reason, you can't place it like that you can use //! `#[proc_macro_error(proc_macro_hack)]` instead. //! //! - `allow_not_macro`: //! //! By default, the attribute checks that it's applied to a proc-macro. //! If none of `#[proc_macro]`, `#[proc_macro_derive]` nor `#[proc_macro_attribute]` are //! present it will panic. It's the intention - this crate is supposed to be used only with //! proc-macros. This setting is made to bypass the check, useful in certain //! circumstances. //! //! Please note: the function this attribute is applied to must return `proc_macro::TokenStream`. //! //! - `assert_unwind_safe`: //! //! By default, your code must be [unwind safe]. If your code is not unwind safe but you believe //! it's correct you can use this setting to bypass the check. This is typically needed //! for code that uses `lazy_static` or `thread_local` with `Cell/RefCell` inside. //! //! This setting is implied if `#[proc_macro_error]` is applied to a function //! marked as `#[proc_macro]`, `#[proc_macro_derive]` or `#[proc_macro_attribute]`. //! //! ### Diagnostic type //! //! [`Diagnostic`] type is intentionally designed to be API compatible with [`proc_macro::Diagnostic`]. //! Not all API is implemented, only the part that can be reasonably implemented on stable. //! //! //! [`abort!`]: macro.abort.html //! [`emit_warning!`]: macro.emit_warning.html //! [`emit_error!`]: macro.emit_error.html //! [`abort_call_site!`]: macro.abort_call_site.html //! [`emit_call_site_warning!`]: macro.emit_call_site_error.html //! [`emit_call_site_error!`]: macro.emit_call_site_warning.html //! [`diagnostic!`]: macro.diagnostic.html //! [proc_macro_error]: ./../proc_macro_error_attr/attr.proc_macro_error.html //! [`Diagnostic`]: struct.Diagnostic.html //! [`proc_macro::Diagnostic`]: https://doc.rust-lang.org/proc_macro/struct.Diagnostic.html //! [unwind safe]: https://doc.rust-lang.org/std/panic/trait.UnwindSafe.html#what-is-unwind-safety //! [`!`]: https://doc.rust-lang.org/std/primitive.never.html //! [`()`]: https://doc.rust-lang.org/std/primitive.unit.html #![cfg_attr(pme_nightly, feature(proc_macro_diagnostic))] #![forbid(unsafe_code)] // reexports for use in macros #[doc(hidden)] pub extern crate proc_macro; #[doc(hidden)] pub extern crate proc_macro2; pub use self::dummy::set_dummy; pub use proc_macro_error_attr::proc_macro_error; use proc_macro2::{Span, TokenStream}; use quote::quote; use quote::{quote_spanned, ToTokens}; use std::cell::Cell; use std::panic::{catch_unwind, resume_unwind, UnwindSafe}; pub mod dummy; #[cfg(not(any(pme_nightly, nightly_fmt)))] #[path = "stable.rs"] mod imp; #[cfg(any(pme_nightly, nightly_fmt))] #[path = "nightly.rs"] mod imp; // FIXME: this can be greatly simplified via $()? // as soon as MRSV hits 1.32 /// Build [`Diagnostic`](struct.Diagnostic.html) instance from provided arguments. /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! diagnostic { // from alias ($err:expr) => { $crate::Diagnostic::from($err) }; // span, message, help ($span:expr, $level:expr, $fmt:expr, $($args:expr),+ ; $($rest:tt)+) => {{ let diag = $crate::Diagnostic::spanned( $span.into(), $level, __pme__format!($fmt, $($args),*) ); __pme__suggestions!(diag $($rest)*); diag }}; ($span:expr, $level:expr, $msg:expr ; $($rest:tt)+) => {{ let diag = $crate::Diagnostic::spanned($span.into(), $level, $msg.to_string()); __pme__suggestions!(diag $($rest)*); diag }}; // span, message, no help ($span:expr, $level:expr, $fmt:expr, $($args:expr),+) => {{ $crate::Diagnostic::spanned( $span.into(), $level, __pme__format!($fmt, $($args),*) ) }}; ($span:expr, $level:expr, $msg:expr) => {{ $crate::Diagnostic::spanned($span.into(), $level, $msg.to_string()) }}; } #[doc(hidden)] #[macro_export] macro_rules! __pme__format { ($($args:tt)*) => {format!($($args)*)}; } #[doc(hidden)] #[macro_export] macro_rules! __pme__suggestions { ($var:ident) => (); ($var:ident $help:ident =? $msg:expr) => { let $var = if let Some(msg) = $msg { $var.suggestion(stringify!($help), msg.to_string()) } else { $var }; }; ($var:ident $help:ident =? $span:expr => $msg:expr) => { let $var = if let Some(msg) = $msg { $var.span_suggestion($span.into(), stringify!($help), msg.to_string()) } else { $var }; }; ($var:ident $help:ident =? $msg:expr ; $($rest:tt)*) => { __pme__suggestions!($var $help =? $msg); __pme__suggestions!($var $($rest)*); }; ($var:ident $help:ident =? $span:expr => $msg:expr ; $($rest:tt)*) => { __pme__suggestions!($var $help =? $span => $msg); __pme__suggestions!($var $($rest)*); }; ($var:ident $help:ident = $msg:expr) => { let $var = $var.suggestion(stringify!($help), $msg.to_string()); }; ($var:ident $help:ident = $fmt:expr, $($args:expr),*) => { let $var = $var.suggestion( stringify!($help), format!($fmt, $($args),*) ); }; ($var:ident $help:ident = $span:expr => $msg:expr) => { let $var = $var.span_suggestion($span.into(), stringify!($help), $msg.to_string()); }; ($var:ident $help:ident = $span:expr => $fmt:expr, $($args:expr),*) => { let $var = $var.span_suggestion( $span.into(), stringify!($help), format!($fmt, $($args),*) ); }; ($var:ident $help:ident = $msg:expr ; $($rest:tt)*) => { __pme__suggestions!($var $help = $msg); __pme__suggestions!($var $($rest)*); }; ($var:ident $help:ident = $fmt:expr, $($args:expr),* ; $($rest:tt)*) => { __pme__suggestions!($var $help = $fmt, $($args),*); __pme__suggestions!($var $($rest)*); }; ($var:ident $help:ident = $span:expr => $msg:expr ; $($rest:tt)*) => { __pme__suggestions!($var $help = $span => $msg); __pme__suggestions!($var $($rest)*); }; ($var:ident $help:ident = $span:expr => $fmt:expr, $($args:expr),* ; $($rest:tt)*) => { __pme__suggestions!($var $help = $span => $fmt, $($args),*); __pme__suggestions!($var $($rest)*); }; } /// Abort proc-macro execution right now and display the error. /// /// # Syntax /// /// See [the guide](index.html#guide). #[macro_export(local_inner_macros)] macro_rules! abort { ($err:expr) => { $crate::diagnostic!($err).abort() }; ($span:expr, $($tts:tt)*) => {{ $crate::diagnostic!($span, $crate::Level::Error, $($tts)*).abort() }}; } /// Shortcut for `abort!(Span::call_site(), msg...)`. This macro /// is still preferable over plain panic, panics are not for error reporting. /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! abort_call_site { ($($tts:tt)*) => {{ let span = $crate::proc_macro2::Span::call_site(); $crate::diagnostic!(span, $crate::Level::Error, $($tts)*).abort() }}; } /// Emit an error while not aborting the proc-macro right away. /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! emit_error { ($err:expr) => { $crate::diagnostic!($err).emit() }; ($span:expr, $($tts:tt)*) => { $crate::diagnostic!($span, $crate::Level::Error, $($tts)*).emit() }; } /// Shortcut for `emit_error!(Span::call_site(), ...)`. This macro /// is still preferable over plain panic, panics are not for error reporting.. /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! emit_call_site_error { ($($tts:tt)*) => {{ let span = $crate::proc_macro2::Span()::call_site(); $crate::diagnostic!(span, $crate::Level::Error, $($tts)*).emit() }}; } /// Emit a warning. Warnings are not errors and compilation won't fail because of them. /// /// **Does nothing on stable** /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! emit_warning { ($span:expr, $($tts:tt)*) => { $crate::diagnostic!($span, $crate::Level::Warning, $($tts)*).emit() }; } /// Shortcut for `emit_warning!(Span::call_site(), ...)`. /// /// **Does nothing on stable** /// /// # Syntax /// /// See [the guide](index.html#guide). /// #[macro_export(local_inner_macros)] macro_rules! emit_call_site_warning { ($($tts:tt)*) => {{ let span = $crate::proc_macro2::Span()::call_site(); $crate::diagnostic!(span, $crate::Level::Warning, $($tts)*).emit() }}; } /// Represents a diagnostic level /// /// # Warnings /// /// Warnings are ignored on stable/beta #[derive(Debug, PartialEq)] pub enum Level { Error, Warning, #[doc(hidden)] NonExhaustive, } /// Represents a single diagnostic message #[derive(Debug)] pub struct Diagnostic { level: Level, span: Span, msg: String, suggestions: Vec<(SuggestionKind, String, Option<Span>)>, } /// This traits expands `Result<T, Into<Diagnostic>>` with some handy shortcuts. pub trait ResultExt { type Ok; /// Behaves like `Result::unwrap`: if self is `Ok` yield the contained value, /// otherwise abort macro execution via `abort!`. fn unwrap_or_abort(self) -> Self::Ok; /// Behaves like `Result::expect`: if self is `Ok` yield the contained value, /// otherwise abort macro execution via `abort!`. /// If it aborts then resulting error message will be preceded with `message`. fn expect_or_abort(self, msg: &str) -> Self::Ok; } /// This traits expands `Option` with some handy shortcuts. pub trait OptionExt { type Some; /// Behaves like `Option::expect`: if self is `Some` yield the contained value, /// otherwise abort macro execution via `abort_call_site!`. /// If it aborts the `message` will be used for [`compile_error!`][compl_err] invocation. /// /// [compl_err]: https://doc.rust-lang.org/std/macro.compile_error.html fn expect_or_abort(self, msg: &str) -> Self::Some; } impl Diagnostic { /// Create a new diagnostic message that points to `Span::call_site()` pub fn new(level: Level, message: String) -> Self { Diagnostic::spanned(Span::call_site(), level, message) } /// Create a new diagnostic message that points to the `span` pub fn spanned(span: Span, level: Level, message: String) -> Self { Diagnostic { level, span, msg: message, suggestions: vec![], } } /// Attach a "help" note to your main message, note will have it's own span on nightly. /// /// # Span /// /// The span is ignored on stable, the note effectively inherits its parent's (main message) span pub fn span_help(mut self, span: Span, msg: String) -> Self { self.suggestions .push((SuggestionKind::Help, msg, Some(span))); self } /// Attach a "help" note to your main message, pub fn help(mut self, msg: String) -> Self { self.suggestions.push((SuggestionKind::Help, msg, None)); self } /// Attach a note to your main message, note will have it's own span on nightly. /// /// # Span /// /// The span is ignored on stable, the note effectively inherits its parent's (main message) span pub fn span_note(mut self, span: Span, msg: String) -> Self { self.suggestions .push((SuggestionKind::Note, msg, Some(span))); self } /// Attach a note to your main message pub fn note(mut self, msg: String) -> Self { self.suggestions.push((SuggestionKind::Note, msg, None)); self } /// The message of main warning/error (no notes attached) pub fn message(&self) -> &str { &self.msg } /// Abort the proc-macro's execution and display the diagnostic. /// /// # Warnings /// /// Warnings do not get emitted on stable/beta but this function will abort anyway. pub fn abort(self) -> ! { self.emit(); abort_now() } /// Display the diagnostic while not aborting macro execution. /// /// # Warnings /// /// Warnings are ignored on stable/beta pub fn emit(self) { imp::emit_diagnostic(self); } } /// Abort macro execution and display all the emitted errors, if any. /// /// Does nothing if no errors were emitted (warnings do not count). pub fn abort_if_dirty() { imp::abort_if_dirty(); } #[doc(hidden)] impl Diagnostic { pub fn span_suggestion(self, span: Span, suggestion: &str, msg: String) -> Self { match suggestion { "help" | "hint" => self.span_help(span, msg), _ => self.span_note(span, msg), } } pub fn suggestion(self, suggestion: &str, msg: String) -> Self { match suggestion { "help" | "hint" => self.help(msg), _ => self.note(msg), } } } impl ToTokens for Diagnostic { fn to_tokens(&self, ts: &mut TokenStream) { use std::borrow::Cow; fn ensure_lf(buf: &mut String, s: &str) { if s.ends_with('\n') { buf.push_str(s); } else { buf.push_str(s); buf.push('\n'); } } let Diagnostic { ref msg, ref suggestions, ref level, .. } = *self; if *level == Level::Warning { return; } let message = if suggestions.is_empty() { Cow::Borrowed(msg) } else { let mut message = String::new(); ensure_lf(&mut message, msg); message.push('\n'); for (kind, note, _span) in suggestions { message.push_str(" = "); message.push_str(kind.name()); message.push_str(": "); ensure_lf(&mut message, note); } message.push('\n'); Cow::Owned(message) }; let span = &self.span; let msg = syn::LitStr::new(&*message, *span); ts.extend(quote_spanned!(*span=> compile_error!(#msg); )); } } impl<T, E: Into<Diagnostic>> ResultExt for Result<T, E> { type Ok = T; fn unwrap_or_abort(self) -> T { match self { Ok(res) => res, Err(e) => e.into().abort(), } } fn expect_or_abort(self, message: &str) -> T { match self { Ok(res) => res, Err(e) => { let mut e = e.into(); e.msg = format!("{}: {}", message, e.msg); e.abort() } } } } impl<T> OptionExt for Option<T> { type Some = T; fn expect_or_abort(self, message: &str) -> T { match self { Some(res) => res, None => abort_call_site!(message), } } } #[derive(Debug)] enum SuggestionKind { Help, Note, } impl SuggestionKind { fn name(&self) -> &'static str { match self { SuggestionKind::Note => "note", SuggestionKind::Help => "help", } } } impl From<syn::Error> for Diagnostic { fn from(e: syn::Error) -> Self { Diagnostic::spanned(e.span(), Level::Error, e.to_string()) } } /// This is the entry point for a proc-macro. /// /// **NOT PUBLIC API, SUBJECT TO CHANGE WITHOUT ANY NOTICE** #[doc(hidden)] pub fn entry_point<F>(f: F, proc_macro_hack: bool) -> proc_macro::TokenStream where F: FnOnce() -> proc_macro::TokenStream + UnwindSafe, { ENTERED_ENTRY_POINT.with(|flag| flag.set(true)); let caught = catch_unwind(f); let dummy = dummy::cleanup(); let err_storage = imp::cleanup(); ENTERED_ENTRY_POINT.with(|flag| flag.set(false)); let mut appendix = TokenStream::new(); if proc_macro_hack { appendix.extend(quote! { #[allow(unused)] macro_rules! proc_macro_call { () => ( unimplemented!() ) } }); } match caught { Ok(ts) => { if err_storage.is_empty() { ts } else { quote!( #(#err_storage)* #dummy #appendix ).into() } } Err(boxed) => match boxed.downcast::<AbortNow>() { Ok(_) => quote!( #(#err_storage)* #dummy #appendix ).into(), Err(boxed) => resume_unwind(boxed), }, } } fn abort_now() -> ! { check_correctness(); panic!(AbortNow) } thread_local! { static ENTERED_ENTRY_POINT: Cell<bool> = Cell::new(false); } struct AbortNow; fn check_correctness() { if !ENTERED_ENTRY_POINT.with(|flag| flag.get()) { panic!( "proc-macro-error API cannot be used outside of `entry_point` invocation, \ perhaps you forgot to annotate your #[proc_macro] function with `#[proc_macro_error]" ); } }