Jacek Sieka 42bb640443
Simplify shared rocksdb instance / write batch handling (#3063)
By introducing the "shared rocksdb instance" concept to the backend, we
can remove the "piggybacking" mode , thus reducing the complexity of
database initialisation and opening the possibility of extending how
write batching works across kvt/aristo.

The change makes explicit the hidden shared state that was previously
hiding in closures and provides the first step towards simplifying the
"commit/persist" interface of coredb, preparing it for optimizations to
reduce the "layering tax" that `forked-layers` introduced.
2025-02-14 09:40:22 +01:00

54 lines
1.6 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.
## Persistent constructor for Kvt DB
## ====================================
##
## This module automatically pulls in the persistent backend library at the
## linking stage (e.g. `rocksdb`) which can be avoided for pure memory DB
## applications by importing `./kvt_init/memory_only` (rather than
## `./kvt_init/persistent`.)
##
{.push raises: [].}
import
rocksdb,
results,
../../aristo,
../../opts,
../kvt_desc,
"."/[rocks_db, memory_only]
export
RdbBackendRef,
memory_only,
kvt_desc
# ------------------------------------------------------------------------------
# Public database constuctors, destructor
# ------------------------------------------------------------------------------
proc init*(
T: type KvtDbRef;
B: type RdbBackendRef;
baseDb: RocksDbInstanceRef;
): Result[KvtDbRef,KvtError] =
## Generic constructor for `RocksDb` backend
##
let db = KvtDbRef(
txRef: KvtTxRef(layer: LayerRef.init()),
backend: rocksDbKvtBackend(baseDb))
db.txRef.db = db
ok db
# ------------------------------------------------------------------------------
# End
# ------------------------------------------------------------------------------