ethl 0.1.14

Tools for capturing, processing, archiving, and replaying Ethereum events
Documentation
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
use std::collections::VecDeque;

use crate::storage::codec::SolArrayReader;
use alloy::{
    dyn_abi::{DecodedEvent, DynSolType, DynSolValue, Specifier, Word},
    json_abi::Event,
};
use alloy_primitives::{Address, B256, I256, U256};
use anyhow::Result;
use arrow::array::{
    ArrayRef, BinaryArray, BooleanArray, Int8Array, Int16Array, Int32Array, Int64Array,
    RecordBatch, StringArray, UInt8Array, UInt16Array, UInt32Array, UInt64Array,
};
use rayon::iter::{IntoParallelIterator, ParallelIterator};

#[derive(Debug, Clone)]
pub struct DecodedEventWithHeader {
    pub log_block: u64,
    pub log_index: u32,
    pub log_address: Address,
    pub event: DecodedEvent,
}

pub struct BatchEventDecoder {
    topic_readers: Vec<Box<dyn SolArrayReader + Send + Sync>>,
    data_readers: Vec<Box<dyn SolArrayReader + Send + Sync>>,
    selector: Option<B256>,
}

impl BatchEventDecoder {
    pub fn new(event: &Event) -> Self {
        let topic_readers: Vec<Box<dyn SolArrayReader + Send + Sync>> = event
            .inputs
            .iter()
            .filter_map(|param| {
                if param.indexed {
                    Some(dyn_sol_type_to_reader(&param.ty.resolve().unwrap()))
                } else {
                    None
                }
            })
            .collect();

        let data_readers: Vec<Box<dyn SolArrayReader + Send + Sync>> = event
            .inputs
            .iter()
            .filter_map(|param| {
                if param.indexed {
                    None
                } else {
                    Some(dyn_sol_type_to_reader(&param.ty.resolve().unwrap()))
                }
            })
            .collect();

        BatchEventDecoder {
            topic_readers,
            data_readers,
            selector: Some(event.selector()),
        }
    }

    pub fn decode_row(&self, batch: &RecordBatch, row: usize) -> Result<DecodedEventWithHeader> {
        let log_block = batch
            .column(0)
            .as_any()
            .downcast_ref::<UInt64Array>()
            .map(|col| col.value(row))
            .ok_or_else(|| anyhow::anyhow!("Failed to decode log_block"))?;

        let log_index = batch
            .column(1)
            .as_any()
            .downcast_ref::<UInt32Array>()
            .map(|col| col.value(row))
            .ok_or_else(|| anyhow::anyhow!("Failed to decode log_index"))?;

        let log_address = batch
            .column(2)
            .as_any()
            .downcast_ref::<StringArray>()
            .map(|col| col.value(row).parse::<Address>().unwrap())
            .ok_or_else(|| anyhow::anyhow!("Failed to decode log_address"))?;

        // Decode indexed parameters
        let indexed: Vec<DynSolValue> = self
            .topic_readers
            .iter()
            .enumerate()
            .map(|(i, reader)| reader.get(batch.column(i + 3), row))
            .collect();

        // Decode non-indexed parameters
        let body: Vec<DynSolValue> = self
            .data_readers
            .iter()
            .enumerate()
            .map(|(i, reader)| reader.get(batch.column(i + 3 + self.topic_readers.len()), row))
            .collect();

        Ok(DecodedEventWithHeader {
            log_block,
            log_index,
            log_address,
            event: DecodedEvent {
                selector: self.selector,
                indexed,
                body,
            },
        })
    }

    pub fn decode_batch_iter(
        &self,
        batch: &RecordBatch,
    ) -> impl Iterator<Item = Result<DecodedEventWithHeader>> {
        (0..batch.num_rows()).map(|row| self.decode_row(batch, row))
    }

    pub fn par_decode_batch_deque(
        &self,
        batch: &RecordBatch,
    ) -> Result<VecDeque<DecodedEventWithHeader>> {
        Ok((0..batch.num_rows())
            .into_par_iter()
            .map(|row| self.decode_row(batch, row).expect("Failed to decode row"))
            .collect::<VecDeque<_>>())
    }
}

fn dyn_sol_type_to_reader(ty: &DynSolType) -> Box<dyn SolArrayReader + Send + Sync> {
    match ty {
        DynSolType::Bool => Box::<SolArrayReaderBool>::default(),
        DynSolType::Int(n) => {
            if *n > 64 {
                Box::new(SolArrayReaderIntStr { n: *n })
            } else if *n > 32 {
                Box::new(SolArrayReaderInt64 { n: *n })
            } else if *n > 16 {
                Box::new(SolArrayReaderInt32 { n: *n })
            } else if *n > 8 {
                Box::new(SolArrayReaderInt16 { n: *n })
            } else {
                Box::new(SolArrayReaderInt8 { n: *n })
            }
        }
        DynSolType::Uint(n) => {
            if *n > 64 {
                Box::new(SolArrayReaderUintStr { n: *n })
            } else if *n > 32 {
                Box::new(SolArrayReaderUint64 { n: *n })
            } else if *n > 16 {
                Box::new(SolArrayReaderUint32 { n: *n })
            } else if *n > 8 {
                Box::new(SolArrayReaderUint16 { n: *n })
            } else {
                Box::new(SolArrayReaderUint8 { n: *n })
            }
        }
        DynSolType::Address => Box::<SolArrayReaderAddress>::default(),
        DynSolType::Bytes => Box::<SolArrayReaderBytes>::default(),
        DynSolType::FixedBytes(n) => Box::new(SolArrayReaderFixedBytes { n: *n }),
        _ => unimplemented!(
            "Support for transcoding {ty} solidity type to arrow is not yet implemented",
        ),
    }
}

