2023-11-01 03:32:09 +00:00
|
|
|
# Nimbus
|
2024-01-31 11:55:30 +00:00
|
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
2023-11-01 03:32:09 +00:00
|
|
|
# Licensed under either of
|
2023-08-04 11:10:09 +00:00
|
|
|
# * 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.
|
|
|
|
|
2023-10-11 19:09:11 +00:00
|
|
|
## This module automatically pulls in the persistent backend libraries at the
|
2023-08-04 11:10:09 +00:00
|
|
|
## linking stage (e.g. `rocksdb`) which can be avoided for pure memory DB
|
|
|
|
## applications by importing `db/code_db/memory_only` (rather than
|
|
|
|
## `db/core_db/persistent`.)
|
|
|
|
##
|
2024-02-02 10:58:35 +00:00
|
|
|
## The right way to use this file on a conditional mode is to import it as in
|
|
|
|
## ::
|
|
|
|
## import ./path/to/core_db
|
|
|
|
## when ..condition..
|
|
|
|
## import ./path/to/core_db/persistent
|
|
|
|
##
|
2023-08-04 11:10:09 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2024-02-04 14:28:20 +00:00
|
|
|
../aristo,
|
2024-01-31 11:55:30 +00:00
|
|
|
./memory_only,
|
2024-02-04 14:28:20 +00:00
|
|
|
base_iterators_persistent,
|
2024-06-05 15:08:29 +00:00
|
|
|
./backend/aristo_rocksdb,
|
|
|
|
../opts
|
2023-08-04 11:10:09 +00:00
|
|
|
|
|
|
|
export
|
2024-02-04 14:28:20 +00:00
|
|
|
memory_only,
|
2024-05-20 10:17:51 +00:00
|
|
|
base_iterators_persistent
|
2024-02-02 10:58:35 +00:00
|
|
|
|
2023-10-11 19:09:11 +00:00
|
|
|
proc newCoreDbRef*(
|
|
|
|
dbType: static[CoreDbType]; # Database type symbol
|
|
|
|
path: string; # Storage path for database
|
2024-06-05 15:08:29 +00:00
|
|
|
opts: DbOptions;
|
2023-10-11 19:09:11 +00:00
|
|
|
): CoreDbRef =
|
2023-08-04 11:10:09 +00:00
|
|
|
## Constructor for persistent type DB
|
|
|
|
##
|
2024-06-13 18:15:11 +00:00
|
|
|
## The production database type is `AristoDbRocks` which uses a single
|
|
|
|
## `RocksDb` backend for both, `Aristo` and `KVT`.
|
|
|
|
##
|
2024-05-20 10:17:51 +00:00
|
|
|
when dbType == AristoDbRocks:
|
2024-06-05 15:08:29 +00:00
|
|
|
newAristoRocksDbCoreDbRef path, opts
|
2024-02-04 14:28:20 +00:00
|
|
|
|
2024-02-02 10:58:35 +00:00
|
|
|
else:
|
2024-02-04 14:28:20 +00:00
|
|
|
{.error: "Unsupported dbType for persistent newCoreDbRef()".}
|
2023-08-04 11:10:09 +00:00
|
|
|
|
|
|
|
# End
|