236 lines
6.6 KiB
Nim
236 lines
6.6 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
# http://opensource.org/licenses/MIT)
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
{.push raises: [].}
|
|
|
|
import
|
|
eth/common,
|
|
../../../../stateless/multi_keys,
|
|
../../core_db,
|
|
../base/base_desc,
|
|
../accounts_ledger as impl,
|
|
".."/[base, distinct_ledgers],
|
|
./accounts_ledger_desc as wrp
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Private functions
|
|
# ------------------------------------------------------------------------------
|
|
|
|
func savePoint(sp: LedgerSpRef): impl.LedgerSavePoint =
|
|
wrp.LedgerSavePoint(sp).sp
|
|
|
|
# ----------------
|
|
|
|
proc ledgerMethods(lc: impl.AccountsLedgerRef): LedgerFns =
|
|
LedgerFns(
|
|
accessListFn: proc(eAddr: EthAddress) =
|
|
lc.accessList(eAddr),
|
|
|
|
accessList2Fn: proc(eAddr: EthAddress, slot: UInt256) =
|
|
lc.accessList(eAddr, slot),
|
|
|
|
accountExistsFn: proc(eAddr: EthAddress): bool =
|
|
lc.accountExists(eAddr),
|
|
|
|
addBalanceFn: proc(eAddr: EthAddress, delta: UInt256) =
|
|
lc.addBalance(eAddr, delta),
|
|
|
|
addLogEntryFn: proc(log: Log) =
|
|
lc.addLogEntry(log),
|
|
|
|
beginSavepointFn: proc(): LedgerSpRef =
|
|
wrp.LedgerSavePoint(sp: lc.beginSavepoint()),
|
|
|
|
clearStorageFn: proc(eAddr: EthAddress) =
|
|
lc.clearStorage(eAddr),
|
|
|
|
clearTransientStorageFn: proc() =
|
|
lc.clearTransientStorage(),
|
|
|
|
collectWitnessDataFn: proc() =
|
|
lc.collectWitnessData(),
|
|
|
|
commitFn: proc(sp: LedgerSpRef) =
|
|
lc.commit(sp.savePoint),
|
|
|
|
deleteAccountFn: proc(eAddr: EthAddress) =
|
|
lc.deleteAccount(eAddr),
|
|
|
|
disposeFn: proc(sp: LedgerSpRef) =
|
|
lc.dispose(sp.savePoint),
|
|
|
|
getAndClearLogEntriesFn: proc(): seq[Log] =
|
|
lc.getAndClearLogEntries(),
|
|
|
|
getBalanceFn: proc(eAddr: EthAddress): UInt256 =
|
|
lc.getBalance(eAddr),
|
|
|
|
getCodeFn: proc(eAddr: EthAddress): Blob =
|
|
lc.getCode(eAddr),
|
|
|
|
getCodeHashFn: proc(eAddr: EthAddress): Hash256 =
|
|
lc.getCodeHash(eAddr),
|
|
|
|
getCodeSizeFn: proc(eAddr: EthAddress): int =
|
|
lc.getCodeSize(eAddr),
|
|
|
|
getCommittedStorageFn: proc(eAddr: EthAddress, slot: UInt256): UInt256 =
|
|
lc.getCommittedStorage(eAddr, slot),
|
|
|
|
getNonceFn: proc(eAddr: EthAddress): AccountNonce =
|
|
lc.getNonce(eAddr),
|
|
|
|
getStorageFn: proc(eAddr: EthAddress, slot: UInt256): UInt256 =
|
|
lc.getStorage(eAddr, slot),
|
|
|
|
getStorageRootFn: proc(eAddr: EthAddress): Hash256 =
|
|
lc.getStorageRoot(eAddr),
|
|
|
|
getTransientStorageFn: proc(eAddr: EthAddress, slot: UInt256): UInt256 =
|
|
lc.getTransientStorage(eAddr, slot),
|
|
|
|
hasCodeOrNonceFn: proc(eAddr: EthAddress): bool =
|
|
lc.hasCodeOrNonce(eAddr),
|
|
|
|
inAccessListFn: proc(eAddr: EthAddress): bool =
|
|
lc.inAccessList(eAddr),
|
|
|
|
inAccessList2Fn: proc(eAddr: EthAddress, slot: UInt256): bool =
|
|
lc.inAccessList(eAddr, slot),
|
|
|
|
incNonceFn: proc(eAddr: EthAddress) =
|
|
lc.incNonce(eAddr),
|
|
|
|
isDeadAccountFn: proc(eAddr: EthAddress): bool =
|
|
lc.isDeadAccount(eAddr),
|
|
|
|
isEmptyAccountFn: proc(eAddr: EthAddress): bool =
|
|
lc.isEmptyAccount(eAddr),
|
|
|
|
isTopLevelCleanFn: proc(): bool =
|
|
lc.isTopLevelClean(),
|
|
|
|
logEntriesFn: proc(): seq[Log] =
|
|
lc.logEntries(),
|
|
|
|
makeMultiKeysFn: proc(): MultiKeysRef =
|
|
lc.makeMultiKeys(),
|
|
|
|
persistFn: proc(clearEmptyAccount: bool, clearCache: bool) =
|
|
lc.persist(clearEmptyAccount, clearCache),
|
|
|
|
ripemdSpecialFn: proc() =
|
|
lc.ripemdSpecial(),
|
|
|
|
rollbackFn: proc(sp: LedgerSpRef) =
|
|
lc.rollback(sp.savePoint),
|
|
|
|
rootHashFn: proc(): Hash256 =
|
|
lc.rootHash(),
|
|
|
|
safeDisposeFn: proc(sp: LedgerSpRef) =
|
|
lc.safeDispose(sp.savePoint),
|
|
|
|
selfDestructFn: proc(eAddr: EthAddress) =
|
|
lc.selfDestruct(eAddr),
|
|
|
|
selfDestruct6780Fn: proc(eAddr: EthAddress) =
|
|
lc.selfDestruct6780(eAddr),
|
|
|
|
selfDestructLenFn: proc(): int =
|
|
lc.selfDestructLen(),
|
|
|
|
setBalanceFn: proc(eAddr: EthAddress, balance: UInt256) =
|
|
lc.setBalance(eAddr, balance),
|
|
|
|
setCodeFn: proc(eAddr: EthAddress, code: Blob) =
|
|
lc.setCode(eAddr, code),
|
|
|
|
setNonceFn: proc(eAddr: EthAddress, nonce: AccountNonce) =
|
|
lc.setNonce(eAddr, nonce),
|
|
|
|
setStorageFn: proc(eAddr: EthAddress, slot, val: UInt256) =
|
|
lc.setStorage(eAddr, slot, val),
|
|
|
|
setTransientStorageFn: proc(eAddr: EthAddress, slot, val: UInt256) =
|
|
lc.setTransientStorage(eAddr, slot, val),
|
|
|
|
subBalanceFn: proc(eAddr: EthAddress, delta: UInt256) =
|
|
lc.subBalance(eAddr, delta),
|
|
|
|
getAccessListFn: proc(): common.AccessList =
|
|
lc.getAccessList())
|
|
|
|
proc ledgerExtras(lc: impl.AccountsLedgerRef): LedgerExtras =
|
|
LedgerExtras(
|
|
getMptFn: proc(): CoreDbMptRef =
|
|
lc.rawTrie.CoreDxAccRef.newMpt.CoreDbMptRef,
|
|
|
|
rawRootHashFn: proc(): Hash256 =
|
|
lc.rawTrie.rootHash())
|
|
|
|
|
|
proc newAccountsLedgerRef(
|
|
db: CoreDbRef;
|
|
root: Hash256;
|
|
pruneTrie: bool): LedgerRef =
|
|
let lc = impl.AccountsLedgerRef.init(db, root, pruneTrie)
|
|
wrp.AccountsLedgerRef(
|
|
ldgType: LedgerCache,
|
|
ac: lc,
|
|
extras: lc.ledgerExtras(),
|
|
methods: lc.ledgerMethods()).bless db
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public iterators
|
|
# ------------------------------------------------------------------------------
|
|
|
|
iterator accountsIt*(lc: wrp.AccountsLedgerRef): Account =
|
|
for w in lc.ac.accounts():
|
|
yield w
|
|
|
|
iterator addressesIt*(lc: wrp.AccountsLedgerRef): EthAddress =
|
|
for w in lc.ac.addresses():
|
|
yield w
|
|
|
|
iterator cachedStorageIt*(
|
|
lc: wrp.AccountsLedgerRef;
|
|
eAddr: EthAddress;
|
|
): (UInt256,UInt256) =
|
|
for w in lc.ac.cachedStorage(eAddr):
|
|
yield w
|
|
|
|
iterator pairsIt*(lc: wrp.AccountsLedgerRef): (EthAddress,Account) =
|
|
for w in lc.ac.pairs():
|
|
yield w
|
|
|
|
iterator storageIt*(
|
|
lc: wrp.AccountsLedgerRef;
|
|
eAddr: EthAddress;
|
|
): (UInt256,UInt256)
|
|
{.gcsafe, raises: [CoreDbApiError].} =
|
|
for w in lc.ac.storage(eAddr):
|
|
yield w
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public constructor
|
|
# ------------------------------------------------------------------------------
|
|
|
|
proc init*(
|
|
T: type wrp.AccountsLedgerRef;
|
|
db: CoreDbRef;
|
|
root: Hash256;
|
|
pruneTrie: bool): LedgerRef =
|
|
db.newAccountsLedgerRef(root, pruneTrie)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# End
|
|
# ------------------------------------------------------------------------------
|