forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(trie): noop hashed cursors (paradigmxyz#11627)
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use super::{HashedCursor, HashedCursorFactory, HashedStorageCursor}; | ||
use alloy_primitives::{B256, U256}; | ||
use reth_primitives::Account; | ||
use reth_storage_errors::db::DatabaseError; | ||
|
||
/// Noop hashed cursor factory. | ||
#[derive(Default, Debug)] | ||
#[non_exhaustive] | ||
pub struct NoopHashedCursorFactory; | ||
|
||
impl HashedCursorFactory for NoopHashedCursorFactory { | ||
type AccountCursor = NoopHashedAccountCursor; | ||
type StorageCursor = NoopHashedStorageCursor; | ||
|
||
fn hashed_account_cursor(&self) -> Result<Self::AccountCursor, DatabaseError> { | ||
Ok(NoopHashedAccountCursor::default()) | ||
} | ||
|
||
fn hashed_storage_cursor( | ||
&self, | ||
_hashed_address: B256, | ||
) -> Result<Self::StorageCursor, DatabaseError> { | ||
Ok(NoopHashedStorageCursor::default()) | ||
} | ||
} | ||
|
||
/// Noop account hashed cursor. | ||
#[derive(Default, Debug)] | ||
#[non_exhaustive] | ||
pub struct NoopHashedAccountCursor; | ||
|
||
impl HashedCursor for NoopHashedAccountCursor { | ||
type Value = Account; | ||
|
||
fn next(&mut self) -> Result<Option<(B256, Self::Value)>, DatabaseError> { | ||
Ok(None) | ||
} | ||
|
||
fn seek(&mut self, _key: B256) -> Result<Option<(B256, Self::Value)>, DatabaseError> { | ||
Ok(None) | ||
} | ||
} | ||
|
||
/// Noop account hashed cursor. | ||
#[derive(Default, Debug)] | ||
#[non_exhaustive] | ||
pub struct NoopHashedStorageCursor; | ||
|
||
impl HashedCursor for NoopHashedStorageCursor { | ||
type Value = U256; | ||
|
||
fn next(&mut self) -> Result<Option<(B256, Self::Value)>, DatabaseError> { | ||
Ok(None) | ||
} | ||
|
||
fn seek(&mut self, _key: B256) -> Result<Option<(B256, Self::Value)>, DatabaseError> { | ||
Ok(None) | ||
} | ||
} | ||
|
||
impl HashedStorageCursor for NoopHashedStorageCursor { | ||
fn is_storage_empty(&mut self) -> Result<bool, DatabaseError> { | ||
Ok(true) | ||
} | ||
} |