2023-08-07 17:45:23 +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.
|
|
|
|
|
|
|
|
## Non persistent constructors for Aristo DB
|
|
|
|
## =========================================
|
|
|
|
##
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2023-08-17 13:42:01 +00:00
|
|
|
std/sets,
|
2023-08-07 17:45:23 +00:00
|
|
|
results,
|
|
|
|
../aristo_desc,
|
2023-08-25 22:53:59 +00:00
|
|
|
../aristo_desc/desc_backend,
|
|
|
|
"."/[init_common, memory_db]
|
2023-08-07 17:45:23 +00:00
|
|
|
|
2023-08-10 20:01:28 +00:00
|
|
|
type
|
2023-08-11 17:23:57 +00:00
|
|
|
VoidBackendRef* = ref object of TypedBackendRef
|
2023-08-10 20:01:28 +00:00
|
|
|
## Dummy descriptor type, will typically used as `nil` reference
|
|
|
|
|
2023-08-07 17:45:23 +00:00
|
|
|
export
|
2023-08-18 19:46:55 +00:00
|
|
|
BackendType,
|
2023-08-11 17:23:57 +00:00
|
|
|
VoidBackendRef,
|
2023-08-10 20:01:28 +00:00
|
|
|
MemBackendRef,
|
|
|
|
TypedBackendRef
|
2023-08-07 17:45:23 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public database constuctors, destructor
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc newAristoDbRef*(
|
2023-08-18 19:46:55 +00:00
|
|
|
backend: static[BackendType];
|
2023-08-07 17:45:23 +00:00
|
|
|
): AristoDbRef =
|
|
|
|
## Simplified prototype for `BackendNone` and `BackendMemory` type backend.
|
2023-08-11 17:23:57 +00:00
|
|
|
when backend == BackendVoid:
|
2023-08-18 19:46:55 +00:00
|
|
|
AristoDbRef(top: LayerRef())
|
2023-08-07 17:45:23 +00:00
|
|
|
|
|
|
|
elif backend == BackendMemory:
|
2023-08-18 19:46:55 +00:00
|
|
|
AristoDbRef(top: LayerRef(), backend: memoryBackend())
|
2023-08-07 17:45:23 +00:00
|
|
|
|
|
|
|
elif backend == BackendRocksDB:
|
|
|
|
{.error: "Aristo DB backend \"BackendRocksDB\" needs basePath argument".}
|
|
|
|
|
|
|
|
else:
|
|
|
|
{.error: "Unknown/unsupported Aristo DB backend".}
|
|
|
|
|
|
|
|
# -----------------
|
|
|
|
|
|
|
|
proc finish*(db: AristoDbRef; flush = false) =
|
|
|
|
## Backend destructor. The argument `flush` indicates that a full database
|
|
|
|
## deletion is requested. If set ot left `false` the outcome might differ
|
|
|
|
## depending on the type of backend (e.g. the `BackendMemory` backend will
|
|
|
|
## always flush on close.)
|
|
|
|
##
|
2023-08-17 13:42:01 +00:00
|
|
|
## In case of distributed descriptors accessing the same backend, all
|
|
|
|
## distributed descriptors will be destroyed.
|
|
|
|
##
|
2023-08-07 17:45:23 +00:00
|
|
|
## This distructor may be used on already *destructed* descriptors.
|
2023-08-17 13:42:01 +00:00
|
|
|
##
|
|
|
|
if not db.isNil:
|
|
|
|
if not db.backend.isNil:
|
|
|
|
db.backend.closeFn flush
|
|
|
|
|
|
|
|
if db.dudes.isNil:
|
|
|
|
db[] = AristoDbObj()
|
|
|
|
else:
|
|
|
|
let lebo = if db.dudes.rwOk: db else: db.dudes.rwDb
|
|
|
|
for w in lebo.dudes.roDudes:
|
|
|
|
w[] = AristoDbObj()
|
|
|
|
lebo[] = AristoDbObj()
|
2023-08-07 17:45:23 +00:00
|
|
|
|
|
|
|
# -----------------
|
|
|
|
|
2023-08-11 17:23:57 +00:00
|
|
|
proc to*[W: TypedBackendRef|MemBackendRef|VoidBackendRef](
|
2023-08-07 17:45:23 +00:00
|
|
|
db: AristoDbRef;
|
|
|
|
T: type W;
|
|
|
|
): T =
|
|
|
|
## Handy helper for lew-level access to some backend functionality
|
|
|
|
db.backend.T
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|