foundry_evm_core/backend/
cow.rsuse super::BackendError;
use crate::{
backend::{
diagnostic::RevertDiagnostic, Backend, DatabaseExt, LocalForkId, RevertStateSnapshotAction,
},
fork::{CreateFork, ForkId},
InspectorExt,
};
use alloy_genesis::GenesisAccount;
use alloy_primitives::{Address, B256, U256};
use alloy_rpc_types::TransactionRequest;
use eyre::WrapErr;
use foundry_fork_db::DatabaseError;
use revm::{
db::DatabaseRef,
primitives::{
Account, AccountInfo, Bytecode, Env, EnvWithHandlerCfg, HashMap as Map, ResultAndState,
SpecId,
},
Database, DatabaseCommit, JournaledState,
};
use std::{borrow::Cow, collections::BTreeMap};
#[derive(Clone, Debug)]
pub struct CowBackend<'a> {
pub backend: Cow<'a, Backend>,
is_initialized: bool,
spec_id: SpecId,
}
impl<'a> CowBackend<'a> {
pub fn new_borrowed(backend: &'a Backend) -> Self {
Self { backend: Cow::Borrowed(backend), is_initialized: false, spec_id: SpecId::LATEST }
}
#[instrument(name = "inspect", level = "debug", skip_all)]
pub fn inspect<I: InspectorExt>(
&mut self,
env: &mut EnvWithHandlerCfg,
inspector: &mut I,
) -> eyre::Result<ResultAndState> {
self.is_initialized = false;
self.spec_id = env.handler_cfg.spec_id;
let mut evm = crate::utils::new_evm_with_inspector(self, env.clone(), inspector);
let res = evm.transact().wrap_err("backend: failed while inspecting")?;
env.env = evm.context.evm.inner.env;
Ok(res)
}
pub fn has_state_snapshot_failure(&self) -> bool {
self.backend.has_state_snapshot_failure()
}
fn backend_mut(&mut self, env: &Env) -> &mut Backend {
if !self.is_initialized {
let backend = self.backend.to_mut();
let env = EnvWithHandlerCfg::new_with_spec_id(Box::new(env.clone()), self.spec_id);
backend.initialize(&env);
self.is_initialized = true;
return backend
}
self.backend.to_mut()
}
fn initialized_backend_mut(&mut self) -> Option<&mut Backend> {
if self.is_initialized {
return Some(self.backend.to_mut())
}
None
}
}
impl DatabaseExt for CowBackend<'_> {
fn snapshot_state(&mut self, journaled_state: &JournaledState, env: &Env) -> U256 {
self.backend_mut(env).snapshot_state(journaled_state, env)
}
fn revert_state(
&mut self,
id: U256,
journaled_state: &JournaledState,
current: &mut Env,
action: RevertStateSnapshotAction,
) -> Option<JournaledState> {
self.backend_mut(current).revert_state(id, journaled_state, current, action)
}
fn delete_state_snapshot(&mut self, id: U256) -> bool {
if let Some(backend) = self.initialized_backend_mut() {
return backend.delete_state_snapshot(id)
}
false
}
fn delete_state_snapshots(&mut self) {
if let Some(backend) = self.initialized_backend_mut() {
backend.delete_state_snapshots()
}
}
fn create_fork(&mut self, fork: CreateFork) -> eyre::Result<LocalForkId> {
self.backend.to_mut().create_fork(fork)
}
fn create_fork_at_transaction(
&mut self,
fork: CreateFork,
transaction: B256,
) -> eyre::Result<LocalForkId> {
self.backend.to_mut().create_fork_at_transaction(fork, transaction)
}
fn select_fork(
&mut self,
id: LocalForkId,
env: &mut Env,
journaled_state: &mut JournaledState,
) -> eyre::Result<()> {
self.backend_mut(env).select_fork(id, env, journaled_state)
}
fn roll_fork(
&mut self,
id: Option<LocalForkId>,
block_number: u64,
env: &mut Env,
journaled_state: &mut JournaledState,
) -> eyre::Result<()> {
self.backend_mut(env).roll_fork(id, block_number, env, journaled_state)
}
fn roll_fork_to_transaction(
&mut self,
id: Option<LocalForkId>,
transaction: B256,
env: &mut Env,
journaled_state: &mut JournaledState,
) -> eyre::Result<()> {
self.backend_mut(env).roll_fork_to_transaction(id, transaction, env, journaled_state)
}
fn transact(
&mut self,
id: Option<LocalForkId>,
transaction: B256,
env: Env,
journaled_state: &mut JournaledState,
inspector: &mut dyn InspectorExt,
) -> eyre::Result<()> {
self.backend_mut(&env).transact(id, transaction, env, journaled_state, inspector)
}
fn transact_from_tx(
&mut self,
transaction: &TransactionRequest,
env: Env,
journaled_state: &mut JournaledState,
inspector: &mut dyn InspectorExt,
) -> eyre::Result<()> {
self.backend_mut(&env).transact_from_tx(transaction, env, journaled_state, inspector)
}
fn active_fork_id(&self) -> Option<LocalForkId> {
self.backend.active_fork_id()
}
fn active_fork_url(&self) -> Option<String> {
self.backend.active_fork_url()
}
fn ensure_fork(&self, id: Option<LocalForkId>) -> eyre::Result<LocalForkId> {
self.backend.ensure_fork(id)
}
fn ensure_fork_id(&self, id: LocalForkId) -> eyre::Result<&ForkId> {
self.backend.ensure_fork_id(id)
}
fn diagnose_revert(
&self,
callee: Address,
journaled_state: &JournaledState,
) -> Option<RevertDiagnostic> {
self.backend.diagnose_revert(callee, journaled_state)
}
fn load_allocs(
&mut self,
allocs: &BTreeMap<Address, GenesisAccount>,
journaled_state: &mut JournaledState,
) -> Result<(), BackendError> {
self.backend_mut(&Env::default()).load_allocs(allocs, journaled_state)
}
fn clone_account(
&mut self,
source: &GenesisAccount,
target: &Address,
journaled_state: &mut JournaledState,
) -> Result<(), BackendError> {
self.backend_mut(&Env::default()).clone_account(source, target, journaled_state)
}
fn is_persistent(&self, acc: &Address) -> bool {
self.backend.is_persistent(acc)
}
fn remove_persistent_account(&mut self, account: &Address) -> bool {
self.backend.to_mut().remove_persistent_account(account)
}
fn add_persistent_account(&mut self, account: Address) -> bool {
self.backend.to_mut().add_persistent_account(account)
}
fn allow_cheatcode_access(&mut self, account: Address) -> bool {
self.backend.to_mut().allow_cheatcode_access(account)
}
fn revoke_cheatcode_access(&mut self, account: &Address) -> bool {
self.backend.to_mut().revoke_cheatcode_access(account)
}
fn has_cheatcode_access(&self, account: &Address) -> bool {
self.backend.has_cheatcode_access(account)
}
fn set_blockhash(&mut self, block_number: U256, block_hash: B256) {
self.backend.to_mut().set_blockhash(block_number, block_hash);
}
}
impl DatabaseRef for CowBackend<'_> {
type Error = DatabaseError;
fn basic_ref(&self, address: Address) -> Result<Option<AccountInfo>, Self::Error> {
DatabaseRef::basic_ref(self.backend.as_ref(), address)
}
fn code_by_hash_ref(&self, code_hash: B256) -> Result<Bytecode, Self::Error> {
DatabaseRef::code_by_hash_ref(self.backend.as_ref(), code_hash)
}
fn storage_ref(&self, address: Address, index: U256) -> Result<U256, Self::Error> {
DatabaseRef::storage_ref(self.backend.as_ref(), address, index)
}
fn block_hash_ref(&self, number: u64) -> Result<B256, Self::Error> {
DatabaseRef::block_hash_ref(self.backend.as_ref(), number)
}
}
impl Database for CowBackend<'_> {
type Error = DatabaseError;
fn basic(&mut self, address: Address) -> Result<Option<AccountInfo>, Self::Error> {
DatabaseRef::basic_ref(self, address)
}
fn code_by_hash(&mut self, code_hash: B256) -> Result<Bytecode, Self::Error> {
DatabaseRef::code_by_hash_ref(self, code_hash)
}
fn storage(&mut self, address: Address, index: U256) -> Result<U256, Self::Error> {
DatabaseRef::storage_ref(self, address, index)
}
fn block_hash(&mut self, number: u64) -> Result<B256, Self::Error> {
DatabaseRef::block_hash_ref(self, number)
}
}
impl DatabaseCommit for CowBackend<'_> {
fn commit(&mut self, changes: Map<Address, Account>) {
self.backend.to_mut().commit(changes)
}
}