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-09-15 15:23:53 +00:00
|
|
|
"."/[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
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
proc init*[W: MemOnlyBackend|RdbBackendRef](
|
|
|
|
T: type AristoDbRef;
|
|
|
|
B: type W;
|
2023-08-07 17:45:23 +00:00
|
|
|
basePath: string;
|
2023-09-05 13:57:20 +00:00
|
|
|
qidLayout = DefaultQidLayoutRef;
|
2023-09-15 15:23:53 +00:00
|
|
|
): Result[T, AristoError] =
|
|
|
|
## Generic constructor, `basePath` argument is ignored for memory backend
|
|
|
|
## databases (which also unconditionally succeed initialising.)
|
2023-09-05 13:57:20 +00:00
|
|
|
##
|
|
|
|
## If the `qidLayout` argument is set `QidLayoutRef(nil)`, the a backend
|
|
|
|
## database will not provide filter history management. Providing a different
|
|
|
|
## scheduler layout shoud be used with care as table access with different
|
|
|
|
## layouts might render the filter history data unmanageable.
|
|
|
|
##
|
2023-09-15 15:23:53 +00:00
|
|
|
when B is RdbBackendRef:
|
2023-09-12 18:45:12 +00:00
|
|
|
let
|
|
|
|
be = ? rocksDbBackend(basePath, qidLayout)
|
|
|
|
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
|
|
|
else:
|
2023-09-15 15:23:53 +00:00
|
|
|
ok AristoDbRef.init(B, qidLayout)
|
2023-08-07 17:45:23 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|