2018-02-03 23:55:41 +00:00
|
|
|
# Nim-RocksDB
|
|
|
|
# Copyright 2018 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)
|
|
|
|
# * GPL license, version 2.0, ([LICENSE-GPLv2](LICENSE-GPLv2) or https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
|
|
|
|
#
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-07-04 12:09:03 +00:00
|
|
|
import ../rocksdb,
|
2018-02-03 23:55:41 +00:00
|
|
|
unittest, cpuinfo
|
|
|
|
|
|
|
|
suite "RocksDB C wrapper tests":
|
|
|
|
test "Simple create-update-close example":
|
|
|
|
const
|
|
|
|
dbPath: cstring = "/tmp/rocksdb_simple_example"
|
|
|
|
dbBackupPath: cstring = "/tmp/rocksdb_simple_example_backup"
|
|
|
|
|
|
|
|
var
|
2018-07-30 09:25:27 +00:00
|
|
|
db: rocksdb_t
|
|
|
|
be: rocksdb_backup_engine_t
|
2018-02-03 23:55:41 +00:00
|
|
|
options = rocksdb_options_create()
|
|
|
|
|
|
|
|
let cpus = countProcessors()
|
|
|
|
rocksdb_options_increase_parallelism(options, cpus.int32)
|
2018-08-16 02:08:03 +00:00
|
|
|
# This requires snappy - disabled because rocksdb is not always compiled with
|
|
|
|
# snappy support (for example Fedora 28, certain Ubuntu versions)
|
|
|
|
# rocksdb_options_optimize_level_style_compaction(options, 0);
|
2018-02-03 23:55:41 +00:00
|
|
|
# create the DB if it's not already present
|
|
|
|
rocksdb_options_set_create_if_missing(options, 1);
|
|
|
|
|
|
|
|
# open DB
|
2018-08-16 01:55:54 +00:00
|
|
|
var err: cstring # memory leak: example code does not free error string!
|
|
|
|
db = rocksdb_open(options, dbPath, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
|
|
|
|
# open Backup Engine that we will use for backing up our database
|
2018-08-16 02:16:57 +00:00
|
|
|
be = rocksdb_backup_engine_open(options, dbBackupPath, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
|
|
|
|
# Put key-value
|
|
|
|
var writeOptions = rocksdb_writeoptions_create()
|
2018-02-05 21:19:33 +00:00
|
|
|
let key = "key"
|
|
|
|
let put_value = "value"
|
2018-08-16 02:16:57 +00:00
|
|
|
rocksdb_put(db, writeOptions, key.cstring, key.len, put_value.cstring, put_value.len, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
|
|
|
|
# Get value
|
|
|
|
var readOptions = rocksdb_readoptions_create()
|
|
|
|
var len: csize
|
2018-08-16 02:16:57 +00:00
|
|
|
let raw_value = rocksdb_get(db, readOptions, key, key.len, addr len, err.addr) # Important: rocksdb_get is not null-terminated
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
2018-02-05 21:19:33 +00:00
|
|
|
|
|
|
|
# Copy it to a regular Nim string (copyMem workaround because non-null terminated)
|
|
|
|
var get_value = newString(len)
|
|
|
|
copyMem(addr get_value[0], unsafeAddr raw_value[0], len * sizeof(char))
|
|
|
|
|
|
|
|
check: $get_value == $put_value
|
2018-02-03 23:55:41 +00:00
|
|
|
|
|
|
|
# create new backup in a directory specified by DBBackupPath
|
2018-08-16 02:16:57 +00:00
|
|
|
rocksdb_backup_engine_create_new_backup(be, db, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
|
|
|
|
rocksdb_close(db)
|
|
|
|
|
|
|
|
# If something is wrong, you might want to restore data from last backup
|
|
|
|
var restoreOptions = rocksdb_restore_options_create()
|
|
|
|
rocksdb_backup_engine_restore_db_from_latest_backup(be, dbPath, dbPath,
|
2018-08-16 02:16:57 +00:00
|
|
|
restoreOptions, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
rocksdb_restore_options_destroy(restore_options)
|
|
|
|
|
2018-08-16 01:55:54 +00:00
|
|
|
db = rocksdb_open(options, dbPath, err.addr)
|
2018-02-03 23:55:41 +00:00
|
|
|
check: err.isNil
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rocksdb_writeoptions_destroy(writeOptions)
|
|
|
|
rocksdb_readoptions_destroy(readOptions)
|
|
|
|
rocksdb_options_destroy(options)
|
|
|
|
rocksdb_backup_engine_close(be)
|
|
|
|
rocksdb_close(db)
|