pub struct SolArrayReaderIntStr {
    n: usize,
}
impl SolArrayReader for SolArrayReaderIntStr {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Int(
            I256::try_from(
                array
                    .as_any()
                    .downcast_ref::<StringArray>()
                    .unwrap()
                    .value(index)
                    .to_string(),
            )
            .unwrap(),
            self.n,
        )
    }
}

pub struct SolArrayReaderInt64 {
    n: usize,
}
impl SolArrayReader for SolArrayReaderInt64 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Int(
            I256::try_from(
                array
                    .as_any()
                    .downcast_ref::<Int64Array>()
                    .unwrap()
                    .value(index),
            )
            .unwrap(),
            self.n,
        )
    }
}

pub struct SolArrayReaderInt32 {
    n: usize,
}
impl SolArrayReader for SolArrayReaderInt32 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Int(
            I256::try_from(
                array
                    .as_any()
                    .downcast_ref::<Int32Array>()
                    .unwrap()
                    .value(index),
            )
            .unwrap(),
            self.n,
        )
    }
}

pub struct SolArrayReaderInt16 {
    n: usize,
}
impl SolArrayReader for SolArrayReaderInt16 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Int(
            I256::try_from(
                array
                    .as_any()
                    .downcast_ref::<Int16Array>()
                    .unwrap()
                    .value(index),
            )
            .unwrap(),
            self.n,
        )
    }
}

pub struct SolArrayReaderInt8 {
    n: usize,
}
impl SolArrayReader for SolArrayReaderInt8 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Int(
            I256::try_from(
                array
                    .as_any()
                    .downcast_ref::<Int8Array>()
                    .unwrap()
                    .value(index),
            )
            .unwrap(),
            self.n,
        )
    }
}

pub struct SolArrayReaderUintStr {
    n: usize,
}

impl SolArrayReader for SolArrayReaderUintStr {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        let input = array
            .as_any()
            .downcast_ref::<StringArray>()
            .unwrap()
            .value(index);
        DynSolValue::Uint(U256::from_str_radix(input, 10).unwrap(), self.n)
    }
}

pub struct SolArrayReaderUint64 {
    n: usize,
}

impl SolArrayReader for SolArrayReaderUint64 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Uint(
            U256::from(
                array
                    .as_any()
                    .downcast_ref::<UInt64Array>()
                    .unwrap()
                    .value(index),
            ),
            self.n,
        )
    }
}

pub struct SolArrayReaderUint32 {
    n: usize,
}

impl SolArrayReader for SolArrayReaderUint32 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Uint(
            U256::from(
                array
                    .as_any()
                    .downcast_ref::<UInt32Array>()
                    .unwrap()
                    .value(index),
            ),
            self.n,
        )
    }
}

pub struct SolArrayReaderUint16 {
    n: usize,
}

impl SolArrayReader for SolArrayReaderUint16 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Uint(
            U256::from(
                array
                    .as_any()
                    .downcast_ref::<UInt16Array>()
                    .unwrap()
                    .value(index),
            ),
            self.n,
        )
    }
}

pub struct SolArrayReaderUint8 {
    n: usize,
}

impl SolArrayReader for SolArrayReaderUint8 {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Uint(
            U256::from(
                array
                    .as_any()
                    .downcast_ref::<UInt8Array>()
                    .unwrap()
                    .value(index),
            ),
            self.n,
        )
    }
}

#[derive(Default)]
pub struct SolArrayReaderAddress {}
impl SolArrayReader for SolArrayReaderAddress {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Address(
            array
                .as_any()
                .downcast_ref::<StringArray>()
                .unwrap()
                .value(index)
                .parse()
                .unwrap(),
        )
    }
}

#[derive(Default)]
pub struct SolArrayReaderBytes {}
impl SolArrayReader for SolArrayReaderBytes {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Bytes(
            array
                .as_any()
                .downcast_ref::<BinaryArray>()
                .unwrap()
                .value(index)
                .into(),
        )
    }
}

#[derive(Default)]
pub struct SolArrayReaderFixedBytes {
    n: usize,
}
impl SolArrayReader for SolArrayReaderFixedBytes {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        let bytes = array
            .as_any()
            .downcast_ref::<BinaryArray>()
            .unwrap()
            .value(index);
        if bytes.len() != self.n {
            panic!(
                "Expected fixed bytes of length {}, got {}",
                self.n,
                bytes.len()
            );
        }
        DynSolValue::FixedBytes(Word::from_slice(bytes), self.n)
    }
}

#[derive(Default)]
pub struct SolArrayReaderBool {}

impl SolArrayReader for SolArrayReaderBool {
    fn get(&self, array: &ArrayRef, index: usize) -> DynSolValue {
        DynSolValue::Bool(
            array
                .as_any()
                .downcast_ref::<BooleanArray>()
                .unwrap()
                .value(index),
        )
    }
}