diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 | ||||
-rw-r--r-- | src/parse_assoc_type.rs | 34 | ||||
-rw-r--r-- | src/parse_trait_sig.rs | 2 | ||||
-rw-r--r-- | src/syn_utils.rs | 13 |
4 files changed, 47 insertions, 5 deletions
@@ -365,6 +365,9 @@ impl TypeTransform { fn convert(&self, arg: proc_macro2::TokenStream) -> proc_macro2::TokenStream { match self { TypeTransform::Into => quote! {#arg.into()}, + TypeTransform::Box(box_type) => { + quote! {Box::new(#arg) as #box_type} + } TypeTransform::Map(opt) => { let inner = opt.convert(quote!(x)); quote! {#arg.map(|x| #inner)} diff --git a/src/parse_assoc_type.rs b/src/parse_assoc_type.rs index a255455..7efc7da 100644 --- a/src/parse_assoc_type.rs +++ b/src/parse_assoc_type.rs @@ -1,9 +1,10 @@ use proc_macro2::Span; +use quote::{quote, ToTokens}; use syn::spanned::Spanned; -use syn::{GenericArgument, Ident, PathArguments, PathSegment, TraitItemType, Type}; +use syn::{GenericArgument, Ident, Path, PathArguments, PathSegment, TraitItemType, Type}; use crate::parse_trait_sig::TypeTransform; -use crate::syn_utils::{find_in_type, trait_bounds}; +use crate::syn_utils::{find_in_type, lifetime_bounds, trait_bounds}; use crate::AssocTypeMatcher; #[derive(Debug)] @@ -13,20 +14,39 @@ pub enum AssocTypeParseError { NoIntoBound, } +#[derive(Debug, Clone)] +pub struct BoxType { + trait_name: Path, + placeholder_lifetime: bool, +} + +impl ToTokens for BoxType { + fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) { + let path = &self.trait_name; + match self.placeholder_lifetime { + true => tokens.extend(quote! {Box<dyn #path + '_>}), + false => tokens.extend(quote! {Box<dyn #path>}), + } + } +} + pub enum DestType<'a> { Into(&'a Type), + Box(BoxType), } impl DestType<'_> { pub fn get_dest(&self) -> Type { match self { DestType::Into(ty) => (*ty).clone(), + DestType::Box(b) => Type::Verbatim(quote!(#b)), } } pub fn type_transformation(&self) -> TypeTransform { match self { DestType::Into(_) => TypeTransform::Into, + DestType::Box(b) => TypeTransform::Box(b.clone()), } } } @@ -34,7 +54,7 @@ impl DestType<'_> { pub fn parse_assoc_type( assoc_type: &TraitItemType, ) -> Result<(&Ident, DestType), (Span, AssocTypeParseError)> { - for bound in trait_bounds(&assoc_type.bounds) { + if let Some(bound) = trait_bounds(&assoc_type.bounds).next() { if let PathSegment { ident, arguments: PathArguments::AngleBracketed(args), @@ -59,6 +79,14 @@ pub fn parse_assoc_type( } } } + return Ok(( + &assoc_type.ident, + DestType::Box(BoxType { + trait_name: bound.path.clone(), + placeholder_lifetime: !lifetime_bounds(&assoc_type.bounds) + .any(|l| l.ident == "static"), + }), + )); } Err((assoc_type.span(), AssocTypeParseError::NoIntoBound)) } diff --git a/src/parse_trait_sig.rs b/src/parse_trait_sig.rs index b7b7b3f..76402ac 100644 --- a/src/parse_trait_sig.rs +++ b/src/parse_trait_sig.rs @@ -6,6 +6,7 @@ use syn::{ }; use syn::{Ident, Signature, TypeImplTrait}; +use crate::parse_assoc_type::BoxType; use crate::syn_utils::{find_in_type, trait_bounds, TypeMatcher}; use crate::transform::{dynamize_function_bounds, AssocTypeConversions, TransformError}; use crate::AssocTypeMatcher; @@ -14,6 +15,7 @@ use crate::AssocTypeMatcher; pub enum TypeTransform { NoOp, Into, + Box(BoxType), Map(Box<TypeTransform>), Result(Box<TypeTransform>, Box<TypeTransform>), } diff --git a/src/syn_utils.rs b/src/syn_utils.rs index 4588186..61ae27f 100644 --- a/src/syn_utils.rs +++ b/src/syn_utils.rs @@ -1,6 +1,6 @@ use syn::{ - punctuated::Punctuated, GenericArgument, Path, PathArguments, ReturnType, TraitBound, Type, - TypeParamBound, + punctuated::Punctuated, GenericArgument, Lifetime, Path, PathArguments, ReturnType, TraitBound, + Type, TypeParamBound, }; pub trait TypeMatcher<T> { @@ -21,6 +21,15 @@ pub fn trait_bounds<T>( }) } +pub fn lifetime_bounds<T>( + bounds: &Punctuated<TypeParamBound, T>, +) -> impl Iterator<Item = &Lifetime> { + bounds.iter().filter_map(|b| match b { + TypeParamBound::Trait(_) => None, + TypeParamBound::Lifetime(l) => Some(l), + }) +} + pub fn find_in_type<'a, T>(t: &'a Type, matcher: &dyn TypeMatcher<T>) -> Option<&'a T> { if let Some(ret) = matcher.match_type(t) { return Some(ret); |