bare_err_tree_proc/lib.rs
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
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
//! Derive macros for `bare_err_tree`.
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(coverage, feature(coverage_attribute))]
extern crate proc_macro;
use core::panic;
use proc_macro::{Span, TokenStream};
use quote::{quote, ToTokens};
use syn::{
parse::Parser, parse_macro_input, punctuated::Punctuated, token::Brace, Attribute, Data,
DataStruct, DeriveInput, Error, Field, Fields, FieldsNamed, Generics, Ident, Meta, Visibility,
};
mod errtype;
use errtype::*;
mod boiler;
use boiler::*;
mod fields;
use fields::*;
/// Implements a type as an error tree.
///
/// The struct must define [`Error`](`core::error::Error`) and be annotated with `#[err_tree]` above
/// any attributes relying on a full field definition. The type must then be
/// internally constructed with `Self::_tree` to capture extra error
/// information in a hidden field.
///
/// Any derive such as [`Clone`] that relies on all fields being present must
/// occur after the `#[err_tree]` macro. The `_err_tree_pkg` field will
/// otherwise be added late and break the derivation.
///
/// # `Self::_tree`
/// This is an internal-use constructor that takes all struct fields in order.
/// Use `#[track_caller]` on any functions calling `Self::_tree` to store the
/// callsite correctly.
/// [Open an issue or PR](<https://github.com/Bennett-Petzold/bare_err_tree>)
/// if this hidden field degrades a struct's API (aside from requiring a
/// constructor method).
///
/// #### Example
/// ```
/// # #![cfg_attr(coverage, feature(coverage_attribute))]
/// # use std::{error::Error, fmt::{self, Debug, Display, Formatter}};
/// use bare_err_tree::{err_tree, tree_unwrap};
///
/// #[err_tree]
/// #[derive(Debug)]
/// struct Foo {
/// num: i32,
/// }
///
/// impl Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// #[track_caller]
/// pub fn new(num: i32) -> Self {
/// Foo::_tree(num)
/// }
/// }
///
/// impl Error for Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn source(&self) -> Option<&(dyn Error + 'static)> {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
/// impl Display for Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
/// ```
///
/// # Field Annotations
/// The macro needs annotations for underlying source fields.
///
/// #### Single Item
/// * `tree_err`: Mark a field as a `ErrTree` implementing [`Error`](`core::error::Error`).
/// * `dyn_err`: Mark a field as a generic [`Error`](`core::error::Error`).
///
/// #### Collection
/// `*_iter_err` works on any type with a `.iter()` method returning its items.
///
/// * `tree_iter_err`: Mark a field as a collection of `ErrTree` implementing [`Error`](`core::error::Error`)s.
/// * `dyn_iter_err`: Mark a field as a collection of generic [`Error`](`core::error::Error`)s.
///
/// `*_iter_err` does not allocate for arrays with a known length.
/// The `derive_alloc` feature enables generation of allocating code to support
/// dynamically sized collections.
///
/// #### Example
/// ```
/// # #![cfg_attr(coverage, feature(coverage_attribute))]
/// # use std::{any::Any, error::Error, fmt::{self, Debug, Display, Formatter}};
/// use bare_err_tree::{err_tree, tree_unwrap, AsErrTree, ErrTree};
///
/// #[err_tree]
/// #[derive(Debug)]
/// struct Foo {
/// #[dyn_err]
/// io_err: std::io::Error,
/// #[dyn_iter_err]
/// extra_io_errs: [std::io::Error; 5],
/// }
///
/// impl Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// #[track_caller]
/// pub fn new(io_err: std::io::Error, extra_io_errs: [std::io::Error; 5]) -> Self {
/// Foo::_tree(io_err, extra_io_errs)
/// }
/// }
///
/// impl Error for Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn source(&self) -> Option<&(dyn Error + 'static)> {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
/// impl Display for Foo {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
///
/// fn main() {
/// // Make a Foo of all EOF errors
/// let eof_gen = || std::io::Error::from(std::io::ErrorKind::UnexpectedEof);
/// let err = Foo::new(eof_gen(), std::array::from_fn(|_| eof_gen()));
///
/// // Confirm exactly six sources from annotation
/// err.as_err_tree(&mut |tree| {
/// let sources = tree.sources();
/// assert_eq!(sources.count(), 6);
/// });
/// }
/// ```
///
/// # Generating a Wrapper
/// `#[err_tree(WRAPPER)]` will generate a wrapper struct for storing metadata.
/// Enums need this form, as a hidden field cannot be added to the enum.
/// `WRAPPER` provides [`From`](`core::convert::From`) both ways and
/// [`Deref`](`core::ops::Deref`)/[`DerefMut`](`core::ops::DerefMut`) to be
/// maximally transparent.
/// Some derives are automatically re-derived for the wrapper; any other traits
/// that need to be implemented for the wrapper can be written manually.
///
/// #### Wrapper automatic re-derives
// https://doc.rust-lang.org/rust-by-example/trait/derive.html
/// [`Eq`](`core::cmp::Eq`), [`PartialEq`](`core::cmp::PartialEq`),
/// [`Ord`](`core::cmp::Ord`), [`PartialOrd`](`core::cmp::PartialOrd`),
/// [`Clone`](`core::clone::Clone`), [`Hash`](`core::hash::Hash`),
/// [`Default`](`core::default::Default).
///
/// #### Enum Example
/// ```
/// # #![cfg_attr(coverage, feature(coverage_attribute))]
/// # use std::{error::Error, fmt::{self, Debug, Display, Formatter}};
/// use bare_err_tree::{err_tree, tree_unwrap};
///
/// // Generates `FooWrap<T: Debug>`
/// #[err_tree(FooWrap)]
/// #[derive(Debug)]
/// enum Foo<T: Debug> {
/// Val(T),
/// #[dyn_err]
/// Single(std::io::Error),
/// #[dyn_iter_err]
/// Many([std::io::Error; 5]),
/// }
///
/// impl<T: Debug> Error for Foo<T> {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn source(&self) -> Option<&(dyn Error + 'static)> {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
/// impl<T: Debug> Display for Foo<T> {
/// # #[cfg_attr(coverage, coverage(off))]
/// fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
/// # /*
/// ...
/// # */
/// # unimplemented!()
/// }
/// }
///
/// fn main() {
/// let wrapped = FooWrap::from(Foo::Val(8_i32));
/// assert!(matches!(*wrapped, Foo::Val(8_i32)));
/// }
///
/// ```
///
/// # Full Usage Example:
/// ```
/// # use std::{error::Error, fmt::{self, Debug, Display, Formatter}};
/// use bare_err_tree::{err_tree, tree_unwrap};
///
/// #[err_tree]
/// #[derive(Debug)]
/// struct Foo {
/// #[dyn_err]
/// io_err: std::io::Error,
/// #[dyn_iter_err]
/// extra_io_errs: [std::io::Error; 5],
/// }
///
/// impl Foo {
/// #[track_caller]
/// pub fn new(io_err: std::io::Error, extra_io_errs: [std::io::Error; 5]) -> Self {
/// Foo::_tree(io_err, extra_io_errs)
/// }
/// }
///
/// impl Error for Foo {
/// fn source(&self) -> Option<&(dyn Error + 'static)> {
/// Some(&self.io_err)
/// }
/// }
/// impl Display for Foo {
/// fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
/// # /*
/// ...
/// # */
/// # Display::fmt(&self.io_err, f)
/// }
/// }
///
/// /// Always return the error with tree formatting support
/// pub fn always_fail() -> Result<(), Foo> {
/// # let get_err = || std::io::Error::from(std::io::ErrorKind::UnexpectedEof);
/// Err(Foo::new(
/// # /*
/// ...
/// # */
/// # get_err(), std::array::from_fn(|_| get_err()),
/// ))
/// }
///
/// const MAX_DEPTH: usize = 10;
/// const MAX_CHARS: usize = MAX_DEPTH * 6;
///
/// pub fn main() {
/// # let _ = std::panic::catch_unwind(|| {
/// let result = always_fail();
///
/// /// Fancy display panic with a maximum tree depth of 10 errors
/// tree_unwrap::<MAX_CHARS, _, _>(result);
/// # });
/// }
/// ```
#[proc_macro_attribute]
pub fn err_tree(args: TokenStream, input: TokenStream) -> TokenStream {
let args = parse_macro_input!(args with Punctuated::<Meta, syn::Token![,]>::parse_terminated);
let name_attribute = name_attribute(&args);
let DeriveInput {
attrs,
vis,
ident,
generics,
mut data,
} = parse_macro_input!(input as DeriveInput);
let generated = match data {
// Only structs are directly valid for injecting the hidden field
Data::Struct(ref mut data) => {
let errs: Vec<_> = get_struct_macros(data).collect();
if let Some(name_attribute) = name_attribute {
foreign_err_tree(
&ident,
&vis,
&attrs,
name_attribute,
&generics,
&errs,
Foreign::Struct,
)
} else {
clean_struct_macros(data);
err_tree_struct(&ident, &vis, &generics, data, &errs, Foreign::Not)
}
}
// Enums can be handled by a generated wrapping struct
Data::Enum(ref mut data) => {
let errs: Vec<_> = get_enum_macros(data).collect();
clean_enum_macros(data);
if let Some(name_attribute) = name_attribute {
foreign_err_tree(
&ident,
&vis,
&attrs,
name_attribute,
&generics,
&errs,
Foreign::Enum(&ident),
)
} else {
TokenStream::from(
Error::new(
Span::call_site().into(),
"err_tree cannot implement directly on an enum type. Use '#[err_tree(WRAPPER)]'",
)
.into_compile_error(),
)
}
}
// This datatype is barely used -- mostly C interop -- so the lack of
// functionality doesn't really matter. I've never seen a Union Error.
Data::Union(_) => TokenStream::from(
Error::new(
Span::call_site().into(),
"err_tree cannot be annotated on union types",
)
.into_compile_error(),
),
};
TokenStream::from_iter([
DeriveInput {
attrs,
vis,
ident,
generics,
data,
}
.into_token_stream()
.into(),
generated,
])
}
#[derive(Debug)]
enum Foreign<'a> {
/// Direct struct generation
Not,
/// Wrapper around a struct, doesn't need a defined ident
Struct,
/// Wrapper around an enum, needs an enum ident for pattern matching
Enum(&'a Ident),
}
/// Generate a foreign wrapper.
///
/// Boilerplates a wrapper notice into docs, copies all struct docs, creates
/// automatic Deref and From impls, and re-derives known trivial methods.
///
/// Concludes with a call to [`err_tree_struct`].
fn foreign_err_tree(
ident: &Ident,
vis: &Visibility,
attrs: &[Attribute],
name_attribute: &Ident,
generics: &Generics,
errs: &[TreeErr],
foreign_type: Foreign,
) -> TokenStream {
let (_, ty_generics, _) = generics.split_for_impl();
let doc_attrs = attrs.iter().filter(|x| {
if let Ok(x) = x.meta.require_name_value() {
if let Some(x) = x.path.get_ident() {
x == "doc"
} else {
false
}
} else {
false
}
});
let ident_link = format!("Wrapper for [`{ident}`] generated by [`bare_err_tree`].");
let wrapper_struct: TokenStream = quote! {
#[doc = #ident_link]
///
#(#doc_attrs)*
#vis struct #name_attribute #generics {
inner: #ident #ty_generics,
}
}
.into();
let mut wrapper_struct = parse_macro_input!(wrapper_struct as DeriveInput);
if let Data::Struct(ref mut wrapper_struct_data) = &mut wrapper_struct.data {
let boilerplate = wrapper_boilerplate(ident, generics, attrs, name_attribute);
let generated_impl = err_tree_struct(
name_attribute,
vis,
&wrapper_struct.generics,
wrapper_struct_data,
errs,
foreign_type,
);
TokenStream::from_iter([
wrapper_struct.to_token_stream().into(),
boilerplate,
generated_impl,
])
} else {
panic!("The wrapper is always a struct!")
}
}
/// Injects `_err_tree_pkg`, the `_tree` constructor, and the `_as_err_tree`
/// impl.
fn err_tree_struct(
ident: &Ident,
vis: &Visibility,
generics: &Generics,
data: &mut DataStruct,
errs: &[TreeErr],
foreign: Foreign<'_>,
) -> TokenStream {
let FieldsStrip {
bounds: field_bounds,
idents: field_names,
} = strip_fields(&data.fields);
// Generate the with_pkg call on all notated sources
let sources = match foreign {
Foreign::Not => gen_sources_struct(errs, false),
Foreign::Struct => gen_sources_struct(errs, true),
Foreign::Enum(ident) => gen_sources_enum(errs, ident),
};
let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();
match &mut data.fields {
// Struct with fields like { a: usize, b: usize }
Fields::Named(fields) => {
// Insert the pkg field
let field_ident = proc_macro2::Ident::new("_err_tree_pkg", Span::call_site().into());
fields.named.push(
Field::parse_named
.parse2(quote! { #field_ident: ::bare_err_tree::ErrTreePkg })
.unwrap(),
);
let field_ident = field_ident.into_token_stream();
quote! {
#[automatically_derived]
impl #impl_generics ::bare_err_tree::AsErrTree for #ident #ty_generics #where_clause {
#[track_caller]
fn as_err_tree(&self, func: &mut dyn FnMut(::bare_err_tree::ErrTree<'_>)) {
let _err_tree_pkg = &self.#field_ident;
#sources
}
}
#[automatically_derived]
impl #impl_generics #ident #ty_generics #where_clause {
#[track_caller]
#[allow(clippy::too_many_arguments)]
fn _tree(#field_bounds) -> Self {
let #field_ident = ::bare_err_tree::ErrTreePkg::new();
Self {
#(#field_names,)*
#field_ident
}
}
}
}
.into()
}
// Struct with fields like ( usize, usize )
Fields::Unnamed(fields) => {
// Insert the pkg field
let prev_len = syn::Index::from(fields.unnamed.len());
fields.unnamed.push(
Field::parse_unnamed
.parse2(quote! { ::bare_err_tree::ErrTreePkg })
.unwrap(),
);
quote! {
#[automatically_derived]
impl #impl_generics ::bare_err_tree::AsErrTree for #ident #ty_generics #where_clause {
#[track_caller]
fn as_err_tree(&self, func: &mut dyn FnMut(::bare_err_tree::ErrTree<'_>)) {
let _err_tree_pkg = &self.#prev_len;
#sources
}
}
#[automatically_derived]
impl #impl_generics #ident #ty_generics #where_clause {
#[track_caller]
#[allow(clippy::too_many_arguments)]
fn _tree(#field_bounds) -> Self {
let _err_tree_pkg = ::bare_err_tree::ErrTreePkg::new();
Self (
#(#field_names,)*
_err_tree_pkg
)
}
}
}
.into()
}
// Transmutes a unit struct into a named struct for pkg injection
// Adds new and default methods for easy construction
Fields::Unit => {
// Insert the pkg field
let field_ident = proc_macro2::Ident::new("_err_tree_pkg", Span::call_site().into());
let mut named = Punctuated::default();
named.push(
Field::parse_named
.parse2(quote! { #field_ident: ::bare_err_tree::ErrTreePkg })
.unwrap(),
);
let field_ident = field_ident.into_token_stream();
data.fields = Fields::Named(FieldsNamed {
brace_token: Brace::default(),
named,
});
quote! {
#[automatically_derived]
impl #impl_generics ::bare_err_tree::AsErrTree for #ident #ty_generics #where_clause {
#[track_caller]
fn as_err_tree(&self, func: &mut dyn FnMut(::bare_err_tree::ErrTree<'_>)) {
let _err_tree_pkg = &self.#field_ident;
#sources
}
}
#[automatically_derived]
impl #impl_generics #ident #ty_generics #where_clause {
#[track_caller]
fn _tree() -> Self {
let #field_ident = ::bare_err_tree::ErrTreePkg::new();
Self {
#field_ident
}
}
}
#[automatically_derived]
impl #impl_generics ::core::default::Default for #ident #ty_generics #where_clause {
#[track_caller]
fn default() -> Self {
Self::_tree()
}
}
#[automatically_derived]
impl #impl_generics #ident #ty_generics #where_clause {
#[track_caller]
#vis fn new() -> Self {
Self::_tree()
}
}
}
.into()
}
}
}