2021-10-16 08:19:42 +00:00
|
|
|
use ethers_contract_abigen::ethers_core_crate;
|
2021-10-29 12:29:35 +00:00
|
|
|
use ethers_core::{abi::ParamType, types::Selector};
|
2021-10-16 08:19:42 +00:00
|
|
|
use proc_macro2::Literal;
|
|
|
|
use quote::quote;
|
2021-10-18 10:28:38 +00:00
|
|
|
use syn::{
|
2021-10-29 12:29:35 +00:00
|
|
|
parse::Error, spanned::Spanned as _, Data, DeriveInput, Expr, Fields, GenericArgument, Lit,
|
|
|
|
PathArguments, Type,
|
2021-10-18 10:28:38 +00:00
|
|
|
};
|
2021-10-16 08:19:42 +00:00
|
|
|
|
|
|
|
pub fn signature(hash: &[u8]) -> proc_macro2::TokenStream {
|
|
|
|
let core_crate = ethers_core_crate();
|
|
|
|
let bytes = hash.iter().copied().map(Literal::u8_unsuffixed);
|
|
|
|
quote! {#core_crate::types::H256([#( #bytes ),*])}
|
|
|
|
}
|
|
|
|
|
2021-10-18 10:28:38 +00:00
|
|
|
pub fn selector(selector: Selector) -> proc_macro2::TokenStream {
|
|
|
|
let bytes = selector.iter().copied().map(Literal::u8_unsuffixed);
|
|
|
|
quote! {[#( #bytes ),*]}
|
|
|
|
}
|
|
|
|
|
2021-10-16 08:19:42 +00:00
|
|
|
/// Parses an int type from its string representation
|
|
|
|
pub fn parse_int_param_type(s: &str) -> Option<ParamType> {
|
2021-10-29 12:29:35 +00:00
|
|
|
let size = s.chars().skip(1).collect::<String>().parse::<usize>().ok()?;
|
2021-10-16 08:19:42 +00:00
|
|
|
if s.starts_with('u') {
|
|
|
|
Some(ParamType::Uint(size))
|
|
|
|
} else if s.starts_with('i') {
|
|
|
|
Some(ParamType::Int(size))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Converts param types for indexed parameters to bytes32 where appropriate
|
|
|
|
// This applies to strings, arrays, structs and bytes to follow the encoding of
|
|
|
|
// these indexed param types according to
|
|
|
|
// https://solidity.readthedocs.io/en/develop/abi-spec.html#encoding-of-indexed-event-parameters
|
|
|
|
pub fn topic_param_type_quote(kind: &ParamType) -> proc_macro2::TokenStream {
|
|
|
|
let core_crate = ethers_core_crate();
|
|
|
|
match kind {
|
2021-10-29 12:29:35 +00:00
|
|
|
ParamType::String |
|
|
|
|
ParamType::Bytes |
|
|
|
|
ParamType::Array(_) |
|
|
|
|
ParamType::FixedArray(_, _) |
|
|
|
|
ParamType::Tuple(_) => quote! {#core_crate::abi::ParamType::FixedBytes(32)},
|
2021-10-16 08:19:42 +00:00
|
|
|
ty => param_type_quote(ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the rust type for the given parameter
|
|
|
|
pub fn param_type_quote(kind: &ParamType) -> proc_macro2::TokenStream {
|
|
|
|
let core_crate = ethers_core_crate();
|
|
|
|
match kind {
|
|
|
|
ParamType::Address => {
|
|
|
|
quote! {#core_crate::abi::ParamType::Address}
|
|
|
|
}
|
|
|
|
ParamType::Bytes => {
|
|
|
|
quote! {#core_crate::abi::ParamType::Bytes}
|
|
|
|
}
|
|
|
|
ParamType::Int(size) => {
|
|
|
|
let size = Literal::usize_suffixed(*size);
|
|
|
|
quote! {#core_crate::abi::ParamType::Int(#size)}
|
|
|
|
}
|
|
|
|
ParamType::Uint(size) => {
|
|
|
|
let size = Literal::usize_suffixed(*size);
|
|
|
|
quote! {#core_crate::abi::ParamType::Uint(#size)}
|
|
|
|
}
|
|
|
|
ParamType::Bool => {
|
|
|
|
quote! {#core_crate::abi::ParamType::Bool}
|
|
|
|
}
|
|
|
|
ParamType::String => {
|
|
|
|
quote! {#core_crate::abi::ParamType::String}
|
|
|
|
}
|
|
|
|
ParamType::Array(ty) => {
|
|
|
|
let ty = param_type_quote(&*ty);
|
|
|
|
quote! {#core_crate::abi::ParamType::Array(Box::new(#ty))}
|
|
|
|
}
|
|
|
|
ParamType::FixedBytes(size) => {
|
|
|
|
let size = Literal::usize_suffixed(*size);
|
|
|
|
quote! {#core_crate::abi::ParamType::FixedBytes(#size)}
|
|
|
|
}
|
|
|
|
ParamType::FixedArray(ty, size) => {
|
|
|
|
let ty = param_type_quote(&*ty);
|
|
|
|
let size = Literal::usize_suffixed(*size);
|
|
|
|
quote! {#core_crate::abi::ParamType::FixedArray(Box::new(#ty),#size)}
|
|
|
|
}
|
|
|
|
ParamType::Tuple(tuple) => {
|
|
|
|
let elements = tuple.iter().map(param_type_quote);
|
|
|
|
quote! {
|
|
|
|
#core_crate::abi::ParamType::Tuple(
|
|
|
|
::std::vec![
|
|
|
|
#( #elements ),*
|
|
|
|
]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:42:17 +00:00
|
|
|
/// Tries to find the corresponding `ParamType` used for tokenization for the
|
|
|
|
/// given type
|
2021-10-16 08:19:42 +00:00
|
|
|
pub fn find_parameter_type(ty: &Type) -> Result<ParamType, Error> {
|
|
|
|
match ty {
|
|
|
|
Type::Array(ty) => {
|
|
|
|
let param = find_parameter_type(ty.elem.as_ref())?;
|
|
|
|
if let Expr::Lit(ref expr) = ty.len {
|
|
|
|
if let Lit::Int(ref len) = expr.lit {
|
|
|
|
if let Ok(size) = len.base10_parse::<usize>() {
|
2021-10-29 12:29:35 +00:00
|
|
|
return Ok(ParamType::FixedArray(Box::new(param), size))
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-29 12:29:35 +00:00
|
|
|
Err(Error::new(ty.span(), "Failed to derive proper ABI from array field"))
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
Type::Path(ty) => {
|
|
|
|
if let Some(ident) = ty.path.get_ident() {
|
2021-10-29 12:29:35 +00:00
|
|
|
let ident = ident.to_string().to_lowercase();
|
|
|
|
return match ident.as_str() {
|
2021-10-16 08:19:42 +00:00
|
|
|
"address" => Ok(ParamType::Address),
|
|
|
|
"string" => Ok(ParamType::String),
|
|
|
|
"bool" => Ok(ParamType::Bool),
|
|
|
|
"int" | "uint" => Ok(ParamType::Uint(256)),
|
|
|
|
"h160" => Ok(ParamType::FixedBytes(20)),
|
|
|
|
"h256" | "secret" | "hash" => Ok(ParamType::FixedBytes(32)),
|
|
|
|
"h512" | "public" => Ok(ParamType::FixedBytes(64)),
|
|
|
|
s => parse_int_param_type(s).ok_or_else(|| {
|
|
|
|
Error::new(ty.span(), "Failed to derive proper ABI from fields")
|
|
|
|
}),
|
2021-10-29 12:29:35 +00:00
|
|
|
}
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
// check for `Vec`
|
|
|
|
if ty.path.segments.len() == 1 && ty.path.segments[0].ident == "Vec" {
|
|
|
|
if let PathArguments::AngleBracketed(ref args) = ty.path.segments[0].arguments {
|
|
|
|
if args.args.len() == 1 {
|
|
|
|
if let GenericArgument::Type(ref ty) = args.args.iter().next().unwrap() {
|
|
|
|
let kind = find_parameter_type(ty)?;
|
2021-10-29 12:29:35 +00:00
|
|
|
return Ok(ParamType::Array(Box::new(kind)))
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 12:29:35 +00:00
|
|
|
Err(Error::new(ty.span(), "Failed to derive proper ABI from fields"))
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
Type::Tuple(ty) => {
|
2021-10-29 12:29:35 +00:00
|
|
|
let params = ty.elems.iter().map(find_parameter_type).collect::<Result<Vec<_>, _>>()?;
|
2021-10-16 08:19:42 +00:00
|
|
|
Ok(ParamType::Tuple(params))
|
|
|
|
}
|
2021-10-29 12:29:35 +00:00
|
|
|
_ => Err(Error::new(ty.span(), "Failed to derive proper ABI from fields")),
|
2021-10-16 08:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-18 10:28:38 +00:00
|
|
|
|
|
|
|
/// Attempts to determine the ABI Paramtypes from the type's AST
|
|
|
|
pub fn derive_abi_inputs_from_fields(
|
|
|
|
input: &DeriveInput,
|
|
|
|
trait_name: &str,
|
|
|
|
) -> Result<Vec<(String, ParamType)>, Error> {
|
|
|
|
let fields: Vec<_> = match input.data {
|
|
|
|
Data::Struct(ref data) => match data.fields {
|
|
|
|
Fields::Named(ref fields) => fields.named.iter().collect(),
|
|
|
|
Fields::Unnamed(ref fields) => fields.unnamed.iter().collect(),
|
|
|
|
Fields::Unit => {
|
|
|
|
return Err(Error::new(
|
|
|
|
input.span(),
|
2021-10-29 12:29:35 +00:00
|
|
|
format!("{} cannot be derived for empty structs and unit", trait_name),
|
2021-10-18 10:28:38 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Data::Enum(_) => {
|
|
|
|
return Err(Error::new(
|
|
|
|
input.span(),
|
|
|
|
format!("{} cannot be derived for enums", trait_name),
|
2021-10-29 12:29:35 +00:00
|
|
|
))
|
2021-10-18 10:28:38 +00:00
|
|
|
}
|
|
|
|
Data::Union(_) => {
|
|
|
|
return Err(Error::new(
|
|
|
|
input.span(),
|
|
|
|
format!("{} cannot be derived for unions", trait_name),
|
2021-10-29 12:29:35 +00:00
|
|
|
))
|
2021-10-18 10:28:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fields
|
|
|
|
.iter()
|
|
|
|
.map(|f| {
|
2021-10-29 12:29:35 +00:00
|
|
|
let name =
|
|
|
|
f.ident.as_ref().map(|name| name.to_string()).unwrap_or_else(|| "".to_string());
|
2021-10-18 10:28:38 +00:00
|
|
|
find_parameter_type(&f.ty).map(|ty| (name, ty))
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|