use super::{DatabaseCommit, DatabaseRef, EmptyDB};
use crate::primitives::{
hash_map::Entry, Account, AccountInfo, Address, Bytecode, HashMap, Log, B256, KECCAK_EMPTY,
U256,
};
use crate::Database;
use core::convert::Infallible;
use std::vec::Vec;
pub type InMemoryDB = CacheDB<EmptyDB>;
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CacheDB<ExtDB> {
pub accounts: HashMap<Address, DbAccount>,
pub contracts: HashMap<B256, Bytecode>,
pub logs: Vec<Log>,
pub block_hashes: HashMap<U256, B256>,
pub db: ExtDB,
}
impl<ExtDB: Default> Default for CacheDB<ExtDB> {
fn default() -> Self {
Self::new(ExtDB::default())
}
}
impl<ExtDB> CacheDB<ExtDB> {
pub fn new(db: ExtDB) -> Self {
let mut contracts = HashMap::default();
contracts.insert(KECCAK_EMPTY, Bytecode::default());
contracts.insert(B256::ZERO, Bytecode::default());
Self {
accounts: HashMap::default(),
contracts,
logs: Vec::default(),
block_hashes: HashMap::default(),
db,
}
}
pub fn insert_contract(&mut self, account: &mut AccountInfo) {
if let Some(code) = &account.code {
if !code.is_empty() {
if account.code_hash == KECCAK_EMPTY {
account.code_hash = code.hash_slow();
}
self.contracts
.entry(account.code_hash)
.or_insert_with(|| code.clone());
}
}
if account.code_hash.is_zero() {
account.code_hash = KECCAK_EMPTY;
}
}
pub fn insert_account_info(&mut self, address: Address, mut info: AccountInfo) {
self.insert_contract(&mut info);
self.accounts.entry(address).or_default().info = info;
}
}
impl<ExtDB: DatabaseRef> CacheDB<ExtDB> {
pub fn load_account(&mut self, address: Address) -> Result<&mut DbAccount, ExtDB::Error> {
let db = &self.db;
match self.accounts.entry(address) {
Entry::Occupied(entry) => Ok(entry.into_mut()),
Entry::Vacant(entry) => Ok(entry.insert(
db.basic_ref(address)?
.map(|info| DbAccount {
info,
..Default::default()
})
.unwrap_or_else(DbAccount::new_not_existing),
)),
}
}
pub fn insert_account_storage(
&mut self,
address: Address,
slot: U256,
value: U256,
) -> Result<(), ExtDB::Error> {
let account = self.load_account(address)?;
account.storage.insert(slot, value);
Ok(())
}
pub fn replace_account_storage(
&mut self,
address: Address,
storage: HashMap<U256, U256>,
) -> Result<(), ExtDB::Error> {
let account = self.load_account(address)?;
account.account_state = AccountState::StorageCleared;
account.storage = storage.into_iter().collect();
Ok(())
}
}
impl<ExtDB> DatabaseCommit for CacheDB<ExtDB> {
fn commit(&mut self, changes: HashMap<Address, Account>) {
for (address, mut account) in changes {
if !account.is_touched() {
continue;
}
if account.is_selfdestructed() {
let db_account = self.accounts.entry(address).or_default();
db_account.storage.clear();
db_account.account_state = AccountState::NotExisting;
db_account.info = AccountInfo::default();
continue;
}
let is_newly_created = account.is_created();
self.insert_contract(&mut account.info);
let db_account = self.accounts.entry(address).or_default();
db_account.info = account.info;
db_account.account_state = if is_newly_created {
db_account.storage.clear();
AccountState::StorageCleared
} else if db_account.account_state.is_storage_cleared() {
AccountState::StorageCleared
} else {
AccountState::Touched
};
db_account.storage.extend(
account
.storage
.into_iter()
.map(|(key, value)| (key, value.present_value())),
);
}
}
}
impl<ExtDB: DatabaseRef> Database for CacheDB<ExtDB> {
type Error = ExtDB::Error;
fn basic(&mut self, address: Address) -> Result<Option<AccountInfo>, Self::Error> {
let basic = match self.accounts.entry(address) {
Entry::Occupied(entry) => entry.into_mut(),
Entry::Vacant(entry) => entry.insert(
self.db
.basic_ref(address)?
.map(|info| DbAccount {
info,
..Default::default()
})
.unwrap_or_else(DbAccount::new_not_existing),
),
};
Ok(basic.info())
}
fn code_by_hash(&mut self, code_hash: B256) -> Result<Bytecode, Self::Error> {
match self.contracts.entry(code_hash) {
Entry::Occupied(entry) => Ok(entry.get().clone()),
Entry::Vacant(entry) => {
Ok(entry.insert(self.db.code_by_hash_ref(code_hash)?).clone())
}
}
}
fn storage(&mut self, address: Address, index: U256) -> Result<U256, Self::Error> {
match self.accounts.entry(address) {
Entry::Occupied(mut acc_entry) => {
let acc_entry = acc_entry.get_mut();
match acc_entry.storage.entry(index) {
Entry::Occupied(entry) => Ok(*entry.get()),
Entry::Vacant(entry) => {
if matches!(
acc_entry.account_state,
AccountState::StorageCleared | AccountState::NotExisting
) {
Ok(U256::ZERO)
} else {
let slot = self.db.storage_ref(address, index)?;
entry.insert(slot);
Ok(slot)
}
}
}
}
Entry::Vacant(acc_entry) => {
let info = self.db.basic_ref(address)?;
let (account, value) = if info.is_some() {
let value = self.db.storage_ref(address, index)?;
let mut account: DbAccount = info.into();
account.storage.insert(index, value);
(account, value)
} else {
(info.into(), U256::ZERO)
};
acc_entry.insert(account);
Ok(value)
}
}
}
fn block_hash(&mut self, number: u64) -> Result<B256, Self::Error> {
match self.block_hashes.entry(U256::from(number)) {
Entry::Occupied(entry) => Ok(*entry.get()),
Entry::Vacant(entry) => {
let hash = self.db.block_hash_ref(number)?;
entry.insert(hash);
Ok(hash)
}
}
}
}
impl<ExtDB: DatabaseRef> DatabaseRef for CacheDB<ExtDB> {
type Error = ExtDB::Error;
fn basic_ref(&self, address: Address) -> Result<Option<AccountInfo>, Self::Error> {
match self.accounts.get(&address) {
Some(acc) => Ok(acc.info()),
None => self.db.basic_ref(address),
}
}
fn code_by_hash_ref(&self, code_hash: B256) -> Result<Bytecode, Self::Error> {
match self.contracts.get(&code_hash) {
Some(entry) => Ok(entry.clone()),
None => self.db.code_by_hash_ref(code_hash),
}
}
fn storage_ref(&self, address: Address, index: U256) -> Result<U256, Self::Error> {
match self.accounts.get(&address) {
Some(acc_entry) => match acc_entry.storage.get(&index) {
Some(entry) => Ok(*entry),
None => {
if matches!(
acc_entry.account_state,
AccountState::StorageCleared | AccountState::NotExisting
) {
Ok(U256::ZERO)
} else {
self.db.storage_ref(address, index)
}
}
},
None => self.db.storage_ref(address, index),
}
}
fn block_hash_ref(&self, number: u64) -> Result<B256, Self::Error> {
match self.block_hashes.get(&U256::from(number)) {
Some(entry) => Ok(*entry),
None => self.db.block_hash_ref(number),
}
}
}
#[derive(Debug, Clone, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct DbAccount {
pub info: AccountInfo,
pub account_state: AccountState,
pub storage: HashMap<U256, U256>,
}
impl DbAccount {
pub fn new_not_existing() -> Self {
Self {
account_state: AccountState::NotExisting,
..Default::default()
}
}
pub fn info(&self) -> Option<AccountInfo> {
if matches!(self.account_state, AccountState::NotExisting) {
None
} else {
Some(self.info.clone())
}
}
}
impl From<Option<AccountInfo>> for DbAccount {
fn from(from: Option<AccountInfo>) -> Self {
from.map(Self::from).unwrap_or_else(Self::new_not_existing)
}
}
impl From<AccountInfo> for DbAccount {
fn from(info: AccountInfo) -> Self {
Self {
info,
account_state: AccountState::None,
..Default::default()
}
}
}
#[derive(Debug, Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AccountState {
NotExisting,
Touched,
StorageCleared,
#[default]
None,
}
impl AccountState {
pub fn is_storage_cleared(&self) -> bool {
matches!(self, AccountState::StorageCleared)
}
}
#[derive(Debug, Default, Clone)]
pub struct BenchmarkDB {
pub bytecode: Bytecode,
pub hash: B256,
pub target: Address,
pub caller: Address,
}
impl BenchmarkDB {
pub fn new_bytecode(bytecode: Bytecode) -> Self {
let hash = bytecode.hash_slow();
Self {
bytecode,
hash,
target: Address::ZERO,
caller: Address::with_last_byte(1),
}
}
pub fn with_caller(self, caller: Address) -> Self {
Self { caller, ..self }
}
pub fn with_target(self, target: Address) -> Self {
Self { target, ..self }
}
}
impl Database for BenchmarkDB {
type Error = Infallible;
fn basic(&mut self, address: Address) -> Result<Option<AccountInfo>, Self::Error> {
if address == self.target {
return Ok(Some(AccountInfo {
nonce: 1,
balance: U256::from(10000000),
code: Some(self.bytecode.clone()),
code_hash: self.hash,
}));
}
if address == self.caller {
return Ok(Some(AccountInfo {
nonce: 0,
balance: U256::from(10000000),
code: None,
code_hash: KECCAK_EMPTY,
}));
}
Ok(None)
}
fn code_by_hash(&mut self, _code_hash: B256) -> Result<Bytecode, Self::Error> {
Ok(Bytecode::default())
}
fn storage(&mut self, _address: Address, _index: U256) -> Result<U256, Self::Error> {
Ok(U256::default())
}
fn block_hash(&mut self, _number: u64) -> Result<B256, Self::Error> {
Ok(B256::default())
}
}
#[cfg(test)]
mod tests {
use super::{CacheDB, EmptyDB};
use crate::primitives::{db::Database, AccountInfo, Address, HashMap, U256};
#[test]
fn test_insert_account_storage() {
let account = Address::with_last_byte(42);
let nonce = 42;
let mut init_state = CacheDB::new(EmptyDB::default());
init_state.insert_account_info(
account,
AccountInfo {
nonce,
..Default::default()
},
);
let (key, value) = (U256::from(123), U256::from(456));
let mut new_state = CacheDB::new(init_state);
new_state
.insert_account_storage(account, key, value)
.unwrap();
assert_eq!(new_state.basic(account).unwrap().unwrap().nonce, nonce);
assert_eq!(new_state.storage(account, key), Ok(value));
}
#[test]
fn test_replace_account_storage() {
let account = Address::with_last_byte(42);
let nonce = 42;
let mut init_state = CacheDB::new(EmptyDB::default());
init_state.insert_account_info(
account,
AccountInfo {
nonce,
..Default::default()
},
);
let (key0, value0) = (U256::from(123), U256::from(456));
let (key1, value1) = (U256::from(789), U256::from(999));
init_state
.insert_account_storage(account, key0, value0)
.unwrap();
let mut new_state = CacheDB::new(init_state);
new_state
.replace_account_storage(account, HashMap::from_iter([(key1, value1)]))
.unwrap();
assert_eq!(new_state.basic(account).unwrap().unwrap().nonce, nonce);
assert_eq!(new_state.storage(account, key0), Ok(U256::ZERO));
assert_eq!(new_state.storage(account, key1), Ok(value1));
}
#[cfg(feature = "serde-json")]
#[test]
fn test_serialize_deserialize_cachedb() {
let account = Address::with_last_byte(69);
let nonce = 420;
let mut init_state = CacheDB::new(EmptyDB::default());
init_state.insert_account_info(
account,
AccountInfo {
nonce,
..Default::default()
},
);
let serialized = serde_json::to_string(&init_state).unwrap();
let deserialized: CacheDB<EmptyDB> = serde_json::from_str(&serialized).unwrap();
assert!(deserialized.accounts.contains_key(&account));
assert_eq!(
deserialized.accounts.get(&account).unwrap().info.nonce,
nonce
);
}
}