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
use azure_functions_shared::codegen; #[cfg(feature = "unstable")] use proc_macro::Diagnostic; use proc_macro::{Span, TokenStream}; use proc_macro2::{Delimiter, Span as Span2}; use quote::quote; use quote::ToTokens; use syn::buffer::TokenBuffer; use syn::parse::{Parse, ParseStream}; use syn::punctuated::Punctuated; use syn::spanned::Spanned; use syn::{parse, parse2, Attribute, Ident, Lit, LitStr, Path, PathSegment, Token}; pub trait TryFrom<T>: std::marker::Sized { type Error; fn try_from(item: T) -> Result<Self, Self::Error>; } pub fn to_camel_case(input: &str) -> String { let mut result = String::new(); let mut capitalize = false; let mut first = true; for ch in input.chars() { if ch == '_' { capitalize = true; } else { result.push(if capitalize && !first { ch.to_ascii_uppercase() } else { ch }); first = false; capitalize = false; } } result } pub struct AttributeArguments { pub span: Span, pub list: Vec<(Ident, Lit)>, } impl AttributeArguments { pub fn with_name(name: &str, span: proc_macro2::Span) -> Self { AttributeArguments { span: span.unstable(), list: vec![(Ident::new("name", span), Lit::Str(LitStr::new(name, span)))], } } } cfg_if::cfg_if! { if #[cfg(feature = "unstable")] { pub struct MacroError { inner: Diagnostic, } impl MacroError { pub fn emit(self) { self.inner.emit() } } impl std::convert::Into<MacroError> for String { fn into(self) -> MacroError { MacroError { inner: Span::call_site().error(self) } } } impl std::convert::Into<MacroError> for (Span2, &str) { fn into(self) -> MacroError { MacroError { inner: self.0.unstable().error(self.1) } } } impl std::convert::Into<MacroError> for (Span, &str) { fn into(self) -> MacroError { MacroError { inner: self.0.error(self.1) } } } } else { pub struct MacroError { message: String, } impl MacroError { pub fn emit(self) { panic!("{}", &self.message) } } impl std::convert::Into<MacroError> for String { fn into(self) -> MacroError { MacroError { message: self } } } impl std::convert::Into<MacroError> for (Span2, &str) { fn into(self) -> MacroError { MacroError { message: self.1.to_owned(), } } } impl std::convert::Into<MacroError> for (Span, &str) { fn into(self) -> MacroError { MacroError { message: self.1.to_owned(), } } } } } impl TryFrom<TokenStream> for AttributeArguments { type Error = MacroError; fn try_from(stream: TokenStream) -> Result<Self, Self::Error> { if stream.is_empty() { return Ok(AttributeArguments { span: Span::call_site(), list: Vec::new(), }); } parse::<AttributeArguments>(stream).map_err(|e| e.to_string().into()) } } impl TryFrom<proc_macro2::TokenStream> for AttributeArguments { type Error = MacroError; fn try_from(stream: proc_macro2::TokenStream) -> Result<Self, Self::Error> { if stream.is_empty() { return Ok(AttributeArguments { span: Span::call_site(), list: Vec::new(), }); } parse2::<AttributeArguments>(stream).map_err(|e| e.to_string().into()) } } impl TryFrom<Attribute> for AttributeArguments { type Error = MacroError; fn try_from(attr: Attribute) -> Result<Self, Self::Error> { let span = attr.span(); let stream = match TokenBuffer::new2(attr.tts) .begin() .group(Delimiter::Parenthesis) { Some((tree, _, _)) => tree.token_stream(), None => { return Err((span, "failed to parse attribute").into()); } }; let mut args = AttributeArguments::try_from(stream) .map_err(|_| (span, "failed to parse attribute").into())?; args.span = span.unstable(); Ok(args) } } impl parse::Parse for AttributeArguments { fn parse(input: ParseStream) -> parse::Result<Self> { let exprs = Punctuated::<ArgumentAssignmentExpr, Token![,]>::parse_terminated(input)?; Ok(AttributeArguments { span: Span::call_site(), list: exprs.into_iter().fold(Vec::new(), |mut list, expr| { let ArgumentAssignmentExpr(name, value) = expr; list.push((name, value)); list }), }) } } struct ArgumentAssignmentExpr(Ident, Lit); impl Parse for ArgumentAssignmentExpr { fn parse(input: ParseStream) -> parse::Result<Self> { let name = Ident::parse(input)?; input.parse::<Token![=]>()?; let value = Lit::parse(input)?; Ok(ArgumentAssignmentExpr(name, value)) } } pub struct QuotableBorrowedStr<'a>(pub &'a str); impl ToTokens for QuotableBorrowedStr<'_> { fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) { let s = self.0; quote!(::std::borrow::Cow::Borrowed(#s)).to_tokens(tokens); } } pub struct QuotableOption<T>(pub Option<T>); impl<T: ToTokens> ToTokens for QuotableOption<T> { fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) { match &self.0 { Some(inner) => quote!(Some(#inner)), None => quote!(None), } .to_tokens(tokens); } } pub struct QuotableDirection(pub codegen::Direction); impl ToTokens for QuotableDirection { fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) { match self.0 { codegen::Direction::In => { quote!(::azure_functions::codegen::Direction::In).to_tokens(tokens) } codegen::Direction::InOut => { quote!(::azure_functions::codegen::Direction::InOut).to_tokens(tokens) } codegen::Direction::Out => { quote!(::azure_functions::codegen::Direction::Out).to_tokens(tokens); } }; } } #[derive(Default)] pub struct PathVec(Vec<Path>); impl Parse for PathVec { fn parse(input: ParseStream) -> parse::Result<Self> { let paths = Punctuated::<Path, Token![,]>::parse_terminated(input)?; Ok(PathVec(paths.into_iter().collect())) } } impl IntoIterator for PathVec { type Item = Path; type IntoIter = std::vec::IntoIter<Path>; fn into_iter(self) -> Self::IntoIter { self.0.into_iter() } } impl TryFrom<TokenStream> for PathVec { type Error = MacroError; fn try_from(stream: TokenStream) -> Result<Self, Self::Error> { if stream.is_empty() { return Ok(Self::default()); } parse::<PathVec>(stream).map_err(|e| e.to_string().into()) } } pub fn path_to_string(path: &Path) -> String { let mut s = String::new(); for segment in path.segments.iter() { if !s.is_empty() { s += "::"; } s += &segment.ident.to_string(); } s } pub fn last_segment_in_path(path: &Path) -> &PathSegment { path.segments .iter() .last() .expect("expected at least one segment in path") }