2023-08-10 20:01:28 +00:00
|
|
|
# Nimbus - Types, data structures and shared utilities used in network sync
|
|
|
|
#
|
2024-02-01 21:27:48 +00:00
|
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
2023-08-10 20:01:28 +00:00
|
|
|
# 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
|
2024-02-01 21:27:48 +00:00
|
|
|
std/[algorithm, sequtils, sets, tables],
|
2023-09-05 13:57:20 +00:00
|
|
|
results,
|
2023-12-20 16:19:00 +00:00
|
|
|
".."/[aristo_desc, aristo_get, aristo_init, aristo_layers, aristo_utils]
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public generic iterators
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
iterator walkVtxBeImpl*[T](
|
|
|
|
db: AristoDbRef; # Database with optional backend filter
|
2023-12-20 16:19:00 +00:00
|
|
|
): tuple[vid: VertexID, vtx: VertexRef] =
|
2023-08-10 20:01:28 +00:00
|
|
|
## Generic iterator
|
2023-09-15 15:23:53 +00:00
|
|
|
when T is VoidBackendRef:
|
2024-06-03 20:10:35 +00:00
|
|
|
let filter = if db.balancer.isNil: LayerDeltaRef() else: db.balancer
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
mixin walkVtx
|
|
|
|
|
2024-06-03 20:10:35 +00:00
|
|
|
let filter = LayerDeltaRef()
|
|
|
|
if not db.balancer.isNil:
|
|
|
|
filter.sTab = db.balancer.sTab # copy table
|
2023-08-10 20:01:28 +00:00
|
|
|
|
2023-12-20 16:19:00 +00:00
|
|
|
for (vid,vtx) in db.backend.T.walkVtx:
|
2023-08-10 20:01:28 +00:00
|
|
|
if filter.sTab.hasKey vid:
|
|
|
|
let fVtx = filter.sTab.getOrVoid vid
|
|
|
|
if fVtx.isValid:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,fVtx)
|
2023-08-10 20:01:28 +00:00
|
|
|
filter.sTab.del vid
|
|
|
|
else:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,vtx)
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
for vid in filter.sTab.keys.toSeq.mapIt(it.uint64).sorted.mapIt(it.VertexID):
|
|
|
|
let vtx = filter.sTab.getOrVoid vid
|
|
|
|
if vtx.isValid:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,vtx)
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
iterator walkKeyBeImpl*[T](
|
|
|
|
db: AristoDbRef; # Database with optional backend filter
|
2023-12-20 16:19:00 +00:00
|
|
|
): tuple[vid: VertexID, key: HashKey] =
|
2023-08-10 20:01:28 +00:00
|
|
|
## Generic iterator
|
2023-09-15 15:23:53 +00:00
|
|
|
when T is VoidBackendRef:
|
2024-06-03 20:10:35 +00:00
|
|
|
let filter = if db.balancer.isNil: LayerDeltaRef() else: db.balancer
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
mixin walkKey
|
|
|
|
|
2024-06-03 20:10:35 +00:00
|
|
|
let filter = LayerDeltaRef()
|
|
|
|
if not db.balancer.isNil:
|
|
|
|
filter.kMap = db.balancer.kMap # copy table
|
2023-08-10 20:01:28 +00:00
|
|
|
|
2023-12-20 16:19:00 +00:00
|
|
|
for (vid,key) in db.backend.T.walkKey:
|
2023-08-10 20:01:28 +00:00
|
|
|
if filter.kMap.hasKey vid:
|
|
|
|
let fKey = filter.kMap.getOrVoid vid
|
|
|
|
if fKey.isValid:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,fKey)
|
2023-08-10 20:01:28 +00:00
|
|
|
filter.kMap.del vid
|
|
|
|
else:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,key)
|
2023-08-10 20:01:28 +00:00
|
|
|
|
|
|
|
for vid in filter.kMap.keys.toSeq.mapIt(it.uint64).sorted.mapIt(it.VertexID):
|
|
|
|
let key = filter.kMap.getOrVoid vid
|
|
|
|
if key.isValid:
|
2023-12-20 16:19:00 +00:00
|
|
|
yield (vid,key)
|
2023-08-10 20:01:28 +00:00
|
|
|
|
2023-08-22 18:44:54 +00:00
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
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.
|
2023-12-19 12:39:23 +00:00
|
|
|
var seen: HashSet[VertexID]
|
|
|
|
for (vid,vtx) in db.layersWalkVtx seen:
|
2023-09-15 15:23:53 +00:00
|
|
|
if vtx.isValid:
|
|
|
|
yield (vid,vtx)
|
2023-12-19 12:39:23 +00:00
|
|
|
|
2024-02-01 21:27:48 +00:00
|
|
|
for (vid,vtx) in walkVtxBeImpl[T](db):
|
2023-12-19 12:39:23 +00:00
|
|
|
if vid notin seen:
|
2023-09-15 15:23:53 +00:00
|
|
|
yield (vid,vtx)
|
|
|
|
|
2023-09-18 20:20:28 +00:00
|
|
|
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)
|
|
|
|
|
2023-08-10 20:01:28 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|