nim-datastore/datastore/sharedds.nim
2023-09-07 17:31:11 -06:00

118 lines
2.5 KiB
Nim

import std/tables
import pkg/chronos
import pkg/chronos/threadsync
import pkg/questionable
import pkg/questionable/results
import pkg/upraises
import pkg/taskpools
import ./key
import ./query
import ./datastore
import ./threadbackend
import threading/smartptrs
import pretty
export key, query, ThreadBackend
push: {.upraises: [].}
type
SharedDatastore* = ref object of Datastore
# stores*: Table[Key, SharedDatastore]
tds: ThreadDatastorePtr
method has*(
self: SharedDatastore,
key: Key
): Future[?!bool] {.async.} =
return success(true)
method delete*(
self: SharedDatastore,
key: Key
): Future[?!void] {.async.} =
return success()
method delete*(
self: SharedDatastore,
keys: seq[Key]
): Future[?!void] {.async.} =
return success()
method get*(
self: SharedDatastore,
key: Key
): Future[?!seq[byte]] {.async.} =
var res = newThreadResult(DataBuffer)
res[].signal = ThreadSignalPtr.new().valueOr:
return failure newException(DatastoreError, "error creating signal")
get(res, self.tds, key)
await wait(res[].signal)
res[].signal.close()
echo "\nSharedDataStore:put:value: ", res[].repr
let data = res[].value.toSeq(byte)
return success(data)
method put*(
self: SharedDatastore,
key: Key,
data: seq[byte]
): Future[?!void] {.async.} =
var res = newThreadResult(void)
res[].signal = ThreadSignalPtr.new().valueOr:
return failure newException(DatastoreError, "error creating signal")
put(res, self.tds, key, data)
await wait(res[].signal)
res[].signal.close()
echo "\nSharedDataStore:put:value: ", res[].repr
return success()
method put*(
self: SharedDatastore,
batch: seq[BatchEntry]
): Future[?!void] {.async.} =
raiseAssert("Not implemented!")
method close*(
self: SharedDatastore
): Future[?!void] {.async.} =
# TODO: how to handle failed close?
return success()
proc newSharedDataStore*(
# T: typedesc[SharedDatastore],
backend: ThreadBackend,
): Future[?!SharedDatastore] {.async.} =
var
self = SharedDatastore()
res = newThreadResult(ThreadDatastorePtr)
res[].value = newSharedPtr(ThreadDatastore)
res[].signal = ThreadSignalPtr.new().valueOr:
return failure newException(DatastoreError, "error creating signal")
echo "\nnewDataStore: threadId:", getThreadId()
res.createThreadDatastore(backend)
await wait(res[].signal)
res[].signal.close()
echo "\nnewSharedDataStore:state: ", res[].state.repr
echo "\nnewSharedDataStore:value: ", res[].value[].backend.repr
self.tds = res[].value
success self