-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9a7db6
commit 3250e95
Showing
2 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
use proc_macro2::Ident; | ||
use quote::quote; | ||
use syn::parse::{Parse, ParseStream}; | ||
use syn::punctuated::Punctuated; | ||
use syn::spanned::Spanned; | ||
use syn::{ | ||
braced, parse_macro_input, Attribute, Generics, ImplItem, Pat, PatIdent, Path, Signature, | ||
Token, TraitItem, TraitItemConst, TraitItemFn, TraitItemMacro, TraitItemType, Type, Visibility, | ||
}; | ||
|
||
pub(crate) fn extension(input: proc_macro::TokenStream) -> proc_macro::TokenStream { | ||
// Parse the input tokens into a syntax tree | ||
let Extension { attrs, generics, vis, trait_, self_ty, items } = | ||
parse_macro_input!(input as Extension); | ||
let headers: Vec<_> = items | ||
.iter() | ||
.map(|item| match item { | ||
ImplItem::Fn(f) => TraitItem::Fn(TraitItemFn { | ||
attrs: scrub_attrs(&f.attrs), | ||
sig: scrub_header(f.sig.clone()), | ||
default: None, | ||
semi_token: Some(Token![;](f.block.span())), | ||
}), | ||
ImplItem::Const(ct) => TraitItem::Const(TraitItemConst { | ||
attrs: scrub_attrs(&ct.attrs), | ||
const_token: ct.const_token, | ||
ident: ct.ident.clone(), | ||
generics: ct.generics.clone(), | ||
colon_token: ct.colon_token, | ||
ty: ct.ty.clone(), | ||
default: None, | ||
semi_token: ct.semi_token, | ||
}), | ||
ImplItem::Type(ty) => TraitItem::Type(TraitItemType { | ||
attrs: scrub_attrs(&ty.attrs), | ||
type_token: ty.type_token, | ||
ident: ty.ident.clone(), | ||
generics: ty.generics.clone(), | ||
colon_token: None, | ||
bounds: Punctuated::new(), | ||
default: None, | ||
semi_token: ty.semi_token, | ||
}), | ||
ImplItem::Macro(mac) => TraitItem::Macro(TraitItemMacro { | ||
attrs: scrub_attrs(&mac.attrs), | ||
mac: mac.mac.clone(), | ||
semi_token: mac.semi_token, | ||
}), | ||
ImplItem::Verbatim(stream) => TraitItem::Verbatim(stream.clone()), | ||
_ => unimplemented!(), | ||
}) | ||
.collect(); | ||
|
||
quote! { | ||
#(#attrs)* | ||
#vis trait #trait_ { | ||
#(#headers)* | ||
} | ||
|
||
impl #generics #trait_ for #self_ty { | ||
#(#items)* | ||
} | ||
} | ||
.into() | ||
} | ||
|
||
/// Only keep `#[doc]` attrs. | ||
fn scrub_attrs(attrs: &[Attribute]) -> Vec<Attribute> { | ||
attrs.into_iter().cloned().filter(|attr| attr.path().segments[0].ident == "doc").collect() | ||
} | ||
|
||
/// Scrub arguments so that they're valid for trait signatures. | ||
fn scrub_header(mut sig: Signature) -> Signature { | ||
for (idx, input) in sig.inputs.iter_mut().enumerate() { | ||
match input { | ||
syn::FnArg::Receiver(rcvr) => { | ||
// `mut self` -> `self` | ||
if rcvr.reference.is_none() { | ||
rcvr.mutability.take(); | ||
} | ||
} | ||
syn::FnArg::Typed(arg) => match &mut *arg.pat { | ||
Pat::Ident(arg) => { | ||
// `ref mut ident @ pat` -> `ident` | ||
arg.by_ref.take(); | ||
arg.mutability.take(); | ||
arg.subpat.take(); | ||
} | ||
_ => { | ||
// `pat` -> `__arg0` | ||
arg.pat = Box::new( | ||
PatIdent { | ||
attrs: vec![], | ||
by_ref: None, | ||
mutability: None, | ||
ident: Ident::new(&format!("__arg{idx}"), arg.pat.span()), | ||
subpat: None, | ||
} | ||
.into(), | ||
) | ||
} | ||
}, | ||
} | ||
} | ||
sig | ||
} | ||
|
||
struct Extension { | ||
attrs: Vec<Attribute>, | ||
vis: Visibility, | ||
generics: Generics, | ||
trait_: Path, | ||
self_ty: Type, | ||
items: Vec<ImplItem>, | ||
} | ||
|
||
impl Parse for Extension { | ||
fn parse(input: ParseStream<'_>) -> syn::Result<Self> { | ||
let attrs = input.call(Attribute::parse_outer)?; | ||
let vis = input.parse()?; | ||
let _: Token![impl] = input.parse()?; | ||
let generics = input.parse()?; | ||
let trait_ = input.parse()?; | ||
let _: Token![for] = input.parse()?; | ||
let self_ty = input.parse()?; | ||
|
||
let content; | ||
let _brace_token = braced!(content in input); | ||
let mut items = Vec::new(); | ||
while !content.is_empty() { | ||
items.push(content.parse()?); | ||
} | ||
|
||
Ok(Extension { attrs, generics, vis, trait_, self_ty, items }) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters