2023-05-11 14:25:29 +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.
|
|
|
|
|
|
|
|
## Aristo DB -- a Patricia Trie with labeled edges
|
|
|
|
## ===============================================
|
|
|
|
##
|
2023-08-17 13:42:01 +00:00
|
|
|
## These data structures allow to overlay the *Patricia Trie* with *Merkel
|
2023-05-11 14:25:29 +00:00
|
|
|
## Trie* hashes. See the `README.md` in the `aristo` folder for documentation.
|
2023-05-14 17:43:01 +00:00
|
|
|
##
|
|
|
|
## Some semantic explanations;
|
|
|
|
##
|
2023-06-12 18:16:03 +00:00
|
|
|
## * HashKey, NodeRef etc. refer to the standard/legacy `Merkle Patricia Tree`
|
2023-05-14 17:43:01 +00:00
|
|
|
## * VertexID, VertexRef, etc. refer to the `Aristo Trie`
|
|
|
|
##
|
2023-05-11 14:25:29 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2023-08-17 13:42:01 +00:00
|
|
|
std/[hashes, sets, tables],
|
2023-06-12 18:16:03 +00:00
|
|
|
eth/common,
|
2023-09-11 20:38:49 +00:00
|
|
|
results,
|
2023-06-12 13:48:47 +00:00
|
|
|
./aristo_constants,
|
2023-08-25 22:53:59 +00:00
|
|
|
./aristo_desc/[desc_error, desc_identifiers, desc_structural]
|
2023-08-10 20:01:28 +00:00
|
|
|
|
2023-08-25 22:53:59 +00:00
|
|
|
from ./aristo_desc/desc_backend
|
2023-08-18 19:46:55 +00:00
|
|
|
import BackendRef
|
2023-05-30 21:21:15 +00:00
|
|
|
|
2023-08-17 13:42:01 +00:00
|
|
|
# Not auto-exporting backend
|
2023-05-30 21:21:15 +00:00
|
|
|
export
|
2023-08-25 22:53:59 +00:00
|
|
|
aristo_constants, desc_error, desc_identifiers, desc_structural
|
2023-06-12 13:48:47 +00:00
|
|
|
|
2023-05-11 14:25:29 +00:00
|
|
|
type
|
2023-09-15 15:23:53 +00:00
|
|
|
AristoDudes* = HashSet[AristoDbRef]
|
|
|
|
## Descriptor peers asharing the same backend
|
|
|
|
|
2023-08-07 17:45:23 +00:00
|
|
|
AristoTxRef* = ref object
|
|
|
|
## Transaction descriptor
|
|
|
|
db*: AristoDbRef ## Database descriptor
|
|
|
|
parent*: AristoTxRef ## Previous transaction
|
|
|
|
txUid*: uint ## Unique ID among transactions
|
2023-08-11 17:23:57 +00:00
|
|
|
level*: int ## Stack index for this transaction
|
2023-08-07 17:45:23 +00:00
|
|
|
|
2023-09-11 20:38:49 +00:00
|
|
|
DudesRef = ref object
|
|
|
|
case rwOk: bool
|
2023-08-17 13:42:01 +00:00
|
|
|
of true:
|
2023-09-15 15:23:53 +00:00
|
|
|
roDudes: AristoDudes ## Read-only peers
|
|
|
|
txDudes: AristoDudes ## Other transaction peers
|
2023-08-17 13:42:01 +00:00
|
|
|
else:
|
2023-09-11 20:38:49 +00:00
|
|
|
rwDb: AristoDbRef ## Link to writable descriptor
|
2023-08-17 13:42:01 +00:00
|
|
|
|
2023-07-04 18:24:03 +00:00
|
|
|
AristoDbRef* = ref AristoDbObj
|
|
|
|
AristoDbObj* = object
|
2023-08-17 13:42:01 +00:00
|
|
|
## Three tier database object supporting distributed instances.
|
2023-08-18 19:46:55 +00:00
|
|
|
top*: LayerRef ## Database working layer, mutable
|
|
|
|
stack*: seq[LayerRef] ## Stashed immutable parent layers
|
|
|
|
roFilter*: FilterRef ## Apply read filter (locks writing)
|
|
|
|
backend*: BackendRef ## Backend database (may well be `nil`)
|
2023-05-11 14:25:29 +00:00
|
|
|
|
2023-08-07 17:45:23 +00:00
|
|
|
txRef*: AristoTxRef ## Latest active transaction
|
|
|
|
txUidGen*: uint ## Tx-relative unique number generator
|
2023-09-11 20:38:49 +00:00
|
|
|
dudes: DudesRef ## Related DB descriptors
|
2023-08-07 17:45:23 +00:00
|
|
|
|
2023-05-11 14:25:29 +00:00
|
|
|
# Debugging data below, might go away in future
|
2023-07-04 18:24:03 +00:00
|
|
|
xMap*: Table[HashLabel,VertexID] ## For pretty printing, extends `pAmk`
|
2023-05-11 14:25:29 +00:00
|
|
|
|
2023-08-17 13:42:01 +00:00
|
|
|
AristoDbAction* = proc(db: AristoDbRef) {.gcsafe, raises: [CatchableError].}
|
|
|
|
## Generic call back function/closure.
|
|
|
|
|
2023-05-11 14:25:29 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
2023-06-12 13:48:47 +00:00
|
|
|
# Public helpers
|
2023-05-11 14:25:29 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-06-22 11:13:24 +00:00
|
|
|
func getOrVoid*[W](tab: Table[W,VertexRef]; w: W): VertexRef =
|
2023-06-12 13:48:47 +00:00
|
|
|
tab.getOrDefault(w, VertexRef(nil))
|
2023-05-11 14:25:29 +00:00
|
|
|
|
2023-06-22 11:13:24 +00:00
|
|
|
func getOrVoid*[W](tab: Table[W,HashLabel]; w: W): HashLabel =
|
2023-06-12 13:48:47 +00:00
|
|
|
tab.getOrDefault(w, VOID_HASH_LABEL)
|
2023-06-09 11:17:37 +00:00
|
|
|
|
2023-08-10 20:01:28 +00:00
|
|
|
func getOrVoid*[W](tab: Table[W,HashKey]; w: W): HashKey =
|
|
|
|
tab.getOrDefault(w, VOID_HASH_KEY)
|
|
|
|
|
2023-06-22 11:13:24 +00:00
|
|
|
func getOrVoid*[W](tab: Table[W,VertexID]; w: W): VertexID =
|
2023-06-12 13:48:47 +00:00
|
|
|
tab.getOrDefault(w, VertexID(0))
|
2023-06-09 11:17:37 +00:00
|
|
|
|
2023-06-12 18:16:03 +00:00
|
|
|
# --------
|
2023-06-09 11:17:37 +00:00
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
func isValid*(vtx: VertexRef): bool =
|
2023-06-12 13:48:47 +00:00
|
|
|
vtx != VertexRef(nil)
|
2023-06-09 11:17:37 +00:00
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
func isValid*(nd: NodeRef): bool =
|
2023-06-12 13:48:47 +00:00
|
|
|
nd != NodeRef(nil)
|
2023-06-09 11:17:37 +00:00
|
|
|
|
2023-07-05 13:50:11 +00:00
|
|
|
func isValid*(pld: PayloadRef): bool =
|
|
|
|
pld != PayloadRef(nil)
|
|
|
|
|
2023-08-21 18:18:06 +00:00
|
|
|
func isValid*(filter: FilterRef): bool =
|
|
|
|
filter != FilterRef(nil)
|
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
func isValid*(key: HashKey): bool =
|
2023-06-12 18:16:03 +00:00
|
|
|
key != VOID_HASH_KEY
|
2023-05-11 14:25:29 +00:00
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
func isValid*(lbl: HashLabel): bool =
|
2023-06-12 13:48:47 +00:00
|
|
|
lbl != VOID_HASH_LABEL
|
2023-05-11 14:25:29 +00:00
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
func isValid*(vid: VertexID): bool =
|
2023-06-12 13:48:47 +00:00
|
|
|
vid != VertexID(0)
|
2023-05-30 11:47:47 +00:00
|
|
|
|
2023-08-25 22:53:59 +00:00
|
|
|
func isValid*(qid: QueueID): bool =
|
|
|
|
qid != QueueID(0)
|
2023-08-18 19:46:55 +00:00
|
|
|
|
2023-08-30 17:08:39 +00:00
|
|
|
func isValid*(fid: FilterID): bool =
|
|
|
|
fid != FilterID(0)
|
|
|
|
|
2023-06-20 13:26:25 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions, miscellaneous
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-08-17 13:42:01 +00:00
|
|
|
# Hash set helper
|
|
|
|
func hash*(db: AristoDbRef): Hash =
|
|
|
|
## Table/KeyedQueue/HashSet mixin
|
|
|
|
cast[pointer](db).hash
|
|
|
|
|
2023-08-25 22:53:59 +00:00
|
|
|
# Note that the below `init()` function cannot go into `desc_identifiers` as
|
|
|
|
# this would result in a circular import.
|
2023-06-20 13:26:25 +00:00
|
|
|
func init*(key: var HashKey; data: openArray[byte]): bool =
|
|
|
|
## Import argument `data` into `key` which must have length either `32`, or
|
|
|
|
## `0`. The latter case is equivalent to an all zero byte array of size `32`.
|
|
|
|
if data.len == 32:
|
|
|
|
(addr key.ByteArray32[0]).copyMem(unsafeAddr data[0], data.len)
|
|
|
|
return true
|
|
|
|
if data.len == 0:
|
|
|
|
key = VOID_HASH_KEY
|
|
|
|
return true
|
|
|
|
|
2023-09-11 20:38:49 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions, `dude` related
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func isCentre*(db: AristoDbRef): bool =
|
|
|
|
## This function returns `true` is the argument `db` is the centre (see
|
|
|
|
## comments on `reCentre()` for details.)
|
|
|
|
##
|
|
|
|
db.dudes.isNil or db.dudes.rwOk
|
|
|
|
|
|
|
|
func getCentre*(db: AristoDbRef): AristoDbRef =
|
|
|
|
## Get the centre descriptor among all other descriptors accessing the same
|
|
|
|
## backend database (see comments on `reCentre()` for details.)
|
|
|
|
##
|
|
|
|
if db.dudes.isNil or db.dudes.rwOk:
|
|
|
|
db
|
|
|
|
else:
|
|
|
|
db.dudes.rwDb
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
proc reCentre*(
|
|
|
|
db: AristoDbRef;
|
|
|
|
force = false;
|
|
|
|
): Result[void,AristoError] =
|
2023-09-11 20:38:49 +00:00
|
|
|
## Re-focus the `db` argument descriptor so that it becomes the centre.
|
|
|
|
## Nothing is done if the `db` descriptor is the centre, already.
|
|
|
|
##
|
|
|
|
## With several descriptors accessing the same backend database there is a
|
|
|
|
## single one that has write permission for the backend (regardless whether
|
|
|
|
## there is a backend, at all.) The descriptor entity with write permission
|
|
|
|
## is called *the centre*.
|
|
|
|
##
|
|
|
|
## After invoking `reCentre()`, the argument database `db` can only be
|
|
|
|
## destructed by `finish()` which also destructs all other descriptors
|
|
|
|
## accessing the same backend database. Descriptors where `isCentre()`
|
|
|
|
## returns `false` must be single destructed with `forget()`.
|
|
|
|
##
|
2023-09-15 15:23:53 +00:00
|
|
|
## If there is an open transaction spanning several descriptors, the `force`
|
|
|
|
## flag must be set `true` (unless the argument `db` is centre, already.) The
|
|
|
|
## argument `db` must be covered by the transaction span. Then the re-centred
|
|
|
|
## descriptor will also be the centre of the transaction span.
|
|
|
|
##
|
2023-09-11 20:38:49 +00:00
|
|
|
if not db.isCentre:
|
|
|
|
let parent = db.dudes.rwDb
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
# Check for multi-transactions
|
|
|
|
if 0 < parent.dudes.txDudes.len:
|
|
|
|
if not force:
|
|
|
|
return err(CentreTxLocked)
|
|
|
|
if db notin parent.dudes.txDudes:
|
|
|
|
return err(OutsideTxSpan)
|
|
|
|
if db.txRef.isNil or parent.txRef.isNil:
|
|
|
|
return err(GarbledTxSpan)
|
|
|
|
|
2023-09-11 20:38:49 +00:00
|
|
|
# Steal dudes list from parent, make the rw-parent a read-only dude
|
|
|
|
db.dudes = parent.dudes
|
|
|
|
parent.dudes = DudesRef(rwOk: false, rwDb: db)
|
|
|
|
|
|
|
|
# Exclude self
|
|
|
|
db.dudes.roDudes.excl db
|
|
|
|
|
|
|
|
# Update dudes
|
|
|
|
for w in db.dudes.roDudes:
|
|
|
|
# Let all other dudes refer to this one
|
|
|
|
w.dudes.rwDb = db
|
|
|
|
|
|
|
|
# Update dudes list (parent was alredy updated)
|
|
|
|
db.dudes.roDudes.incl parent
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
# Update transaction span
|
|
|
|
if 0 < db.dudes.txDudes.len:
|
|
|
|
db.dudes.txDudes.excl db
|
|
|
|
db.dudes.txDudes.incl parent
|
|
|
|
|
|
|
|
ok()
|
|
|
|
|
|
|
|
|
|
|
|
iterator txSpan*(db: AristoDbRef): AristoDbRef =
|
|
|
|
## Interate over all descriptors belonging to the transaction span if there
|
|
|
|
## is any. Note that the centre descriptor is aways part of the transaction
|
|
|
|
## if there is any.
|
|
|
|
##
|
|
|
|
if not db.dudes.isNil:
|
|
|
|
let parent = db.getCentre
|
|
|
|
if 0 < parent.dudes.txDudes.len:
|
|
|
|
yield parent
|
|
|
|
for dude in parent.dudes.txDudes.items:
|
|
|
|
yield dude
|
|
|
|
|
|
|
|
func nTxSpan*(db: AristoDbRef): int =
|
|
|
|
## Returns the number of descriptors belonging to the transaction span. This
|
|
|
|
## function is a fast version of `db.txSpan.toSeq.len`. Note that the
|
|
|
|
## returned numbe is never `1` (either `0` or at least `2`.)
|
|
|
|
##
|
|
|
|
if not db.dudes.isNil:
|
|
|
|
let parent = db.getCentre
|
|
|
|
if 0 < parent.dudes.txDudes.len:
|
|
|
|
return 1 + db.getCentre.dudes.txDudes.len
|
|
|
|
|
|
|
|
func inTxSpan*(db: AristoDbRef): bool =
|
|
|
|
## Returns `true` if the argument descriptor `db` belongs to the transaction
|
|
|
|
## span if there is any. Note that the centre descriptor is aways part of
|
|
|
|
## the transaction if there is any.
|
|
|
|
##
|
|
|
|
if not db.isCentre:
|
|
|
|
return db in db.dudes.rwDb.dudes.txDudes
|
|
|
|
elif not db.dudes.isNil:
|
|
|
|
return 0 < db.dudes.txDudes.len
|
|
|
|
false
|
|
|
|
|
|
|
|
proc txSpanSet*(dudes: openArray[AristoDbRef]) =
|
|
|
|
## Define the set of argument descriptors as transaction span.
|
|
|
|
##
|
|
|
|
if 0 < dudes.len:
|
|
|
|
let parent = dudes[0].getCentre
|
|
|
|
if not parent.dudes.isNil:
|
|
|
|
parent.dudes.txDudes = dudes.toHashSet - [parent].toHashSet
|
|
|
|
|
|
|
|
proc txSpanClear*(db: AristoDbRef) =
|
|
|
|
## Remove all descriptors from the transaction span.
|
|
|
|
##
|
|
|
|
if not db.isCentre:
|
|
|
|
db.dudes.rwDb.dudes.txDudes.clear
|
|
|
|
elif not db.dudes.isNil:
|
|
|
|
db.dudes.txDudes.clear
|
|
|
|
|
2023-09-11 20:38:49 +00:00
|
|
|
|
|
|
|
proc fork*(
|
|
|
|
db: AristoDbRef;
|
|
|
|
rawToplayer = false;
|
|
|
|
): Result[AristoDbRef,AristoError] =
|
|
|
|
## This function creates a new empty descriptor accessing the same backend
|
|
|
|
## (if any) database as the argument `db`. This new descriptor joins the
|
|
|
|
## list of descriptors accessing the same backend database.
|
|
|
|
##
|
|
|
|
## After use, any unused non centre descriptor should be destructed via
|
|
|
|
## `forget()`. Not doing so will not only hold memory ressources but might
|
|
|
|
## also cost computing ressources for maintaining and updating backend
|
|
|
|
## filters when writing to the backend database .
|
|
|
|
##
|
|
|
|
## If the argument `rawToplayer` is set `true` the function will provide an
|
|
|
|
## uninitalised and inconsistent (!) top layer. This setting avoids some
|
|
|
|
## database lookup for cases where the top layer is redefined anyway.
|
|
|
|
##
|
|
|
|
let clone = AristoDbRef(
|
|
|
|
top: LayerRef(),
|
|
|
|
backend: db.backend)
|
|
|
|
|
|
|
|
if not rawToplayer:
|
|
|
|
let rc = clone.backend.getIdgFn()
|
|
|
|
if rc.isOk:
|
|
|
|
clone.top.vGen = rc.value
|
|
|
|
elif rc.error != GetIdgNotFound:
|
|
|
|
return err(rc.error)
|
|
|
|
|
|
|
|
# Update dudes list
|
|
|
|
if db.dudes.isNil:
|
|
|
|
clone.dudes = DudesRef(rwOk: false, rwDb: db)
|
|
|
|
db.dudes = DudesRef(rwOk: true, roDudes: [clone].toHashSet)
|
|
|
|
else:
|
|
|
|
let parent = if db.dudes.rwOk: db else: db.dudes.rwDb
|
|
|
|
clone.dudes = DudesRef(rwOk: false, rwDb: parent)
|
|
|
|
parent.dudes.roDudes.incl clone
|
|
|
|
|
|
|
|
ok clone
|
|
|
|
|
|
|
|
iterator forked*(db: AristoDbRef): AristoDbRef =
|
|
|
|
## Interate over all non centre descriptors (see comments on `reCentre()`
|
|
|
|
## for details.)
|
|
|
|
if not db.dudes.isNil:
|
|
|
|
for dude in db.getCentre.dudes.roDudes.items:
|
|
|
|
yield dude
|
|
|
|
|
|
|
|
func nForked*(db: AristoDbRef): int =
|
|
|
|
## Returns the number of non centre descriptors (see comments on `reCentre()`
|
|
|
|
## for details.) This function is a fast version of `db.forked.toSeq.len`.
|
2023-09-15 15:23:53 +00:00
|
|
|
if not db.dudes.isNil:
|
2023-09-11 20:38:49 +00:00
|
|
|
return db.getCentre.dudes.roDudes.len
|
|
|
|
|
|
|
|
|
|
|
|
proc forget*(db: AristoDbRef): Result[void,AristoError] =
|
|
|
|
## Destruct the non centre argument `db` descriptor (see comments on
|
|
|
|
## `reCentre()` for details.)
|
|
|
|
##
|
|
|
|
## A non centre descriptor should always be destructed after use (see also
|
|
|
|
## comments on `fork()`.)
|
|
|
|
##
|
|
|
|
if db.isCentre:
|
|
|
|
return err(NotAllowedOnCentre)
|
|
|
|
|
|
|
|
# Unlink argument `db`
|
|
|
|
let parent = db.dudes.rwDb
|
|
|
|
if parent.dudes.roDudes.len < 2:
|
|
|
|
parent.dudes = DudesRef(nil)
|
|
|
|
else:
|
2023-09-15 15:23:53 +00:00
|
|
|
parent.dudes.roDudes.excl db
|
|
|
|
parent.dudes.txDudes.excl db # might be empty, anyway
|
2023-09-11 20:38:49 +00:00
|
|
|
|
|
|
|
# Clear descriptor so it would not do harm if used wrongly
|
|
|
|
db[] = AristoDbObj(top: LayerRef())
|
|
|
|
ok()
|
|
|
|
|
|
|
|
proc forgetOthers*(db: AristoDbRef): Result[void,AristoError] =
|
|
|
|
## For the centre argument `db` descriptor (see comments on `reCentre()`
|
|
|
|
## for details), destruct all other descriptors accessing the same backend.
|
|
|
|
##
|
|
|
|
if not db.isCentre:
|
|
|
|
return err(MustBeOnCentre)
|
|
|
|
|
|
|
|
if not db.dudes.isNil:
|
|
|
|
for dude in db.dudes.roDudes.items:
|
|
|
|
dude[] = AristoDbObj(top: LayerRef())
|
|
|
|
|
|
|
|
db.dudes = DudesRef(nil)
|
|
|
|
ok()
|
|
|
|
|
2023-05-11 14:25:29 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|