use std::collections::BTreeMap; use anyhow::{Context as _, Result}; use inflector::Inflector; use proc_macro2::{Literal, TokenStream}; use quote::quote; use syn::Ident; use ethers_core::{ abi::{Function, FunctionExt, Param, ParamType}, types::Selector, }; use super::{types, util, Context}; /// Expands a context into a method struct containing all the generated bindings /// to the Solidity contract methods. impl Context { /// Expands all method implementations pub(crate) fn methods_and_call_structs(&self) -> Result<(TokenStream, TokenStream)> { let aliases = self.get_method_aliases()?; let sorted_functions: BTreeMap<_, _> = self.abi.functions.iter().collect(); let functions = sorted_functions .values() .map(std::ops::Deref::deref) .flatten() .map(|function| { let signature = function.abi_signature(); self.expand_function(function, aliases.get(&signature).cloned()) .with_context(|| format!("error expanding function '{}'", signature)) }) .collect::>>()?; let function_impls = quote! { #( #functions )* }; let call_structs = self.expand_call_structs(aliases)?; Ok((function_impls, call_structs)) } /// Expands to the corresponding struct type based on the inputs of the given function fn expand_call_struct( &self, function: &Function, alias: Option<&Ident>, ) -> Result { let call_name = expand_call_struct_name(function, alias); let fields = self.expand_input_pairs(function)?; // expand as a tuple if all fields are anonymous let all_anonymous_fields = function.inputs.iter().all(|input| input.name.is_empty()); let call_type_definition = if all_anonymous_fields { // expand to a tuple struct expand_data_tuple(&call_name, &fields) } else { // expand to a struct expand_data_struct(&call_name, &fields) }; let function_name = &function.name; let abi_signature = function.abi_signature(); let doc = format!( "Container type for all input parameters for the `{}`function with signature `{}` and selector `{:?}`", function.name, abi_signature, function.selector() ); let abi_signature_doc = util::expand_doc(&doc); let ethers_contract = util::ethers_contract_crate(); // use the same derives as for events let derives = util::expand_derives(&self.event_derives); Ok(quote! { #abi_signature_doc #[derive(Clone, Debug, Default, Eq, PartialEq, #ethers_contract::EthCall, #ethers_contract::EthDisplay, #derives)] #[ethcall( name = #function_name, abi = #abi_signature )] pub #call_type_definition }) } /// Expands all structs fn expand_call_structs(&self, aliases: BTreeMap) -> Result { let mut struct_defs = Vec::new(); let mut struct_names = Vec::new(); let mut variant_names = Vec::new(); for function in self.abi.functions.values().flatten() { let signature = function.abi_signature(); let alias = aliases.get(&signature); struct_defs.push(self.expand_call_struct(function, alias)?); struct_names.push(expand_call_struct_name(function, alias)); variant_names.push(expand_call_struct_variant_name(function, alias)); } let struct_def_tokens = quote! { #(#struct_defs)* }; if struct_defs.len() <= 1 { // no need for an enum return Ok(struct_def_tokens) } let ethers_core = util::ethers_core_crate(); let ethers_contract = util::ethers_contract_crate(); let enum_name = self.expand_calls_enum_name(); Ok(quote! { #struct_def_tokens #[derive(Debug, Clone, PartialEq, Eq, #ethers_contract::EthAbiType)] pub enum #enum_name { #(#variant_names(#struct_names)),* } impl #ethers_core::abi::AbiDecode for #enum_name { fn decode(data: impl AsRef<[u8]>) -> Result { #( if let Ok(decoded) = <#struct_names as #ethers_core::abi::AbiDecode>::decode(data.as_ref()) { return Ok(#enum_name::#variant_names(decoded)) } )* Err(#ethers_core::abi::Error::InvalidData.into()) } } impl #ethers_core::abi::AbiEncode for #enum_name { fn encode(self) -> Vec { match self { #( #enum_name::#variant_names(element) => element.encode() ),* } } } impl ::std::fmt::Display for #enum_name { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { match self { #( #enum_name::#variant_names(element) => element.fmt(f) ),* } } } #( impl ::std::convert::From<#struct_names> for #enum_name { fn from(var: #struct_names) -> Self { #enum_name::#variant_names(var) } } )* }) } /// The name ident of the calls enum fn expand_calls_enum_name(&self) -> Ident { util::ident(&format!("{}Calls", self.contract_name)) } /// Expands to the `name : type` pairs of the function's inputs fn expand_input_pairs(&self, fun: &Function) -> Result> { let mut args = Vec::with_capacity(fun.inputs.len()); for (idx, param) in fun.inputs.iter().enumerate() { let name = util::expand_input_name(idx, ¶m.name); let ty = self.expand_input_param(fun, ¶m.name, ¶m.kind)?; args.push((name, ty)); } Ok(args) } /// Expands the arguments for the call that eventually calls the contract fn expand_contract_call_args(&self, fun: &Function) -> Result { let mut call_args = Vec::with_capacity(fun.inputs.len()); for (idx, param) in fun.inputs.iter().enumerate() { let name = util::expand_input_name(idx, ¶m.name); let call_arg = match param.kind { // this is awkward edge case where the function inputs are a single struct // we need to force this argument into a tuple so it gets expanded to `((#name,))` // this is currently necessary because internally `flatten_tokens` is called which // removes the outermost `tuple` level and since `((#name))` is not // a rust tuple it doesn't get wrapped into another tuple that will be peeled off by // `flatten_tokens` ParamType::Tuple(_) if fun.inputs.len() == 1 => { // make sure the tuple gets converted to `Token::Tuple` quote! {(#name,)} } _ => name, }; call_args.push(call_arg); } let call_args = match call_args.len() { 0 => quote! { () }, 1 => quote! { #( #call_args )* }, _ => quote! { ( #(#call_args, )* ) }, }; Ok(call_args) } fn expand_input_param( &self, fun: &Function, param: &str, kind: &ParamType, ) -> Result { match kind { ParamType::Array(ty) => { let ty = self.expand_input_param(fun, param, ty)?; Ok(quote! { ::std::vec::Vec<#ty> }) } ParamType::FixedArray(ty, size) => { let ty = self.expand_input_param(fun, param, ty)?; let size = *size; Ok(quote! {[#ty; #size]}) } ParamType::Tuple(_) => { let ty = if let Some(rust_struct_name) = self.internal_structs.get_function_input_struct_type(&fun.name, param) { let ident = util::ident(rust_struct_name); quote! {#ident} } else { types::expand(kind)? }; Ok(ty) } _ => types::expand(kind), } } /// Expands a single function with the given alias fn expand_function(&self, function: &Function, alias: Option) -> Result { let name = alias.unwrap_or_else(|| util::safe_ident(&function.name.to_snake_case())); let selector = expand_selector(function.selector()); // TODO use structs let outputs = expand_fn_outputs(&function.outputs)?; let ethers_contract = util::ethers_contract_crate(); let result = quote! { #ethers_contract::builders::ContractCall }; let contract_args = self.expand_contract_call_args(function)?; let function_params = self.expand_input_pairs(function)?.into_iter().map(|(name, ty)| quote! { #name: #ty }); let function_params = quote! { #( , #function_params )* }; let doc = util::expand_doc(&format!( "Calls the contract's `{}` (0x{}) function", function.name, hex::encode(function.selector()) )); Ok(quote! { #doc pub fn #name(&self #function_params) -> #result { self.0.method_hash(#selector, #contract_args) .expect("method not found (this should never happen)") } }) } /// Returns the method aliases, either configured by the user or determined /// based on overloaded functions. /// /// In case of overloaded functions we would follow rust's general /// convention of suffixing the function name with _with // The first function or the function with the least amount of arguments should // be named as in the ABI, the following functions suffixed with _with_ + // additional_params[0].name + (_and_(additional_params[1+i].name))* fn get_method_aliases(&self) -> Result> { let mut aliases = self.method_aliases.clone(); // find all duplicates, where no aliases where provided for functions in self.abi.functions.values() { if functions.iter().filter(|f| !aliases.contains_key(&f.abi_signature())).count() <= 1 { // no conflicts continue } // sort functions by number of inputs asc let mut functions = functions.iter().collect::>(); functions.sort_by(|f1, f2| f1.inputs.len().cmp(&f2.inputs.len())); let prev = functions[0]; for duplicate in functions.into_iter().skip(1) { // attempt to find diff in the input arguments let diff = duplicate .inputs .iter() .filter(|i1| prev.inputs.iter().all(|i2| *i1 != i2)) .collect::>(); let alias = match diff.len() { 0 => { // this should not happen since functions with same name and input are // illegal anyhow::bail!( "Function with same name and parameter types defined twice: {}", duplicate.name ); } 1 => { // single additional input params format!( "{}_with_{}", duplicate.name.to_snake_case(), diff[0].name.to_snake_case() ) } _ => { // 1 + n additional input params let and = diff .iter() .skip(1) .map(|i| i.name.to_snake_case()) .collect::>() .join("_and_"); format!( "{}_with_{}_and_{}", duplicate.name.to_snake_case(), diff[0].name.to_snake_case(), and ) } }; aliases.insert(duplicate.abi_signature(), util::safe_ident(&alias)); } } Ok(aliases) } } fn expand_fn_outputs(outputs: &[Param]) -> Result { match outputs.len() { 0 => Ok(quote! { () }), 1 => types::expand(&outputs[0].kind), _ => { let types = outputs .iter() .map(|param| types::expand(¶m.kind)) .collect::>>()?; Ok(quote! { (#( #types ),*) }) } } } fn expand_selector(selector: Selector) -> TokenStream { let bytes = selector.iter().copied().map(Literal::u8_unsuffixed); quote! { [#( #bytes ),*] } } /// Expands to the name of the call struct fn expand_call_struct_name(function: &Function, alias: Option<&Ident>) -> Ident { let name = if let Some(id) = alias { format!("{}Call", id.to_string().to_pascal_case()) } else { format!("{}Call", function.name.to_pascal_case()) }; util::ident(&name) } /// Expands to the name of the call struct fn expand_call_struct_variant_name(function: &Function, alias: Option<&Ident>) -> Ident { let name = if let Some(id) = alias { id.to_string().to_pascal_case() } else { function.name.to_pascal_case() }; util::ident(&name) } /// Expands to the tuple struct definition fn expand_data_tuple(name: &Ident, params: &[(TokenStream, TokenStream)]) -> TokenStream { let fields = params .iter() .map(|(_, ty)| { quote! { pub #ty } }) .collect::>(); if fields.is_empty() { quote! { struct #name; } } else { quote! { struct #name( #( #fields ),* ); } } } /// Expands to the struct definition of a call struct fn expand_data_struct(name: &Ident, params: &[(TokenStream, TokenStream)]) -> TokenStream { let fields = params .iter() .map(|(name, ty)| { quote! { pub #name: #ty } }) .collect::>(); quote! { struct #name { #( #fields, )* } } } #[cfg(test)] mod tests { use ethers_core::abi::ParamType; use super::*; // packs the argument in a tuple to be used for the contract call fn expand_inputs_call_arg(inputs: &[Param]) -> TokenStream { let names = inputs .iter() .enumerate() .map(|(i, param)| { let name = util::expand_input_name(i, ¶m.name); match param.kind { // this is awkward edge case where the function inputs are a single struct // we need to force this argument into a tuple so it gets expanded to // `((#name,))` this is currently necessary because // internally `flatten_tokens` is called which removes the outermost `tuple` // level and since `((#name))` is not a rust tuple it // doesn't get wrapped into another tuple that will be peeled off by // `flatten_tokens` ParamType::Tuple(_) if inputs.len() == 1 => { // make sure the tuple gets converted to `Token::Tuple` quote! {(#name,)} } _ => name, } }) .collect::>(); match names.len() { 0 => quote! { () }, 1 => quote! { #( #names )* }, _ => quote! { ( #(#names, )* ) }, } } // converts the function params to name/type pairs fn expand_inputs(inputs: &[Param]) -> Result { let params = inputs .iter() .enumerate() .map(|(i, param)| { let name = util::expand_input_name(i, ¶m.name); let kind = types::expand(¶m.kind)?; Ok(quote! { #name: #kind }) }) .collect::>>()?; Ok(quote! { #( , #params )* }) } #[test] fn test_expand_inputs_call_arg() { // no inputs let params = vec![]; let token_stream = expand_inputs_call_arg(¶ms); assert_eq!(token_stream.to_string(), "()"); // single input let params = vec![Param { name: "arg_a".to_string(), kind: ParamType::Address, internal_type: None, }]; let token_stream = expand_inputs_call_arg(¶ms); assert_eq!(token_stream.to_string(), "arg_a"); // two inputs let params = vec![ Param { name: "arg_a".to_string(), kind: ParamType::Address, internal_type: None }, Param { name: "arg_b".to_string(), kind: ParamType::Uint(256usize), internal_type: None, }, ]; let token_stream = expand_inputs_call_arg(¶ms); assert_eq!(token_stream.to_string(), "(arg_a , arg_b ,)"); // three inputs let params = vec![ Param { name: "arg_a".to_string(), kind: ParamType::Address, internal_type: None }, Param { name: "arg_b".to_string(), kind: ParamType::Uint(128usize), internal_type: None, }, Param { name: "arg_c".to_string(), kind: ParamType::Bool, internal_type: None }, ]; let token_stream = expand_inputs_call_arg(¶ms); assert_eq!(token_stream.to_string(), "(arg_a , arg_b , arg_c ,)"); } #[test] fn expand_inputs_empty() { assert_quote!(expand_inputs(&[]).unwrap().to_string(), {},); } #[test] fn expand_inputs_() { assert_quote!( expand_inputs( &[ Param { name: "a".to_string(), kind: ParamType::Bool, internal_type: None, }, Param { name: "b".to_string(), kind: ParamType::Address, internal_type: None, }, ], ) .unwrap(), { , a: bool, b: ethers_core::types::Address }, ); } #[test] fn expand_fn_outputs_empty() { assert_quote!(expand_fn_outputs(&[],).unwrap(), { () }); } #[test] fn expand_fn_outputs_single() { assert_quote!( expand_fn_outputs(&[Param { name: "a".to_string(), kind: ParamType::Bool, internal_type: None, }]) .unwrap(), { bool }, ); } #[test] fn expand_fn_outputs_multiple() { assert_quote!( expand_fn_outputs(&[ Param { name: "a".to_string(), kind: ParamType::Bool, internal_type: None }, Param { name: "b".to_string(), kind: ParamType::Address, internal_type: None }, ],) .unwrap(), { (bool, ethers_core::types::Address) }, ); } }