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`.)
|
|
|
|
##
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2024-01-31 11:55:30 +00:00
|
|
|
../aristo,
|
|
|
|
./memory_only,
|
|
|
|
../select_backend
|
2023-08-04 11:10:09 +00:00
|
|
|
|
|
|
|
export
|
2024-01-31 11:55:30 +00:00
|
|
|
memory_only
|
|
|
|
|
|
|
|
# Allow hive sim to compile with dbBackend == none
|
|
|
|
when dbBackend == rocksdb:
|
|
|
|
import
|
|
|
|
./backend/[aristo_rocksdb, legacy_rocksdb]
|
|
|
|
|
|
|
|
export
|
|
|
|
toRocksStoreRef
|
2023-08-04 11:10:09 +00:00
|
|
|
|
2023-10-11 19:09:11 +00:00
|
|
|
proc newCoreDbRef*(
|
|
|
|
dbType: static[CoreDbType]; # Database type symbol
|
|
|
|
path: string; # Storage path for database
|
|
|
|
): CoreDbRef =
|
2023-08-04 11:10:09 +00:00
|
|
|
## Constructor for persistent type DB
|
|
|
|
##
|
|
|
|
## Note: Using legacy notation `newCoreDbRef()` rather than
|
|
|
|
## `CoreDbRef.init()` because of compiler coughing.
|
2024-01-31 11:55:30 +00:00
|
|
|
when dbBackend == rocksdb:
|
|
|
|
when dbType == LegacyDbPersistent:
|
|
|
|
newLegacyPersistentCoreDbRef path
|
|
|
|
|
|
|
|
elif dbType == AristoDbRocks:
|
|
|
|
newAristoRocksDbCoreDbRef path
|
|
|
|
|
|
|
|
else:
|
|
|
|
{.error: "Unsupported dbType for persistent newCoreDbRef()".}
|
2023-08-04 11:10:09 +00:00
|
|
|
|
2023-11-16 20:53:44 +00:00
|
|
|
proc newCoreDbRef*(
|
|
|
|
dbType: static[CoreDbType]; # Database type symbol
|
|
|
|
path: string; # Storage path for database
|
|
|
|
qidLayout: QidLayoutRef; # Optional for `Aristo`, ignored by others
|
|
|
|
): CoreDbRef =
|
|
|
|
## Constructor for persistent type DB
|
|
|
|
##
|
|
|
|
## Note: Using legacy notation `newCoreDbRef()` rather than
|
|
|
|
## `CoreDbRef.init()` because of compiler coughing.
|
2024-01-31 11:55:30 +00:00
|
|
|
when dbBackend == rocksdb:
|
|
|
|
when dbType == AristoDbRocks:
|
|
|
|
newAristoRocksDbCoreDbRef(path, qlr)
|
|
|
|
|
|
|
|
else:
|
|
|
|
{.error: "Unsupported dbType for persistent newCoreDbRef()" &
|
|
|
|
" with qidLayout argument".}
|
2023-11-16 20:53:44 +00:00
|
|
|
|
2023-08-04 11:10:09 +00:00
|
|
|
# End
|