Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 180 additions & 0 deletions src/block_scanner.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
use std::{marker::PhantomData, time::Duration};

use tokio::sync::mpsc::{self, Receiver, Sender};
use tokio_stream::wrappers::ReceiverStream;

use alloy::{
eips::BlockNumberOrTag,
network::Network,
providers::{Provider, RootProvider},
rpc::{
client::{ClientBuilder, RpcClient},
types::Header,
},
transports::http::reqwest,
};

// copied form https://github.com/taikoxyz/taiko-mono/blob/f4b3a0e830e42e2fee54829326389709dd422098/packages/taiko-client/pkg/chain_iterator/block_batch_iterator.go#L19
const DEFAULT_BLOCKS_READ_PER_EPOCH: u64 = 1000;
const DEFAULT_RETRY_INTERVAL: Duration = Duration::from_secs(12);
const DEFAULT_BLOCK_CONFIRMATIONS: u64 = 0;
const BACK_OFF_MAX_RETRIES: u64 = 5;

// TODO: determine check exact default value
const DEFAULT_REORG_REWIND_DEPTH: u64 = 0;

// State sync aware retry settings
const STATE_SYNC_RETRY_INTERVAL: Duration = Duration::from_secs(30);
const STATE_SYNC_MAX_RETRIES: u64 = 12;

#[derive(Debug)]
pub enum BlockScannerError {
ErrEOF,
ErrContinue,
TerminalError(u64),
}

impl std::fmt::Display for BlockScannerError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
BlockScannerError::ErrEOF => write!(f, "end of block batch iterator"),
BlockScannerError::ErrContinue => write!(f, "continue"),
BlockScannerError::TerminalError(height) => {
write!(f, "terminal error at block height {}", height)
}
}
}
}

type EndIterFunc = fn();
type UpdateCurrentFunc = fn(Header);
type OnBlocksFunc<N> =
fn(<N as Network>::BlockResponse, UpdateCurrentFunc, EndIterFunc) -> anyhow::Result<()>;

pub struct BlockScannerBuilder<N: Network> {
blocks_read_per_epoch: u64,
start_height: BlockNumberOrTag,
end_height: BlockNumberOrTag,
on_blocks: OnBlocksFunc<N>,
reorg_rewind_depth: u64,
retry_interval: Duration,
block_confirmations: u64,
}

impl<N: Network> BlockScannerBuilder<N> {
pub fn new() -> Self {
Self {
blocks_read_per_epoch: DEFAULT_BLOCKS_READ_PER_EPOCH,
start_height: BlockNumberOrTag::Earliest,
end_height: BlockNumberOrTag::Latest,
on_blocks: |_, _, _| Ok(()),
reorg_rewind_depth: DEFAULT_REORG_REWIND_DEPTH,
retry_interval: DEFAULT_RETRY_INTERVAL,
block_confirmations: DEFAULT_BLOCK_CONFIRMATIONS,
}
}

pub fn with_blocks_read_per_epoch(&mut self, blocks_read_per_epoch: u64) -> &mut Self {
self.blocks_read_per_epoch = blocks_read_per_epoch;
self
}

pub fn with_start_height(&mut self, start_height: BlockNumberOrTag) -> &mut Self {
self.start_height = start_height;
self
}

pub fn with_end_height(&mut self, end_height: BlockNumberOrTag) -> &mut Self {
self.end_height = end_height;
self
}

pub fn with_on_blocks(&mut self, on_blocks: OnBlocksFunc<N>) -> &mut Self {
self.on_blocks = on_blocks;
self
}

pub fn with_reorg_rewind_depth(&mut self, reorg_rewind_depth: u64) -> &mut Self {
self.reorg_rewind_depth = reorg_rewind_depth;
self
}

pub fn with_retry_interval(&mut self, retry_interval: Duration) -> &mut Self {
self.retry_interval = retry_interval;
self
}

pub fn with_block_confirmations(&mut self, block_confirmations: u64) -> &mut Self {
self.block_confirmations = block_confirmations;
self
}

pub fn connect_http(self, rpc_url: reqwest::Url) -> BlockScanner<RootProvider<N>, N> {
let client = ClientBuilder::default().http(rpc_url);
self.connect_client(client)
}

pub fn connect_client(self, client: RpcClient) -> BlockScanner<RootProvider<N>, N> {
let provider = RootProvider::new(client);
self.connect_provider(provider)
}

pub fn connect_provider<P>(self, provider: P) -> BlockScanner<P, N>
where
P: Provider<N>,
{
let (sender, receiver) = mpsc::channel(self.blocks_read_per_epoch.try_into().unwrap());

BlockScanner {
provider,
sender,
receiver,
current: Header::default(),
is_end: false,
blocks_read_per_epoch: self.blocks_read_per_epoch,
start_height: self.start_height,
end_height: self.end_height,
on_blocks: self.on_blocks,
reorg_rewind_depth: self.reorg_rewind_depth,
retry_interval: self.retry_interval,
block_confirmations: self.block_confirmations,
network: PhantomData,
}
}
}

// BlockScanner iterates the blocks in batches between the given start and end heights,
// with the awareness of reorganization.
pub struct BlockScanner<P: Provider<N>, N: Network> {
provider: P,
sender: Sender<Result<N::BlockResponse, BlockScannerError>>,
receiver: Receiver<Result<N::BlockResponse, BlockScannerError>>,
blocks_read_per_epoch: u64,
start_height: BlockNumberOrTag,
end_height: BlockNumberOrTag,
current: Header,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure if this makes a difference but to save memory we could just store the block number rather than the entire header?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need the hash too for the reorg detection

on_blocks: OnBlocksFunc<N>,
is_end: bool,
reorg_rewind_depth: u64,
retry_interval: Duration,
block_confirmations: u64,
network: PhantomData<fn() -> N>,
}

impl<P, N> BlockScanner<P, N>
where
P: Provider<N>,
N: Network,
{
pub async fn start(self) -> ReceiverStream<Result<N::BlockResponse, BlockScannerError>> {
let receiver_stream = ReceiverStream::new(self.receiver);

tokio::spawn(async move {
if self.sender.send(Err(BlockScannerError::ErrEOF {})).await.is_err() {
return;
}
});

return receiver_stream
}
}
11 changes: 7 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
pub mod block_scanner;
pub mod builder;
pub mod callback;
pub mod scanner;
pub mod types;

pub use crate::builder::ScannerBuilder;
pub use crate::callback::EventCallback;
pub use crate::scanner::Scanner;
pub use crate::types::{CallbackConfig, EventFilter};
pub use crate::{
builder::ScannerBuilder,
callback::EventCallback,
scanner::Scanner,
types::{CallbackConfig, EventFilter},
};