mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-03-01 12:20:49 +00:00
* renamed nimbus folder to execution_chain * Renamed "nimbus" references to "execution_chain" * fixed wrongly changed http reference * delete snap types file given that it was deleted before this PR merge * missing 'execution_chain' replacement --------- Co-authored-by: pmmiranda <pedro.miranda@nimbus.team>
82 lines
2.5 KiB
Nim
82 lines
2.5 KiB
Nim
# nimbus-eth1
|
|
# Copyright (c) 2023-2025 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 Kvt DB
|
|
## ======================================
|
|
##
|
|
{.push raises: [].}
|
|
|
|
import
|
|
../kvt_desc,
|
|
../kvt_desc/desc_backend,
|
|
"."/[init_common, memory_db]
|
|
|
|
type
|
|
VoidBackendRef* = ref object of TypedBackendRef
|
|
## Dummy descriptor type, used as `nil` reference
|
|
|
|
MemOnlyBackend* = VoidBackendRef|MemBackendRef
|
|
|
|
export
|
|
BackendType,
|
|
MemBackendRef
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public helpers
|
|
# -----------------------------------------------------------------------------
|
|
|
|
func kind*(
|
|
be: BackendRef;
|
|
): BackendType =
|
|
## Retrieves the backend type symbol for a `be` backend database argument
|
|
## where `BackendVoid` is returned for the`nil` backend.
|
|
if be.isNil:
|
|
BackendVoid
|
|
else:
|
|
be.TypedBackendRef.beKind
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public database constuctors, destructor
|
|
# ------------------------------------------------------------------------------
|
|
|
|
proc init*(
|
|
T: type KvtDbRef; # Target type
|
|
B: type MemOnlyBackend; # Backend type
|
|
): T =
|
|
## Memory backend constructor.
|
|
##
|
|
let db = when B is VoidBackendRef:
|
|
KvtDbRef(txRef: KvtTxRef(layer: LayerRef.init()))
|
|
|
|
elif B is MemBackendRef:
|
|
KvtDbRef(txRef: KvtTxRef(layer: LayerRef.init()), backend: memoryBackend())
|
|
db.txRef.db = db
|
|
db
|
|
|
|
proc init*(
|
|
T: type KvtDbRef; # Target type
|
|
): T =
|
|
## Shortcut for `KvtDbRef.init(VoidBackendRef)`
|
|
KvtDbRef.init VoidBackendRef
|
|
|
|
|
|
proc finish*(db: KvtDbRef; eradicate = false) =
|
|
## Backend destructor. The argument `eradicate` indicates that a full
|
|
## database deletion is requested. If set `false` the outcome might differ
|
|
## depending on the type of backend (e.g. the `BackendMemory` backend will
|
|
## always eradicate on close.)
|
|
##
|
|
if not db.backend.isNil:
|
|
db.backend.closeFn eradicate
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# End
|
|
# ------------------------------------------------------------------------------
|