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
|
|
|
|
## ===============================================
|
|
|
|
##
|
|
|
|
## These data structures allows to overlay the *Patricia Trie* with *Merkel
|
|
|
|
## Trie* hashes. See the `README.md` in the `aristo` folder for documentation.
|
2023-05-14 17:43:01 +00:00
|
|
|
##
|
|
|
|
## Some semantic explanations;
|
|
|
|
##
|
|
|
|
## * NodeKey, NodeRef etc. refer to the standard/legacy `Merkel Patricia Tree`
|
|
|
|
## * VertexID, VertexRef, etc. refer to the `Aristo Trie`
|
|
|
|
##
|
2023-05-11 14:25:29 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2023-05-14 17:43:01 +00:00
|
|
|
std/[sets, tables],
|
2023-05-11 14:25:29 +00:00
|
|
|
eth/[common, trie/nibbles],
|
|
|
|
stew/results,
|
|
|
|
../../sync/snap/range_desc,
|
|
|
|
./aristo_error
|
|
|
|
|
|
|
|
type
|
2023-05-14 17:43:01 +00:00
|
|
|
VertexID* = distinct uint64
|
|
|
|
## Tip of edge towards child object in the `Patricia Trie` logic. It is
|
|
|
|
## also the key into the structural table of the `Aristo Trie`.
|
|
|
|
|
|
|
|
GetVtxFn* =
|
|
|
|
proc(vid: VertexID): Result[VertexRef,AristoError]
|
|
|
|
{.gcsafe, raises: [].}
|
|
|
|
## Generic backend database retrieval function for a single structural
|
|
|
|
## `Aristo DB` data record.
|
|
|
|
|
|
|
|
GetKeyFn* =
|
|
|
|
proc(vid: VertexID): Result[NodeKey,AristoError]
|
|
|
|
{.gcsafe, raises: [].}
|
|
|
|
## Generic backend database retrieval function for a single
|
|
|
|
## `Aristo DB` hash lookup value.
|
|
|
|
|
|
|
|
PutVtxFn* =
|
|
|
|
proc(vrps: openArray[(VertexID,VertexRef)]): AristoError
|
|
|
|
{.gcsafe, raises: [].}
|
|
|
|
## Generic backend database bulk storage function.
|
|
|
|
|
|
|
|
PutKeyFn* =
|
|
|
|
proc(vkps: openArray[(VertexID,NodeKey)]): AristoError
|
|
|
|
{.gcsafe, raises: [].}
|
|
|
|
## Generic backend database bulk storage function.
|
|
|
|
|
|
|
|
DelFn* =
|
|
|
|
proc(vids: openArray[VertexID])
|
|
|
|
{.gcsafe, raises: [].}
|
|
|
|
## Generic backend database delete function for both, the structural
|
|
|
|
## `Aristo DB` data record and the hash lookup value.
|
|
|
|
|
|
|
|
VertexType* = enum
|
|
|
|
## Type of `Aristo Trie` vertex
|
2023-05-11 14:25:29 +00:00
|
|
|
Leaf
|
|
|
|
Extension
|
|
|
|
Branch
|
|
|
|
|
2023-05-14 17:43:01 +00:00
|
|
|
PayloadType* = enum
|
|
|
|
## Type of leaf data (to be extended)
|
|
|
|
BlobData ## Generic data, typically RLP encoded
|
|
|
|
AccountData ## Legacy `Account` with hash references
|
|
|
|
# AristoAccount ## `Aristo account` with vertex IDs links
|
2023-05-11 14:25:29 +00:00
|
|
|
|
|
|
|
PayloadRef* = ref object
|
|
|
|
case pType*: PayloadType
|
|
|
|
of BlobData:
|
2023-05-14 17:43:01 +00:00
|
|
|
blob*: Blob ## Opaque data value reference
|
2023-05-11 14:25:29 +00:00
|
|
|
of AccountData:
|
2023-05-14 17:43:01 +00:00
|
|
|
account*: Account ## Expanded accounting data
|
2023-05-11 14:25:29 +00:00
|
|
|
|
|
|
|
VertexRef* = ref object of RootRef
|
|
|
|
## Vertex for building a hexary Patricia or Merkle Patricia Trie
|
|
|
|
case vType*: VertexType
|
|
|
|
of Leaf:
|
2023-05-14 17:43:01 +00:00
|
|
|
lPfx*: NibblesSeq ## Portion of path segment
|
|
|
|
lData*: PayloadRef ## Reference to data payload
|
2023-05-11 14:25:29 +00:00
|
|
|
of Extension:
|
2023-05-14 17:43:01 +00:00
|
|
|
ePfx*: NibblesSeq ## Portion of path segment
|
|
|
|
eVid*: VertexID ## Edge to vertex with ID `eVid`
|
2023-05-11 14:25:29 +00:00
|
|
|
of Branch:
|
2023-05-14 17:43:01 +00:00
|
|
|
bVid*: array[16,VertexID] ## Edge list with vertex IDs
|
2023-05-11 14:25:29 +00:00
|
|
|
|
|
|
|
NodeRef* = ref object of VertexRef
|
|
|
|
## Combined record for a *traditional* ``Merkle Patricia Tree` node merged
|
|
|
|
## with a structural `VertexRef` type object.
|
2023-05-14 17:43:01 +00:00
|
|
|
error*: AristoError ## Can be used for error signalling
|
|
|
|
key*: array[16,NodeKey] ## Merkle hash/es for Branch & Extension
|
|
|
|
|
|
|
|
AristoBackendRef* = ref object
|
|
|
|
## Backend interface.
|
|
|
|
getVtxFn*: GetVtxFn ## Read vertex record
|
|
|
|
getKeyFn*: GetKeyFn ## Read vertex hash
|
|
|
|
putVtxFn*: PutVtxFn ## Bulk store vertex records
|
|
|
|
putKeyFn*: PutKeyFn ## Bulk store vertex hashes
|
|
|
|
delFn*: DelFn ## Bulk delete vertex records and hashes
|
|
|
|
|
|
|
|
AristoDbRef* = ref AristoDbObj
|
|
|
|
AristoDbObj = object
|
2023-05-11 14:25:29 +00:00
|
|
|
## Hexary trie plus helper structures
|
2023-05-14 17:43:01 +00:00
|
|
|
sTab*: Table[VertexID,VertexRef] ## Structural vertex table making up a trie
|
|
|
|
sDel*: HashSet[VertexID] ## Deleted vertices
|
|
|
|
kMap*: Table[VertexID,NodeKey] ## Merkle hash key mapping
|
|
|
|
pAmk*: Table[NodeKey,VertexID] ## Reverse mapper for data import
|
|
|
|
|
|
|
|
case cascaded*: bool ## Cascaded delta databases, tx layer
|
|
|
|
of true:
|
|
|
|
level*: int ## Positive number of stack layers
|
|
|
|
stack*: AristoDbRef ## Down the chain, not `nil`
|
|
|
|
base*: AristoDbRef ## Backend level descriptor
|
|
|
|
else:
|
|
|
|
vidGen*: seq[VertexID] ## Unique vertex ID generator
|
|
|
|
backend*: AristoBackendRef ## backend database (maybe `nil`)
|
2023-05-11 14:25:29 +00:00
|
|
|
|
|
|
|
# Debugging data below, might go away in future
|
2023-05-14 17:43:01 +00:00
|
|
|
xMap*: Table[NodeKey,VertexID] ## For pretty printing, extends `pAmk`
|
2023-05-11 14:25:29 +00:00
|
|
|
|
|
|
|
static:
|
|
|
|
# Not that there is no doubt about this ...
|
|
|
|
doAssert NodeKey.default.ByteArray32.initNibbleRange.len == 64
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public helpers: `VertexID` scalar data model
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc `<`*(a, b: VertexID): bool {.borrow.}
|
|
|
|
proc `==`*(a, b: VertexID): bool {.borrow.}
|
|
|
|
proc cmp*(a, b: VertexID): int {.borrow.}
|
|
|
|
proc `$`*(a: VertexID): string = $a.uint64
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public helpers: `NodeRef` and `PayloadRef`
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc `==`*(a, b: PayloadRef): bool =
|
|
|
|
## Beware, potential deep comparison
|
|
|
|
if a.isNil:
|
|
|
|
return b.isNil
|
|
|
|
if b.isNil:
|
|
|
|
return false
|
|
|
|
if unsafeAddr(a) != unsafeAddr(b):
|
|
|
|
if a.pType != b.pType:
|
|
|
|
return false
|
|
|
|
case a.pType:
|
|
|
|
of BlobData:
|
|
|
|
if a.blob != b.blob:
|
|
|
|
return false
|
|
|
|
of AccountData:
|
|
|
|
if a.account != b.account:
|
|
|
|
return false
|
|
|
|
true
|
|
|
|
|
|
|
|
proc `==`*(a, b: VertexRef): bool =
|
|
|
|
## Beware, potential deep comparison
|
|
|
|
if a.isNil:
|
|
|
|
return b.isNil
|
|
|
|
if b.isNil:
|
|
|
|
return false
|
|
|
|
if unsafeAddr(a[]) != unsafeAddr(b[]):
|
|
|
|
if a.vType != b.vType:
|
|
|
|
return false
|
|
|
|
case a.vType:
|
|
|
|
of Leaf:
|
|
|
|
if a.lPfx != b.lPfx or a.lData != b.lData:
|
|
|
|
return false
|
|
|
|
of Extension:
|
2023-05-14 17:43:01 +00:00
|
|
|
if a.ePfx != b.ePfx or a.eVid != b.eVid:
|
2023-05-11 14:25:29 +00:00
|
|
|
return false
|
|
|
|
of Branch:
|
|
|
|
for n in 0..15:
|
2023-05-14 17:43:01 +00:00
|
|
|
if a.bVid[n] != b.bVid[n]:
|
2023-05-11 14:25:29 +00:00
|
|
|
return false
|
|
|
|
true
|
|
|
|
|
|
|
|
proc `==`*(a, b: NodeRef): bool =
|
|
|
|
## Beware, potential deep comparison
|
|
|
|
if a.VertexRef != b.VertexRef:
|
|
|
|
return false
|
|
|
|
case a.vType:
|
|
|
|
of Extension:
|
|
|
|
if a.key[0] != b.key[0]:
|
|
|
|
return false
|
|
|
|
of Branch:
|
|
|
|
for n in 0..15:
|
2023-05-14 17:43:01 +00:00
|
|
|
if a.bVid[n] != 0.VertexID and a.key[n] != b.key[n]:
|
2023-05-11 14:25:29 +00:00
|
|
|
return false
|
|
|
|
else:
|
|
|
|
discard
|
|
|
|
true
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public helpers, miscellaneous functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc isZero*[T: NodeKey|VertexID](a: T): bool =
|
|
|
|
a == typeof(a).default
|
|
|
|
|
|
|
|
proc isError*(a: NodeRef): bool =
|
|
|
|
a.error != AristoError(0)
|
|
|
|
|
|
|
|
proc convertTo*(payload: PayloadRef; T: type Blob): T =
|
|
|
|
## Probably lossy conversion as the storage type `kind` gets missing
|
|
|
|
case payload.pType:
|
|
|
|
of BlobData:
|
|
|
|
result = payload.blob
|
|
|
|
of AccountData:
|
|
|
|
result = rlp.encode payload.account
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|