2022-03-02 16:30:42 +00:00
|
|
|
## Nim-Dagger
|
|
|
|
## Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
|
2022-04-13 16:32:35 +00:00
|
|
|
import std/sequtils
|
2022-03-18 22:17:51 +00:00
|
|
|
import pkg/upraises
|
|
|
|
|
|
|
|
push: {.upraises: [].}
|
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
|
|
|
|
import std/options
|
|
|
|
|
|
|
|
import pkg/chronicles
|
|
|
|
import pkg/chronos
|
|
|
|
import pkg/libp2p
|
|
|
|
import pkg/lrucache
|
|
|
|
import pkg/questionable
|
|
|
|
import pkg/questionable/results
|
|
|
|
|
|
|
|
import ./blockstore
|
|
|
|
import ../chunker
|
|
|
|
import ../errors
|
|
|
|
|
|
|
|
export blockstore
|
|
|
|
|
|
|
|
logScope:
|
|
|
|
topics = "dagger cachestore"
|
|
|
|
|
|
|
|
type
|
|
|
|
CacheStore* = ref object of BlockStore
|
|
|
|
currentSize*: Natural # in bytes
|
|
|
|
size*: Positive # in bytes
|
|
|
|
cache: LruCache[Cid, Block]
|
|
|
|
|
|
|
|
InvalidBlockSize* = object of DaggerError
|
|
|
|
|
|
|
|
const
|
|
|
|
MiB* = 1024 * 1024 # bytes, 1 mebibyte = 1,048,576 bytes
|
|
|
|
DefaultCacheSizeMiB* = 100
|
|
|
|
DefaultCacheSize* = DefaultCacheSizeMiB * MiB # bytes
|
|
|
|
|
|
|
|
method getBlock*(
|
|
|
|
self: CacheStore,
|
|
|
|
cid: Cid): Future[?!Block] {.async.} =
|
|
|
|
## Get a block from the stores
|
|
|
|
##
|
|
|
|
|
2022-04-05 14:24:48 +00:00
|
|
|
trace "Getting block from cache", cid
|
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return cid.emptyBlock.success
|
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
return self.cache[cid].catch()
|
|
|
|
|
|
|
|
method hasBlock*(self: CacheStore, cid: Cid): bool =
|
|
|
|
## check if the block exists
|
|
|
|
##
|
|
|
|
|
2022-04-05 14:24:48 +00:00
|
|
|
trace "Checking for block presence in cache", cid
|
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return true
|
|
|
|
|
|
|
|
cid in self.cache
|
2022-03-02 16:30:42 +00:00
|
|
|
|
2022-05-12 20:02:30 +00:00
|
|
|
method listBlocks*(s: CacheStore, onBlock: OnBlock) {.async.} =
|
|
|
|
for cid in toSeq(s.cache.keys):
|
|
|
|
await onBlock(cid)
|
2022-04-13 16:32:35 +00:00
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
func putBlockSync(self: CacheStore, blk: Block): bool =
|
|
|
|
|
|
|
|
let blkSize = blk.data.len # in bytes
|
|
|
|
|
|
|
|
if blkSize > self.size:
|
2022-04-05 14:24:48 +00:00
|
|
|
trace "Block size is larger than cache size", blk = blkSize, cache = self.size
|
2022-03-02 16:30:42 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
while self.currentSize + blkSize > self.size:
|
|
|
|
try:
|
|
|
|
let removed = self.cache.removeLru()
|
|
|
|
self.currentSize -= removed.data.len
|
2022-04-05 14:24:48 +00:00
|
|
|
except EmptyLruCacheError as exc:
|
2022-03-02 16:30:42 +00:00
|
|
|
# if the cache is empty, can't remove anything, so break and add item
|
|
|
|
# to the cache
|
2022-04-05 14:24:48 +00:00
|
|
|
trace "Exception puting block to cache", exc = exc.msg
|
2022-03-02 16:30:42 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
self.cache[blk.cid] = blk
|
|
|
|
self.currentSize += blkSize
|
|
|
|
return true
|
|
|
|
|
|
|
|
method putBlock*(
|
|
|
|
self: CacheStore,
|
|
|
|
blk: Block): Future[bool] {.async.} =
|
|
|
|
## Put a block to the blockstore
|
|
|
|
##
|
2022-04-05 14:24:48 +00:00
|
|
|
|
|
|
|
trace "Storing block in cache", cid = blk.cid
|
|
|
|
if blk.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return true
|
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
return self.putBlockSync(blk)
|
|
|
|
|
|
|
|
method delBlock*(
|
|
|
|
self: CacheStore,
|
|
|
|
cid: Cid): Future[bool] {.async.} =
|
|
|
|
## delete a block/s from the block store
|
|
|
|
##
|
|
|
|
|
2022-04-05 14:24:48 +00:00
|
|
|
trace "Deleting block from cache", cid
|
|
|
|
if cid.isEmpty:
|
|
|
|
trace "Empty block, ignoring"
|
|
|
|
return true
|
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
try:
|
|
|
|
let removed = self.cache.del(cid)
|
|
|
|
if removed.isSome:
|
|
|
|
self.currentSize -= removed.get.data.len
|
|
|
|
return true
|
|
|
|
return false
|
|
|
|
except EmptyLruCacheError:
|
|
|
|
return false
|
|
|
|
|
|
|
|
func new*(
|
|
|
|
_: type CacheStore,
|
|
|
|
blocks: openArray[Block] = [],
|
|
|
|
cacheSize: Positive = DefaultCacheSize, # in bytes
|
|
|
|
chunkSize: Positive = DefaultChunkSize # in bytes
|
|
|
|
): CacheStore {.raises: [Defect, ValueError].} =
|
|
|
|
|
|
|
|
if cacheSize < chunkSize:
|
|
|
|
raise newException(ValueError, "cacheSize cannot be less than chunkSize")
|
|
|
|
|
|
|
|
var currentSize = 0
|
|
|
|
let
|
|
|
|
size = cacheSize div chunkSize
|
|
|
|
cache = newLruCache[Cid, Block](size)
|
|
|
|
store = CacheStore(
|
|
|
|
cache: cache,
|
|
|
|
currentSize: currentSize,
|
2022-03-17 13:56:46 +00:00
|
|
|
size: cacheSize)
|
2022-03-02 16:30:42 +00:00
|
|
|
|
|
|
|
for blk in blocks:
|
|
|
|
discard store.putBlockSync(blk)
|
|
|
|
|
|
|
|
return store
|