2023-09-12 18:44:45 +00:00
|
|
|
# nimbus-eth1
|
2024-03-05 04:54:42 +00:00
|
|
|
# Copyright (c) 2023-2024 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
|
2024-04-16 20:39:11 +00:00
|
|
|
store*: ColFamilyReadWrite ## Rocks DB database handler
|
|
|
|
session*: WriteBatchRef ## For batched `put()`
|
2023-09-12 18:44:45 +00:00
|
|
|
basePath*: string ## Database directory
|
|
|
|
|
|
|
|
const
|
2024-04-16 20:39:11 +00:00
|
|
|
KvtFamily* = "Kvt" ## RocksDB column family
|
|
|
|
BaseFolder* = "nimbus" ## Same as for Legacy DB
|
|
|
|
DataFolder* = "kvt" ## Legacy DB has "data"
|
2023-11-20 20:22:27 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func baseDir*(rdb: RdbInst): string =
|
|
|
|
rdb.basePath / BaseFolder
|
|
|
|
|
|
|
|
func dataDir*(rdb: RdbInst): string =
|
|
|
|
rdb.baseDir / DataFolder
|
|
|
|
|
|
|
|
|
2024-04-16 20:39:11 +00:00
|
|
|
template logTxt(info: static[string]): static[string] =
|
|
|
|
"RocksDB/" & info
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|