2023-09-12 18:44:45 +00:00
|
|
|
# nimbus-eth1
|
|
|
|
# Copyright (c) 2021 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.
|
|
|
|
|
|
|
|
## Kvt DB -- Common functions
|
|
|
|
## ==========================
|
|
|
|
##
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
|
|
|
eth/common,
|
|
|
|
results,
|
|
|
|
./kvt_desc/desc_backend,
|
|
|
|
./kvt_desc
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc getBE*(
|
|
|
|
db: KvtDbRef; # Database
|
2023-09-15 15:23:53 +00:00
|
|
|
key: openArray[byte]; # Key of database record
|
2023-09-12 18:44:45 +00:00
|
|
|
): Result[Blob,KvtError] =
|
|
|
|
## For the argument `key` return the associated value from the backend
|
|
|
|
## database if available.
|
|
|
|
##
|
|
|
|
let be = db.backend
|
|
|
|
if not be.isNil:
|
|
|
|
return be.getKvpFn key
|
|
|
|
err(GetNotFound)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions, converters
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc put*(
|
|
|
|
db: KvtDbRef; # Database
|
2023-09-15 15:23:53 +00:00
|
|
|
key: openArray[byte]; # Key of database record to store
|
|
|
|
data: openArray[byte]; # Value of database record to store
|
2023-09-12 18:44:45 +00:00
|
|
|
): Result[void,KvtError] =
|
|
|
|
## For the argument `key` associated the argument `data` as value (which
|
|
|
|
## will be marked in the top layer cache.)
|
|
|
|
if key.len == 0:
|
|
|
|
return err(KeyInvalid)
|
|
|
|
if data.len == 0:
|
|
|
|
return err(DataInvalid)
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
db.top.tab[@key] = @data
|
2023-09-12 18:44:45 +00:00
|
|
|
ok()
|
|
|
|
|
|
|
|
|
|
|
|
proc del*(
|
|
|
|
db: KvtDbRef; # Database
|
2023-09-15 15:23:53 +00:00
|
|
|
key: openArray[byte]; # Key of database record to delete
|
2023-09-12 18:44:45 +00:00
|
|
|
): Result[void,KvtError] =
|
|
|
|
## For the argument `key` delete the associated value (which will be marked
|
|
|
|
## in the top layer cache.)
|
|
|
|
if key.len == 0:
|
|
|
|
return err(KeyInvalid)
|
|
|
|
|
|
|
|
let rc = db.getBE(key)
|
|
|
|
if rc.isOk:
|
2023-09-15 15:23:53 +00:00
|
|
|
db.top.tab[@key] = EmptyBlob
|
2023-09-12 18:44:45 +00:00
|
|
|
elif rc.error == GetNotFound:
|
2023-09-15 15:23:53 +00:00
|
|
|
db.top.tab.del @key
|
2023-09-12 18:44:45 +00:00
|
|
|
else:
|
|
|
|
return err(rc.error)
|
|
|
|
|
|
|
|
ok()
|
|
|
|
|
|
|
|
# ------------
|
|
|
|
|
|
|
|
proc get*(
|
|
|
|
db: KvtDbRef; # Database
|
2023-09-15 15:23:53 +00:00
|
|
|
key: openArray[byte]; # Key of database record
|
2023-09-12 18:44:45 +00:00
|
|
|
): Result[Blob,KvtError] =
|
|
|
|
## For the argument `key` return the associated value preferably from the
|
|
|
|
## top layer, or the database otherwise.
|
|
|
|
##
|
|
|
|
if key.len == 0:
|
|
|
|
return err(KeyInvalid)
|
2023-09-15 15:23:53 +00:00
|
|
|
let data = db.top.tab.getOrVoid @key
|
2023-09-12 18:44:45 +00:00
|
|
|
if data.isValid:
|
|
|
|
return ok(data)
|
|
|
|
db.getBE key
|
|
|
|
|
2023-10-27 21:36:51 +00:00
|
|
|
proc hasKey*(
|
2023-09-26 09:21:13 +00:00
|
|
|
db: KvtDbRef; # Database
|
|
|
|
key: openArray[byte]; # Key of database record
|
|
|
|
): Result[bool,KvtError] =
|
|
|
|
## For the argument `key` return the associated value preferably from the
|
|
|
|
## top layer, or the database otherwise.
|
|
|
|
##
|
|
|
|
if key.len == 0:
|
|
|
|
return err(KeyInvalid)
|
|
|
|
let data = db.top.tab.getOrVoid @key
|
|
|
|
if data.isValid:
|
|
|
|
return ok(true)
|
Core db and aristo updates for destructor and tx logic (#1894)
* Disable `TransactionID` related functions from `state_db.nim`
why:
Functions `getCommittedStorage()` and `updateOriginalRoot()` from
the `state_db` module are nowhere used. The emulation of a legacy
`TransactionID` type functionality is administratively expensive to
provide by `Aristo` (the legacy DB version is only partially
implemented, anyway).
As there is no other place where `TransactionID`s are used, they will
not be provided by the `Aristo` variant of the `CoreDb`. For the
legacy DB API, nothing will change.
* Fix copyright headers in source code
* Get rid of compiler warning
* Update Aristo code, remove unused `merge()` variant, export `hashify()`
why:
Adapt to upcoming `CoreDb` wrapper
* Remove synced tx feature from `Aristo`
why:
+ This feature allowed to synchronise transaction methods like begin,
commit, and rollback for a group of descriptors.
+ The feature is over engineered and not needed for `CoreDb`, neither
is it complete (some convergence features missing.)
* Add debugging helpers to `Kvt`
also:
Update database iterator, add count variable yield argument similar
to `Aristo`.
* Provide optional destructors for `CoreDb` API
why;
For the upcoming Aristo wrapper, this allows to control when certain
smart destruction and update can take place. The auto destructor works
fine in general when the storage/cache strategy is known and acceptable
when creating descriptors.
* Add update option for `CoreDb` API function `hash()`
why;
The hash function is typically used to get the state root of the MPT.
Due to lazy hashing, this might be not available on the `Aristo` DB.
So the `update` function asks for re-hashing the gurrent state changes
if needed.
* Update API tracking log mode: `info` => `debug
* Use shared `Kvt` descriptor in new Ledger API
why:
No need to create a new descriptor all the time
2023-11-16 19:35:03 +00:00
|
|
|
let rc = db.getBE key
|
2023-09-26 09:21:13 +00:00
|
|
|
if rc.isOk:
|
|
|
|
return ok(true)
|
|
|
|
if rc.error == GetNotFound:
|
|
|
|
return ok(false)
|
|
|
|
err(rc.error)
|
|
|
|
|
2023-09-12 18:44:45 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|