mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-29 05:25:34 +00:00
43e5f428af
* Update KVT layers abstraction details: modelled after Aristo layers * Simplified KVT database iterators (removed item counters) why: Not needed for production functions * Simplify KVT merge function `layersCc()` * Simplified Aristo database iterators (removed item counters) why: Not needed for production functions * Update failure condition for hash labels compiler `hashify()` why: Node need not be rejected as long as links are on the schedule. In that case, `redo[]` is to become `wff.base[]` at a later stage. * Update merging layers and label update functions why: + Merging a stack of layers with `layersCc()` could be simplified + Merging layers will optimise the reverse `kMap[]` table maps `pAmk: label->{vid, ..}` by deleting empty mappings `label->{}` where they are redundant. + Updated `layersPutLabel()` for optimising `pAmk[]` tables
147 lines
4.6 KiB
Nim
147 lines
4.6 KiB
Nim
# Nimbus - Types, data structures and shared utilities used in network sync
|
|
#
|
|
# Copyright (c) 2023 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.
|
|
|
|
import
|
|
std/[sequtils, sets, tables],
|
|
results,
|
|
".."/[aristo_desc, aristo_get, aristo_init, aristo_layers, aristo_utils]
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public generic iterators
|
|
# ------------------------------------------------------------------------------
|
|
|
|
iterator walkVtxBeImpl*[T](
|
|
db: AristoDbRef; # Database with optional backend filter
|
|
): tuple[vid: VertexID, vtx: VertexRef] =
|
|
## Generic iterator
|
|
when T is VoidBackendRef:
|
|
let filter = if db.roFilter.isNil: FilterRef() else: db.roFilter
|
|
|
|
else:
|
|
mixin walkVtx
|
|
|
|
let filter = FilterRef()
|
|
if not db.roFilter.isNil:
|
|
filter.sTab = db.roFilter.sTab # copy table
|
|
|
|
for (vid,vtx) in db.backend.T.walkVtx:
|
|
if filter.sTab.hasKey vid:
|
|
let fVtx = filter.sTab.getOrVoid vid
|
|
if fVtx.isValid:
|
|
yield (vid,fVtx)
|
|
filter.sTab.del vid
|
|
else:
|
|
yield (vid,vtx)
|
|
|
|
for vid in filter.sTab.keys.toSeq.mapIt(it.uint64).sorted.mapIt(it.VertexID):
|
|
let vtx = filter.sTab.getOrVoid vid
|
|
if vtx.isValid:
|
|
yield (vid,vtx)
|
|
|
|
|
|
iterator walkKeyBeImpl*[T](
|
|
db: AristoDbRef; # Database with optional backend filter
|
|
): tuple[vid: VertexID, key: HashKey] =
|
|
## Generic iterator
|
|
when T is VoidBackendRef:
|
|
let filter = if db.roFilter.isNil: FilterRef() else: db.roFilter
|
|
|
|
else:
|
|
mixin walkKey
|
|
|
|
let filter = FilterRef()
|
|
if not db.roFilter.isNil:
|
|
filter.kMap = db.roFilter.kMap # copy table
|
|
|
|
for (vid,key) in db.backend.T.walkKey:
|
|
if filter.kMap.hasKey vid:
|
|
let fKey = filter.kMap.getOrVoid vid
|
|
if fKey.isValid:
|
|
yield (vid,fKey)
|
|
filter.kMap.del vid
|
|
else:
|
|
yield (vid,key)
|
|
|
|
for vid in filter.kMap.keys.toSeq.mapIt(it.uint64).sorted.mapIt(it.VertexID):
|
|
let key = filter.kMap.getOrVoid vid
|
|
if key.isValid:
|
|
yield (vid,key)
|
|
|
|
|
|
iterator walkFilBeImpl*[T](
|
|
be: T; # Backend descriptor
|
|
): tuple[qid: QueueID, filter: FilterRef] =
|
|
## Generic filter iterator
|
|
when T isnot VoidBackendRef:
|
|
mixin walkFil
|
|
|
|
for (qid,filter) in be.walkFil:
|
|
yield (qid,filter)
|
|
|
|
|
|
iterator walkFifoBeImpl*[T](
|
|
be: T; # Backend descriptor
|
|
): tuple[qid: QueueID, fid: FilterRef] =
|
|
## Generic filter iterator walking slots in fifo order. This iterator does
|
|
## not depend on the backend type but may be type restricted nevertheless.
|
|
when T isnot VoidBackendRef:
|
|
proc kvp(chn: int, qid: QueueID): (QueueID,FilterRef) =
|
|
let cid = QueueID((chn.uint64 shl 62) or qid.uint64)
|
|
(cid, be.getFilFn(cid).get(otherwise = FilterRef(nil)))
|
|
|
|
if not be.isNil:
|
|
let scd = be.filters
|
|
if not scd.isNil:
|
|
for i in 0 ..< scd.state.len:
|
|
let (left, right) = scd.state[i]
|
|
if left == 0:
|
|
discard
|
|
elif left <= right:
|
|
for j in right.countDown left:
|
|
yield kvp(i, j)
|
|
else:
|
|
for j in right.countDown QueueID(1):
|
|
yield kvp(i, j)
|
|
for j in scd.ctx.q[i].wrap.countDown left:
|
|
yield kvp(i, j)
|
|
|
|
|
|
iterator walkPairsImpl*[T](
|
|
db: AristoDbRef; # Database with top layer & backend filter
|
|
): tuple[vid: VertexID, vtx: VertexRef] =
|
|
## Walk over all `(VertexID,VertexRef)` in the database. Note that entries
|
|
## are unsorted.
|
|
var seen: HashSet[VertexID]
|
|
for (vid,vtx) in db.layersWalkVtx seen:
|
|
if vtx.isValid:
|
|
yield (vid,vtx)
|
|
|
|
for (_,vid,vtx) in walkVtxBeImpl[T](db):
|
|
if vid notin seen:
|
|
yield (vid,vtx)
|
|
|
|
iterator replicateImpl*[T](
|
|
db: AristoDbRef; # Database with top layer & backend filter
|
|
): tuple[vid: VertexID, key: HashKey, vtx: VertexRef, node: NodeRef] =
|
|
## Variant of `walkPairsImpl()` for legacy applications.
|
|
for (vid,vtx) in walkPairsImpl[T](db):
|
|
let node = block:
|
|
let rc = vtx.toNode(db)
|
|
if rc.isOk:
|
|
rc.value
|
|
else:
|
|
NodeRef(nil)
|
|
yield (vid, db.getKey vid, vtx, node)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# End
|
|
# ------------------------------------------------------------------------------
|