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
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License in the LICENSE-APACHE file or at:
// https://www.apache.org/licenses/LICENSE-2.0
#![allow(clippy::needless_doctest_main)]
//! # Impl-tools
//!
//! ## Autoimpl
//!
//! `#[autoimpl]` is a variant of `#[derive]`, supporting:
//!
//! - explicit generic parameter bounds
//! - ignored fields
//! - traits defined using a primary field
//! - generic re-implementations for traits
//!
//! ```
//! use impl_tools::autoimpl;
//! use std::fmt::Debug;
//!
//! #[autoimpl(for<'a, T: trait + ?Sized> Box<T>)]
//! // Generates: impl<'a, T: Animal + ?Sized> Animal for Box<T> { .. }
//! trait Animal {
//! fn number_of_legs(&self) -> u32;
//! }
//!
//! #[autoimpl(Debug ignore self.animal where T: Debug)]
//! // Generates: impl<T, A: Animal> std::fmt::Debug for Named<A> where T: Debug { .. }
//! #[autoimpl(Deref, DerefMut using self.animal)]
//! // Generates: impl<T, A: Animal> std::ops::Deref for Named<A> { .. }
//! // Generates: impl<T, A: Animal> std::ops::DerefMut for Named<A> { .. }
//! struct Named<T, A: Animal> {
//! name: T,
//! animal: A,
//! }
//!
//! fn main() {
//! struct Fish;
//! impl Animal for Fish {
//! fn number_of_legs(&self) -> u32 {
//! 0
//! }
//! }
//!
//! let my_fish = Named {
//! name: "Nemo",
//! animal: Box::new(Fish),
//! };
//!
//! assert_eq!(
//! format!("{my_fish:?} has {} legs!", my_fish.number_of_legs()),
//! r#"Named { name: "Nemo", .. } has 0 legs!"#
//! );
//! }
//! ```
//!
//! ## Derive Default
//!
//! `#[impl_default]` implements `std::default::Default`:
//!
//! ```
//! use impl_tools::{impl_default, impl_scope};
//!
//! #[impl_default(Tree::Ash)]
//! enum Tree { Ash, Beech, Birch, Willow }
//!
//! impl_scope! {
//! #[impl_default]
//! struct Copse {
//! tree_type: Tree,
//! number: u32 = 7,
//! }
//! }
//! ```
//!
//! ## Impl Scope
//!
//! `impl_scope!` is a function-like macro used to define a type plus its
//! implementations. It supports `impl Self` syntax:
//!
//! ```
//! use impl_tools::impl_scope;
//! use std::fmt::Display;
//!
//! impl_scope! {
//! /// I don't know why this exists
//! pub struct NamedThing<T: Display, F> {
//! name: T,
//! func: F,
//! }
//!
//! // Repeats generic parameters of type
//! impl Self {
//! fn format_name(&self) -> String {
//! format!("{}", self.name)
//! }
//! }
//!
//! // Merges generic parameters of type
//! impl<O> Self where F: Fn(&str) -> O {
//! fn invoke(&self) -> O {
//! (self.func)(&self.format_name())
//! }
//! }
//! }
//! ```
#[cfg(doctest)]
doc_comment::doctest!("../README.md");
extern crate proc_macro;
use proc_macro::TokenStream;
use proc_macro_error::{emit_call_site_error, emit_error, proc_macro_error};
use syn::parse_macro_input;
use syn::Item;
mod autoimpl;
mod default;
pub(crate) mod generics;
mod scope;
/// Implement `Default`
///
/// This macro may be used in one of two ways.
///
/// ### Type-level initialiser
///
/// ```
/// # use impl_tools::impl_default;
/// /// A simple enum; default value is Blue
/// #[impl_default(Colour::Blue)]
/// enum Colour {
/// Red,
/// Green,
/// Blue,
/// }
///
/// fn main() {
/// assert!(matches!(Colour::default(), Colour::Blue));
/// }
/// ```
///
/// A where clause is optional: `#[impl_default(EXPR where BOUNDS)]`.
///
/// ### Field-level initialiser
///
/// This variant only supports structs. Fields specified as `name: type = expr`
/// will be initialised with `expr`, while other fields will be initialised with
/// `Defualt::default()`.
///
/// ```
/// # use impl_tools::{impl_default, impl_scope};
///
/// impl_scope! {
/// #[impl_default]
/// struct Person {
/// name: String = "Jane Doe".to_string(),
/// age: u32 = 72,
/// occupation: String,
/// }
/// }
///
/// fn main() {
/// let person = Person::default();
/// assert_eq!(person.name, "Jane Doe");
/// assert_eq!(person.age, 72);
/// assert_eq!(person.occupation, "");
/// }
/// ```
///
/// A where clause is optional: `#[impl_default(where BOUNDS)]`.
#[proc_macro_attribute]
#[proc_macro_error]
pub fn impl_default(attr: TokenStream, item: TokenStream) -> TokenStream {
let attr = parse_macro_input!(attr as default::Attr);
let attr_span = attr.span;
if attr.expr.is_some() {
let mut toks = item.clone();
match parse_macro_input!(item as Item) {
Item::Enum(syn::ItemEnum {
ident, generics, ..
})
| Item::Struct(syn::ItemStruct {
ident, generics, ..
})
| Item::Type(syn::ItemType {
ident, generics, ..
})
| Item::Union(syn::ItemUnion {
ident, generics, ..
}) => {
let impl_: TokenStream = attr.gen_expr(&ident, &generics).into();
toks.extend(std::iter::once(impl_));
}
item => {
emit_error!(
item,
"default: only supports enum, struct, type alias and union items"
);
}
};
toks
} else {
emit_error!(attr_span, "invalid use outside of `impl_scope!` macro");
item
}
}
/// A variant of the standard `derive` macro
///
/// This macro is similar to `#[derive(Trait)]`, but with a few differences.
///
/// If using `autoimpl` **and** `derive` macros with Rust < 1.57.0, the
/// `autoimpl` attribute must come first (see rust#81119).
///
/// Unlike `derive`, `autoimpl` is not extensible by third-party crates. The
/// "trait names" provided to `autoimpl` are matched directly, unlike
/// `derive(...)` arguments which are paths to [`proc_macro_derive`] instances.
/// Without language support for this there appears to be no option for
/// third-party extensions.
///
/// [`proc_macro_derive`]: https://doc.rust-lang.org/reference/procedural-macros.html#derive-macros
///
/// ### Bounds on generic parameters
///
/// If a type has generic parameters, generated implementations will assume the
/// same parameters and bounds as specified in the type, but not additional
/// bounds for the trait implemented.
///
/// Additional bounds may be specified via a `where` clause. A special predicate
/// is supported: `T: trait`; here `trait` is replaced the name of the trait
/// being implemented.
///
/// # Multi-field traits
///
/// Some trait implementations make use of all fields (except those ignored):
///
/// - `Clone` — implements `std::clone::Clone`; ignored fields are
/// initialised with `Default::default()`
/// - `Debug` — implements `std::fmt::Debug`; ignored fields are not printed
/// - `Default` — implements `std::default::Default` using
/// `Default::default()` for all fields (see also [`impl_default`](macro@impl_default))
///
/// ### Parameter syntax
///
/// > _ParamsMulti_ :\
/// > ( _Trait_ ),+ _Ignores_? _WhereClause_?
/// >
/// > _Ignores_ :\
/// > `ignore` ( `self` `.` _Member_ ),+
/// >
/// > _WhereClause_ :\
/// > `where` ( _WherePredicate_ ),*
///
/// ### Examples
///
/// Implement `std::fmt::Debug`, ignoring the last field:
/// ```
/// # use impl_tools::autoimpl;
/// #[autoimpl(Debug ignore self.f)]
/// struct PairWithFn<T> {
/// x: f32,
/// y: f32,
/// f: fn(&T),
/// }
/// ```
///
/// Implement `Clone` and `Debug` on a wrapper, with the required bounds:
/// ```
/// # use impl_tools::autoimpl;
/// #[autoimpl(Clone, Debug where T: trait)]
/// struct Wrapper<T>(pub T);
/// ```
/// Note: `T: trait` is a special predicate implying that for each
/// implementation the type `T` must support the trait being implemented.
///
/// # Single-field traits
///
/// Other traits are implemented using a single field (for structs):
///
/// - `Deref` — implements `std::ops::Deref`
/// - `DerefMut` — implements `std::ops::DerefMut`
///
/// ### Parameter syntax
///
/// > _ParamsSingle_ :\
/// > ( _Trait_ ),+ _Using_ _WhereClause_?
/// >
/// > _Using_ :\
/// > `using` `self` `.` _Member_
///
/// ### Examples
///
/// Implement `Deref` and `DerefMut`, dereferencing to the given field:
/// ```
/// # use impl_tools::autoimpl;
/// #[autoimpl(Deref, DerefMut using self.0)]
/// struct MyWrapper<T>(T);
/// ```
///
/// # Trait re-implementations
///
/// User-defined traits may be implemented over any type supporting `Deref`
/// (and if required `DerefMut`) to another type supporting the trait.
///
/// ### Parameter syntax
///
/// > _ParamsTrait_ :\
/// > `for` _Generics_ ( _Type_ ),+ _Definitive_? _WhereClause_?
/// >
/// > _Generics_ :\
/// > `<` ( _GenericParam_ ) `>`
/// >
/// > _Definitive_ :\
/// > `using` _Type_
///
/// ### Examples
///
/// Implement `MyTrait` for `&T`, `&mut T` and `Box<dyn MyTrait>`:
/// ```
/// # use impl_tools::autoimpl;
/// #[autoimpl(for<'a, T: trait + ?Sized> &'a T, &'a mut T, Box<T>)]
/// trait MyTrait {
/// fn f(&self) -> String;
/// }
/// ```
/// Note that the first parameter bound like `T: trait` is used as the
/// definitive type (required). For example, here, `f` is implemented with the
/// body `<T as MyTrait>::f(self)`.
///
/// Note further: if the trait uses generic parameters itself, these must be
/// introduced explicitly in the `for<..>` parameter list.
#[proc_macro_attribute]
#[proc_macro_error]
pub fn autoimpl(attr: TokenStream, item: TokenStream) -> TokenStream {
let mut toks = item.clone();
match syn::parse(attr) {
Ok(attr) => {
let item = parse_macro_input!(item as Item);
toks.extend(TokenStream::from(match item {
Item::Struct(item) => autoimpl::autoimpl_struct(attr, item),
Item::Trait(item) => autoimpl::autoimpl_trait(attr, item),
item => {
emit_error!(item, "autoimpl: only supports struct and trait items");
return toks;
}
}));
}
Err(err) => {
emit_call_site_error!(err);
// Since autoimpl only adds implementations, we can safely output
// the original item, thus reducing secondary errors.
}
}
toks
}
/// Implementation scope
///
/// Supports `impl Self` syntax.
///
/// Also supports struct field assignment syntax for `Default`: see [`impl_default`](macro@impl_default).
///
/// Caveat: `rustfmt` will not format contents (see
/// [rustfmt#5254](https://github.com/rust-lang/rustfmt/issues/5254)).
///
/// ## Syntax
///
/// > _ImplScope_ :\
/// > `impl_scope!` `{` _ScopeItem_ _ItemImpl_ * `}`
/// >
/// > _ScopeItem_ :\
/// > _ItemEnum_ | _ItemStruct_ | _ItemType_ | _ItemUnion_
///
/// The result looks a little like a module containing a single type definition
/// plus its implementations, but is injected into the parent module.
///
/// Implementations must target the type defined at the start of the scope. A
/// special syntax for the target type, `Self`, is added:
///
/// > _ScopeImplItem_ :\
/// > `impl` _GenericParams_? _ForTrait_? _ScopeImplTarget_ _WhereClause_? `{`
/// > _InnerAttribute_*
/// > _AssociatedItem_*
/// > `}`
/// >
/// > _ScopeImplTarget_ :\
/// > `Self` | _TypeName_ _GenericParams_?
///
/// That is, implementations may take one of two forms:
///
/// - `impl MyType { ... }`
/// - `impl Self { ... }`
///
/// Generic parameters from the type are included automatically, with bounds as
/// defined on the type. Additional generic parameters and an additional where
/// clause are supported (generic parameter lists and bounds are merged).
///
/// ## Example
///
/// ```
/// use impl_tools::impl_scope;
/// use std::ops::Add;
///
/// impl_scope! {
/// struct Pair<T>(T, T);
///
/// impl Self where T: Clone + Add {
/// fn sum(&self) -> <T as Add>::Output {
/// self.0.clone().add(self.1.clone())
/// }
/// }
/// }
/// ```
#[proc_macro_error]
#[proc_macro]
pub fn impl_scope(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input as scope::Scope);
scope::scope(input)
.unwrap_or_else(|err| err.to_compile_error())
.into()
}