2023-09-12 18:44:45 +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 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
|
|
|
|
results,
|
|
|
|
../kvt_desc,
|
2023-09-15 15:23:53 +00:00
|
|
|
"."/[rocks_db, memory_only]
|
2023-09-12 18:44:45 +00:00
|
|
|
export
|
|
|
|
RdbBackendRef,
|
|
|
|
memory_only
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public database constuctors, destructor
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-09-15 15:23:53 +00:00
|
|
|
proc init*[W: MemOnlyBackend|RdbBackendRef](
|
|
|
|
T: type KvtDbRef;
|
|
|
|
B: type W;
|
2023-09-12 18:44:45 +00:00
|
|
|
basePath: string;
|
|
|
|
): Result[KvtDbRef,KvtError] =
|
|
|
|
## Generic constructor, `basePath` argument is ignored for `BackendNone` and
|
|
|
|
## `BackendMemory` type backend database. Also, both of these backends
|
|
|
|
## aways succeed initialising.
|
|
|
|
##
|
2023-09-15 15:23:53 +00:00
|
|
|
when B is RdbBackendRef:
|
2023-09-18 20:20:28 +00:00
|
|
|
ok KvtDbRef(top: LayerRef(), backend: ? rocksDbBackend basePath)
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
else:
|
2023-09-15 15:23:53 +00:00
|
|
|
ok KvtDbRef.init B
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|