2022-05-19 19:56:03 +00:00
|
|
|
## Nim-Codex
|
2022-01-10 15:32:56 +00:00
|
|
|
## 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-03-18 22:17:51 +00:00
|
|
|
import pkg/upraises
|
|
|
|
|
|
|
|
push: {.upraises: [].}
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
import pkg/chronicles
|
|
|
|
import pkg/chronos
|
|
|
|
import pkg/libp2p
|
|
|
|
|
|
|
|
import ../blocktype as bt
|
|
|
|
import ../utils/asyncheapqueue
|
2023-11-06 08:10:30 +00:00
|
|
|
import ../clock
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
import ./blockstore
|
2022-05-19 02:29:15 +00:00
|
|
|
import ../blockexchange
|
2022-01-10 15:32:56 +00:00
|
|
|
|
2022-05-19 02:29:15 +00:00
|
|
|
export blockstore, blockexchange, asyncheapqueue
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
logScope:
|
2022-05-19 19:56:03 +00:00
|
|
|
topics = "codex networkstore"
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
NetworkStore* = ref object of BlockStore
|
|
|
|
engine*: BlockExcEngine # blockexc decision engine
|
|
|
|
localStore*: BlockStore # local block store
|
|
|
|
|
2022-08-19 00:56:36 +00:00
|
|
|
method getBlock*(self: NetworkStore, cid: Cid): Future[?!bt.Block] {.async.} =
|
|
|
|
trace "Getting block from local store or network", cid
|
2022-07-28 00:39:17 +00:00
|
|
|
|
2022-08-19 00:56:36 +00:00
|
|
|
without blk =? await self.localStore.getBlock(cid), error:
|
|
|
|
if not (error of BlockNotFoundError): return failure error
|
|
|
|
trace "Block not in local store", cid
|
2023-07-18 05:50:47 +00:00
|
|
|
|
|
|
|
without newBlock =? (await self.engine.requestBlock(cid)).catch, error:
|
|
|
|
trace "Unable to get block from exchange engine", cid
|
|
|
|
return failure error
|
|
|
|
|
|
|
|
return success newBlock
|
2022-08-19 00:56:36 +00:00
|
|
|
|
|
|
|
return success blk
|
2022-07-28 00:39:17 +00:00
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
method putBlock*(
|
2023-06-22 15:11:18 +00:00
|
|
|
self: NetworkStore,
|
|
|
|
blk: bt.Block,
|
|
|
|
ttl = Duration.none
|
|
|
|
): Future[?!void] {.async.} =
|
2022-07-28 00:39:17 +00:00
|
|
|
## Store block locally and notify the network
|
2022-04-05 14:24:48 +00:00
|
|
|
##
|
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
trace "Puting block into network store", cid = blk.cid
|
2022-01-10 15:32:56 +00:00
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
let res = await self.localStore.putBlock(blk, ttl)
|
2022-07-28 00:39:17 +00:00
|
|
|
if res.isErr:
|
|
|
|
return res
|
2022-01-10 15:32:56 +00:00
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
await self.engine.resolveBlocks(@[blk])
|
|
|
|
return success()
|
2022-01-10 15:32:56 +00:00
|
|
|
|
2023-11-06 08:10:30 +00:00
|
|
|
method ensureExpiry*(
|
|
|
|
self: NetworkStore,
|
|
|
|
cid: Cid,
|
|
|
|
expiry: SecondsSince1970
|
|
|
|
): Future[?!void] {.async.} =
|
|
|
|
## Ensure that block's assosicated expiry is at least given timestamp
|
|
|
|
## If the current expiry is lower then it is updated to the given one, otherwise it is left intact
|
|
|
|
##
|
|
|
|
|
|
|
|
if (await self.localStore.hasBlock(cid)).tryGet:
|
|
|
|
return await self.localStore.ensureExpiry(cid, expiry)
|
|
|
|
else:
|
|
|
|
trace "Updating expiry - block not in local store", cid
|
|
|
|
|
|
|
|
return success()
|
|
|
|
|
2023-11-09 08:47:09 +00:00
|
|
|
method listBlocks*(
|
|
|
|
self: NetworkStore,
|
|
|
|
blockType = BlockType.Manifest): Future[?!BlocksIter] =
|
|
|
|
self.localStore.listBlocks(blockType)
|
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
method delBlock*(self: NetworkStore, cid: Cid): Future[?!void] =
|
2022-06-28 16:10:05 +00:00
|
|
|
## Delete a block from the blockstore
|
2022-01-10 15:32:56 +00:00
|
|
|
##
|
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
trace "Deleting block from network store", cid
|
2022-06-28 16:10:05 +00:00
|
|
|
return self.localStore.delBlock(cid)
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
{.pop.}
|
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
method hasBlock*(self: NetworkStore, cid: Cid): Future[?!bool] {.async.} =
|
2022-01-10 15:32:56 +00:00
|
|
|
## Check if the block exists in the blockstore
|
|
|
|
##
|
|
|
|
|
2022-07-28 00:39:17 +00:00
|
|
|
trace "Checking network store for block existence", cid
|
|
|
|
return await self.localStore.hasBlock(cid)
|
2022-01-10 15:32:56 +00:00
|
|
|
|
2022-07-22 23:38:49 +00:00
|
|
|
method close*(self: NetworkStore): Future[void] {.async.} =
|
|
|
|
## Close the underlying local blockstore
|
|
|
|
##
|
|
|
|
|
2022-12-03 00:00:55 +00:00
|
|
|
if not self.localStore.isNil:
|
|
|
|
await self.localStore.close
|
2022-07-22 23:38:49 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
proc new*(
|
|
|
|
T: type NetworkStore,
|
|
|
|
engine: BlockExcEngine,
|
2023-06-22 15:11:18 +00:00
|
|
|
localStore: BlockStore
|
|
|
|
): NetworkStore =
|
2023-11-06 08:10:30 +00:00
|
|
|
## Create new instance of a NetworkStore
|
|
|
|
##
|
2023-06-22 15:11:18 +00:00
|
|
|
NetworkStore(
|
2022-12-03 00:00:55 +00:00
|
|
|
localStore: localStore,
|
|
|
|
engine: engine)
|