mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-31 03:33:08 +00:00
44 lines
1.5 KiB
Nim
44 lines
1.5 KiB
Nim
import std/bitops
|
|
import std/sugar
|
|
|
|
import pkg/chronos
|
|
import pkg/chronicles
|
|
import pkg/libp2p
|
|
import pkg/questionable
|
|
import pkg/questionable/results
|
|
|
|
import ../contracts/requests
|
|
import ../stores/blockstore
|
|
import ../manifest
|
|
|
|
proc getManifestForSlot*(slot: Slot, blockstore: BlockStore): Future[?!Manifest] {.async.} =
|
|
without manifestBlockCid =? Cid.init(slot.request.content.cid).mapFailure, err:
|
|
error "Unable to init CID from slot.content.cid"
|
|
return failure err
|
|
|
|
without manifestBlock =? await blockstore.getBlock(manifestBlockCid), err:
|
|
error "Failed to fetch manifest block", cid = manifestBlockCid
|
|
return failure err
|
|
|
|
without manifest =? Manifest.decode(manifestBlock):
|
|
error "Unable to decode manifest"
|
|
return failure("Unable to decode manifest")
|
|
|
|
return success(manifest)
|
|
|
|
proc getIndexForSlotBlock*(slot: Slot, blockSize: NBytes, slotBlockIndex: int): uint64 =
|
|
let
|
|
slotSize = slot.request.ask.slotSize.truncate(uint64)
|
|
blocksInSlot = slotSize div blockSize.uint64
|
|
slotIndex = slot.slotIndex.truncate(uint64)
|
|
|
|
return (slotIndex * blocksInSlot) + slotBlockIndex.uint64
|
|
|
|
proc getSlotBlock*(slot: Slot, blockstore: BlockStore, slotBlockIndex: int): Future[?!Block] {.async.} =
|
|
without manifest =? (await getManifestForSlot(slot, blockstore)), err:
|
|
error "Failed to get manifest for slot"
|
|
return failure(err)
|
|
|
|
let datasetIndex = getIndexForSlotBlock(slot, manifest.blockSize, slotBlockIndex)
|
|
return await blockstore.getBlock(manifest.treeCid, datasetIndex)
|