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
use proc_macro2::{Ident, TokenStream, Span}; use syn::{Type, Path, Lifetime, LifetimeDef}; use syn::spanned::Spanned; use quote::quote; use crate::error::Errors; #[derive(Default)] pub struct TypeParams { lifetime: bool, type_params: Vec<(Ident, Option<Type>)>, } impl TypeParams { pub fn explicit_lifetime(&mut self, lt: LifetimeDef, errors: &mut Errors) { if self.lifetime { let span = lt.span(); errors.err("Logos types can only have one lifetime can be set", span); } self.lifetime = true; } pub fn add(&mut self, param: Ident) { self.type_params.push((param, None)); } pub fn set(&mut self, param: Ident, ty: TokenStream, errors: &mut Errors) { let ty = match syn::parse2::<Type>(ty) { Ok(mut ty) => { replace_lifetimes(&mut ty); ty }, Err(err) => { errors.err(err.to_string(), err.span()); return; }, }; match self.type_params.iter_mut().find(|(name, _)| *name == param) { Some((_, slot)) => { if let Some(previous) = slot.replace(ty) { errors .err( format!("{} can only have one type assigned to it", param), param.span(), ) .err("Previously assigned here", previous.span()); } }, None => { errors.err( format!("{} is not a declared type parameter", param), param.span(), ); } } } pub fn find(&self, path: &Path) -> Option<Type> { for (ident, ty) in &self.type_params { if path.is_ident(ident) { return ty.clone(); } } None } pub fn generics(&self, errors: &mut Errors) -> Option<TokenStream> { if !self.lifetime && self.type_params.is_empty() { return None; } let mut generics = Vec::new(); if self.lifetime { generics.push(quote!('s)); } for (ty, replace) in self.type_params.iter() { match replace { Some(ty) => generics.push(quote!(#ty)), None => { errors.err( format!( "Generic type parameter without a concrete type\n\n\ Define a concrete type Logos can use: #[logos(type {} = Type)]", ty, ), ty.span(), ); } } } if generics.is_empty() { None } else { Some(quote!(<#(#generics),*>)) } } } pub fn replace_lifetimes(ty: &mut Type) { traverse_type(ty, &mut replace_lifetime) } pub fn replace_lifetime(ty: &mut Type) { use syn::{PathArguments, GenericArgument}; match ty { Type::Path(p) => { p.path.segments .iter_mut() .filter_map(|segment| match &mut segment.arguments { PathArguments::AngleBracketed(ab) => Some(ab), _ => None, }) .flat_map(|ab| ab.args.iter_mut()) .for_each(|arg| { match arg { GenericArgument::Lifetime(lt) => { *lt = Lifetime::new("'s", lt.span()); }, _ => (), } }); }, Type::Reference(r) => { let span = match r.lifetime.take() { Some(lt) => lt.span(), None => Span::call_site(), }; r.lifetime = Some(Lifetime::new("'s", span)); }, _ => (), } } pub fn traverse_type(ty: &mut Type, f: &mut impl FnMut(&mut Type)) { f(ty); match ty { Type::Array(array) => traverse_type(&mut array.elem, f), Type::BareFn(bare_fn) => { for input in &mut bare_fn.inputs { traverse_type(&mut input.ty, f); } if let syn::ReturnType::Type(_, ty) = &mut bare_fn.output { traverse_type(ty, f); } } Type::Group(group) => traverse_type(&mut group.elem, f), Type::Paren(paren) => traverse_type(&mut paren.elem, f), Type::Path(path) => traverse_path(&mut path.path, f), Type::Ptr(p) => { traverse_type(&mut p.elem, f) }, Type::Reference(r) => { traverse_type(&mut r.elem, f) }, Type::Slice(slice) => traverse_type(&mut slice.elem, f), Type::TraitObject(object) => object.bounds.iter_mut().for_each(|bound| { if let syn::TypeParamBound::Trait(trait_bound) = bound { traverse_path(&mut trait_bound.path, f); } }), Type::Tuple(tuple) => tuple.elems.iter_mut().for_each(|elem| traverse_type(elem, f)), _ => (), } } fn traverse_path(path: &mut Path, f: &mut impl FnMut(&mut Type)) { for segment in &mut path.segments { match &mut segment.arguments { syn::PathArguments::None => (), syn::PathArguments::AngleBracketed(args) => for arg in &mut args.args { match arg { syn::GenericArgument::Type(ty) => { traverse_type(ty, f); }, syn::GenericArgument::Binding(bind) => { traverse_type(&mut bind.ty, f); }, _ => (), } }, syn::PathArguments::Parenthesized(args) => { for arg in &mut args.inputs { traverse_type(arg, f); } if let syn::ReturnType::Type(_, ty) = &mut args.output { traverse_type(ty, f); } } } } }