8cfa36fedd
* Rename `hashing` crate to `eth2_hashing` * Add license, desc to eth2_hashing Cargo.toml * Remove merkle root from eth2 hashing * Remove old benches folder (zombied from old branch) * Add docs to eth2_hashing * Prepare tree_hash for publishing on crates.io * Update deps to use crates.io instead of paths * Update all crates to pull ssz from crates.io * Remove cached_tree_hash, add patches to manifest * Fix compile error in benches * Remove unused code * Fix fake_crypto compile error
139 lines
4.3 KiB
Rust
139 lines
4.3 KiB
Rust
#![recursion_limit = "256"]
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
use quote::{quote, ToTokens};
|
|
use syn::{parse_macro_input, DeriveInput};
|
|
|
|
/// Returns a Vec of `syn::Ident` for each named field in the struct, whilst filtering out fields
|
|
/// that should not be hashed.
|
|
///
|
|
/// # Panics
|
|
/// Any unnamed struct field (like in a tuple struct) will raise a panic at compile time.
|
|
fn get_hashable_named_field_idents<'a>(struct_data: &'a syn::DataStruct) -> Vec<&'a syn::Ident> {
|
|
struct_data
|
|
.fields
|
|
.iter()
|
|
.filter_map(|f| {
|
|
if should_skip_hashing(&f) {
|
|
None
|
|
} else {
|
|
Some(match &f.ident {
|
|
Some(ref ident) => ident,
|
|
_ => panic!("tree_hash_derive only supports named struct fields."),
|
|
})
|
|
}
|
|
})
|
|
.collect()
|
|
}
|
|
|
|
/// Returns true if some field has an attribute declaring it should not be hashed.
|
|
///
|
|
/// The field attribute is: `#[tree_hash(skip_hashing)]`
|
|
fn should_skip_hashing(field: &syn::Field) -> bool {
|
|
field
|
|
.attrs
|
|
.iter()
|
|
.any(|attr| attr.into_token_stream().to_string() == "# [ tree_hash ( skip_hashing ) ]")
|
|
}
|
|
|
|
/// Implements `tree_hash::TreeHash` for some `struct`.
|
|
///
|
|
/// Fields are hashed in the order they are defined.
|
|
#[proc_macro_derive(TreeHash, attributes(tree_hash))]
|
|
pub fn tree_hash_derive(input: TokenStream) -> TokenStream {
|
|
let item = parse_macro_input!(input as DeriveInput);
|
|
|
|
let name = &item.ident;
|
|
let (impl_generics, ty_generics, where_clause) = &item.generics.split_for_impl();
|
|
|
|
let struct_data = match &item.data {
|
|
syn::Data::Struct(s) => s,
|
|
_ => panic!("tree_hash_derive only supports structs."),
|
|
};
|
|
|
|
let idents = get_hashable_named_field_idents(&struct_data);
|
|
|
|
let output = quote! {
|
|
impl #impl_generics tree_hash::TreeHash for #name #ty_generics #where_clause {
|
|
fn tree_hash_type() -> tree_hash::TreeHashType {
|
|
tree_hash::TreeHashType::Container
|
|
}
|
|
|
|
fn tree_hash_packed_encoding(&self) -> Vec<u8> {
|
|
unreachable!("Struct should never be packed.")
|
|
}
|
|
|
|
fn tree_hash_packing_factor() -> usize {
|
|
unreachable!("Struct should never be packed.")
|
|
}
|
|
|
|
fn tree_hash_root(&self) -> Vec<u8> {
|
|
let mut leaves = Vec::with_capacity(4 * tree_hash::HASHSIZE);
|
|
|
|
#(
|
|
leaves.append(&mut self.#idents.tree_hash_root());
|
|
)*
|
|
|
|
tree_hash::merkle_root(&leaves, 0)
|
|
}
|
|
}
|
|
};
|
|
output.into()
|
|
}
|
|
|
|
#[proc_macro_derive(SignedRoot, attributes(signed_root))]
|
|
pub fn tree_hash_signed_root_derive(input: TokenStream) -> TokenStream {
|
|
let item = parse_macro_input!(input as DeriveInput);
|
|
|
|
let name = &item.ident;
|
|
let (impl_generics, ty_generics, where_clause) = &item.generics.split_for_impl();
|
|
|
|
let struct_data = match &item.data {
|
|
syn::Data::Struct(s) => s,
|
|
_ => panic!("tree_hash_derive only supports structs."),
|
|
};
|
|
|
|
let idents = get_signed_root_named_field_idents(&struct_data);
|
|
let num_elems = idents.len();
|
|
|
|
let output = quote! {
|
|
impl #impl_generics tree_hash::SignedRoot for #name #ty_generics #where_clause {
|
|
fn signed_root(&self) -> Vec<u8> {
|
|
let mut leaves = Vec::with_capacity(#num_elems * tree_hash::HASHSIZE);
|
|
|
|
#(
|
|
leaves.append(&mut self.#idents.tree_hash_root());
|
|
)*
|
|
|
|
tree_hash::merkle_root(&leaves, 0)
|
|
}
|
|
}
|
|
};
|
|
output.into()
|
|
}
|
|
|
|
fn get_signed_root_named_field_idents(struct_data: &syn::DataStruct) -> Vec<&syn::Ident> {
|
|
struct_data
|
|
.fields
|
|
.iter()
|
|
.filter_map(|f| {
|
|
if should_skip_signed_root(&f) {
|
|
None
|
|
} else {
|
|
Some(match &f.ident {
|
|
Some(ref ident) => ident,
|
|
_ => panic!("tree_hash_derive only supports named struct fields"),
|
|
})
|
|
}
|
|
})
|
|
.collect()
|
|
}
|
|
|
|
fn should_skip_signed_root(field: &syn::Field) -> bool {
|
|
field
|
|
.attrs
|
|
.iter()
|
|
.any(|attr| attr.into_token_stream().to_string() == "# [ signed_root ( skip_hashing ) ]")
|
|
}
|