mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-03-01 12:20:49 +00:00
* Merge KvtDbRef/AristoDbRef with their BackendRef * Fix aristo memory_only constructor * Remove aristo_persist.nim
54 lines
1.6 KiB
Nim
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 Aristo 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 `./aristo_init/memory_only` (rather than
|
|
## `./aristo_init/persistent`.)
|
|
##
|
|
{.push raises: [].}
|
|
|
|
import
|
|
results,
|
|
rocksdb,
|
|
../../opts,
|
|
../aristo_desc,
|
|
./rocks_db/rdb_desc,
|
|
"."/[init_common, rocks_db]
|
|
|
|
export
|
|
AristoDbRef,
|
|
RdbBackendRef,
|
|
RdbWriteEventCb,
|
|
init_common,
|
|
aristo_desc
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Public database constuctors, destructor
|
|
# ------------------------------------------------------------------------------
|
|
|
|
proc init*(
|
|
T: type AristoDbRef;
|
|
opts: DbOptions;
|
|
baseDb: RocksDbInstanceRef;
|
|
): Result[T, AristoError] =
|
|
let db = rocksDbBackend(opts, baseDb)
|
|
db.initInstance().isOkOr:
|
|
db.closeFn(eradicate = false)
|
|
return err(error)
|
|
ok db
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# End
|
|
# ------------------------------------------------------------------------------
|