mirror of
https://github.com/logos-storage/nim-datastore.git
synced 2026-01-03 14:13:09 +00:00
50 lines
1.5 KiB
Nim
50 lines
1.5 KiB
Nim
import pkg/questionable/results
|
|
import pkg/upraises
|
|
|
|
import std/algorithm
|
|
import std/options
|
|
import ./threads/databuffer
|
|
import ./threads/threadresult
|
|
import ./threads/semaphore
|
|
import ./key
|
|
import ./types
|
|
|
|
export databuffer, threadresult, semaphore, types
|
|
export upraises, results, SortOrder
|
|
|
|
type
|
|
KeyId* = object
|
|
## serialized Key ID, equivalent to `key.id()`
|
|
data*: DataBuffer
|
|
|
|
DbKey* = string | KeyId
|
|
DbVal* = seq[byte] | DataBuffer
|
|
|
|
DbBatchEntry* = tuple[key: string, data: seq[byte]] | tuple[key: KeyId, data: DataBuffer]
|
|
|
|
DbQuery* = object
|
|
key*: KeyId # Key to be queried
|
|
value*: bool # Flag to indicate if data should be returned
|
|
limit*: int # Max items to return - not available in all backends
|
|
offset*: int # Offset from which to start querying - not available in all backends
|
|
sort*: SortOrder # Sort order - not available in all backends
|
|
|
|
DbQueryResponse* = tuple[key: Option[KeyId], val: DataBuffer]
|
|
|
|
proc `$`*(id: KeyId): string = $(id.data)
|
|
|
|
proc new*(tp: typedesc[KeyId], id: cstring): KeyId =
|
|
KeyId(data: DataBuffer.new(id.pointer, 0, id.len()-1))
|
|
|
|
proc toDb*(key: Key): DbKey {.inline, raises: [].} =
|
|
let id: string = key.id()
|
|
let db = DataBuffer.new(id.len()+1) # include room for null for cstring compat
|
|
db.setData(id)
|
|
DbKey(data: db)
|
|
|
|
proc toKey*(key: DbKey): Key {.inline, raises: [].} =
|
|
Key.init(key.data).expect("expected valid key here for but got `" & $key.data & "`")
|
|
|
|
template toOpenArray*(x: DbKey): openArray[char] =
|
|
x.data.toOpenArray(char)
|