2023-09-12 18:44:45 +00:00
|
|
|
# nimbus-eth1
|
2023-11-24 22:16:21 +00:00
|
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
2023-09-12 18:44:45 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
## Rocks DB internal driver descriptor
|
|
|
|
## ===================================
|
|
|
|
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2023-11-20 20:22:27 +00:00
|
|
|
std/os,
|
2023-09-12 18:44:45 +00:00
|
|
|
rocksdb
|
|
|
|
|
|
|
|
type
|
|
|
|
RdbInst* = object
|
|
|
|
store*: RocksDBInstance ## Rocks DB database handler
|
|
|
|
basePath*: string ## Database directory
|
|
|
|
|
|
|
|
# Low level Rocks DB access for bulk store
|
|
|
|
envOpt*: rocksdb_envoptions_t
|
|
|
|
impOpt*: rocksdb_ingestexternalfileoptions_t
|
|
|
|
|
|
|
|
const
|
|
|
|
BaseFolder* = "nimbus" # Same as for Legacy DB
|
|
|
|
DataFolder* = "kvt" # Legacy DB has "data"
|
2023-11-20 20:22:27 +00:00
|
|
|
BackupFolder* = "kvt-history" # Legacy DB has "backups"
|
|
|
|
SstCache* = "bulkput" # Rocks DB bulk load file name in temp folder
|
|
|
|
TempFolder* = "tmp" # No `tmp` directory used with legacy DB
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func baseDir*(rdb: RdbInst): string =
|
|
|
|
rdb.basePath / BaseFolder
|
|
|
|
|
|
|
|
func dataDir*(rdb: RdbInst): string =
|
|
|
|
rdb.baseDir / DataFolder
|
|
|
|
|
|
|
|
func backupsDir*(rdb: RdbInst): string =
|
|
|
|
rdb.basePath / BaseFolder / BackupFolder
|
|
|
|
|
|
|
|
func cacheDir*(rdb: RdbInst): string =
|
|
|
|
rdb.dataDir / TempFolder
|
|
|
|
|
|
|
|
func sstFilePath*(rdb: RdbInst): string =
|
|
|
|
rdb.cacheDir / SstCache
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|