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.
|
|
|
|
|
|
|
|
## 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,
|
|
|
|
../aristo_desc,
|
2023-08-25 22:53:59 +00:00
|
|
|
"."/[init_common, rocks_db, memory_only]
|
2023-08-07 17:45:23 +00:00
|
|
|
export
|
2023-08-10 20:01:28 +00:00
|
|
|
RdbBackendRef,
|
2023-08-07 17:45:23 +00:00
|
|
|
memory_only
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# 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
|
|
|
basePath: string;
|
|
|
|
): Result[AristoDbRef, AristoError] =
|
|
|
|
## Generic constructor, `basePath` argument is ignored for `BackendNone` and
|
|
|
|
## `BackendMemory` type backend database. Also, both of these backends
|
|
|
|
## aways succeed initialising.
|
|
|
|
when backend == BackendRocksDB:
|
|
|
|
let be = block:
|
|
|
|
let rc = rocksDbBackend basePath
|
|
|
|
if rc.isErr:
|
|
|
|
return err(rc.error)
|
|
|
|
rc.value
|
|
|
|
let vGen = block:
|
|
|
|
let rc = be.getIdgFn()
|
|
|
|
if rc.isErr:
|
|
|
|
be.closeFn(flush = false)
|
|
|
|
return err(rc.error)
|
|
|
|
rc.value
|
2023-08-18 19:46:55 +00:00
|
|
|
ok AristoDbRef(top: LayerRef(vGen: vGen), backend: be)
|
2023-08-07 17:45:23 +00:00
|
|
|
|
2023-08-11 17:23:57 +00:00
|
|
|
elif backend == BackendVoid:
|
2023-08-07 17:45:23 +00:00
|
|
|
{.error: "Use BackendNone.init() without path argument".}
|
|
|
|
|
|
|
|
elif backend == BackendMemory:
|
|
|
|
{.error: "Use BackendMemory.init() without path argument".}
|
|
|
|
|
|
|
|
else:
|
|
|
|
{.error: "Unknown/unsupported Aristo DB backend".}
|
|
|
|
|
|
|
|
# -----------------
|
|
|
|
|
|
|
|
proc to*[W: RdbBackendRef](
|
|
|
|
db: AristoDbRef;
|
|
|
|
T: type W;
|
|
|
|
): T =
|
|
|
|
## Handy helper for lew-level access to some backend functionality
|
|
|
|
db.backend.T
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|