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
use crate::{
abi::token::{Token, TokenSeq, WordToken},
Result, SolType, Word,
};
use alloc::vec::Vec;
use alloy_primitives::{FixedBytes, Log, B256};
mod topic;
pub use topic::EventTopic;
mod topic_list;
pub use topic_list::TopicList;
/// Solidity event.
///
/// # Implementer's Guide
///
/// It should not be necessary to implement this trait manually. Instead, use
/// the [`sol!`](crate::sol!) procedural macro to parse Solidity syntax into
/// types that implement this trait.
pub trait SolEvent: Sized {
/// The underlying tuple type which represents this event's non-indexed
/// parameters. These parameters are ABI encoded and included in the log
/// body.
///
/// If this event has no non-indexed parameters, this will be the unit type
/// `()`.
type DataTuple<'a>: SolType<Token<'a> = Self::DataToken<'a>>;
/// The [`TokenSeq`] type corresponding to the tuple.
type DataToken<'a>: TokenSeq<'a>;
/// The underlying tuple type which represents this event's topics.
///
/// These are ABI encoded and included in the log struct returned by the
/// RPC node.
///
/// See the [`TopicList`] trait for more details.
type TopicList: TopicList;
/// The event's ABI signature.
///
/// For anonymous events, this is unused, but is still present.
const SIGNATURE: &'static str;
/// The event's ABI signature hash, or selector: `keccak256(SIGNATURE)`
///
/// For non-anonymous events, this will be the first topic (`topic0`).
/// For anonymous events, this is unused, but is still present.
const SIGNATURE_HASH: FixedBytes<32>;
/// Whether the event is anonymous.
const ANONYMOUS: bool;
/// Convert decoded rust data to the event type.
fn new(
topics: <Self::TopicList as SolType>::RustType,
data: <Self::DataTuple<'_> as SolType>::RustType,
) -> Self;
/// Tokenize the event's non-indexed parameters.
fn tokenize_body(&self) -> Self::DataToken<'_>;
// TODO: avoid clones here
/// The event's topics.
fn topics(&self) -> <Self::TopicList as SolType>::RustType;
/// The size of the ABI-encoded dynamic data in bytes.
#[inline]
fn abi_encoded_size(&self) -> usize {
if let Some(size) = <Self::DataTuple<'_> as SolType>::ENCODED_SIZE {
return size;
}
self.tokenize_body().total_words() * Word::len_bytes()
}
/// ABI-encode the dynamic data of this event into the given buffer.
#[inline]
fn encode_data_to(&self, out: &mut Vec<u8>) {
out.reserve(self.abi_encoded_size());
out.extend(crate::abi::encode_sequence(&self.tokenize_body()));
}
/// ABI-encode the dynamic data of this event.
#[inline]
fn encode_data(&self) -> Vec<u8> {
let mut out = Vec::new();
self.encode_data_to(&mut out);
out
}
/// Encode the topics of this event into the given buffer.
///
/// # Errors
///
/// This method should return an error only if the buffer is too small.
fn encode_topics_raw(&self, out: &mut [WordToken]) -> Result<()>;
/// Encode the topics of this event.
///
/// The returned vector will have length `Self::TopicList::COUNT`.
#[inline]
fn encode_topics(&self) -> Vec<WordToken> {
let mut out = vec![WordToken(B256::ZERO); Self::TopicList::COUNT];
self.encode_topics_raw(&mut out).unwrap();
out
}
/// Encode the topics of this event into a fixed-size array.
///
/// # Panics
///
/// This method will panic if `LEN` is not equal to
/// `Self::TopicList::COUNT`.
#[inline]
fn encode_topics_array<const LEN: usize>(&self) -> [WordToken; LEN] {
// TODO: make this a compile-time error when `const` blocks are stable
assert_eq!(LEN, Self::TopicList::COUNT, "topic list length mismatch");
let mut out = [WordToken(B256::ZERO); LEN];
self.encode_topics_raw(&mut out).unwrap();
out
}
/// Decode the topics of this event from the given data.
#[inline]
fn decode_topics<I, D>(topics: I) -> Result<<Self::TopicList as SolType>::RustType>
where
I: IntoIterator<Item = D>,
D: Into<WordToken>,
{
<Self::TopicList as TopicList>::detokenize(topics)
}
/// ABI-decodes the dynamic data of this event from the given buffer.
#[inline]
fn abi_decode_data<'a>(
data: &'a [u8],
validate: bool,
) -> Result<<Self::DataTuple<'a> as SolType>::RustType> {
<Self::DataTuple<'a> as SolType>::abi_decode_sequence(data, validate)
}
/// Decode the event from the given log info.
fn decode_log<I, D>(topics: I, data: &[u8], validate: bool) -> Result<Self>
where
I: IntoIterator<Item = D>,
D: Into<WordToken>,
{
let topics = Self::decode_topics(topics)?;
let body = Self::abi_decode_data(data, validate)?;
Ok(Self::new(topics, body))
}
/// Decode the event from the given log object.
fn decode_log_object(log: &Log, validate: bool) -> Result<Self> {
Self::decode_log(log.topics(), &log.data, validate)
}
}