## 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. import std/options import std/tables import pkg/questionable import pkg/questionable/results import pkg/chronicles import pkg/chronos import pkg/libp2p # TODO: remove once exported by libp2p import pkg/libp2p/routing_record import pkg/libp2p/signed_envelope import ./chunker import ./blocktype as bt import ./manifest import ./stores/blockstore import ./blockexchange import ./streams import ./erasure logScope: topics = "dagger node" type DaggerError = object of CatchableError DaggerNodeRef* = ref object switch*: Switch networkId*: PeerID blockStore*: BlockStore engine*: BlockExcEngine erasure*: Erasure proc start*(node: DaggerNodeRef) {.async.} = await node.switch.start() await node.engine.start() await node.erasure.start() node.networkId = node.switch.peerInfo.peerId notice "Started dagger node", id = $node.networkId, addrs = node.switch.peerInfo.addrs proc stop*(node: DaggerNodeRef) {.async.} = trace "Stopping node" await node.engine.stop() await node.switch.stop() await node.erasure.stop() proc findPeer*( node: DaggerNodeRef, peerId: PeerID): Future[?!PeerRecord] {.async.} = discard proc connect*( node: DaggerNodeRef, peerId: PeerID, addrs: seq[MultiAddress]): Future[void] = node.switch.connect(peerId, addrs) proc retrieve*( node: DaggerNodeRef, cid: Cid): Future[?!LPStream] {.async.} = trace "Received retrieval request", cid without blk =? await node.blockStore.getBlock(cid): return failure( newException(DaggerError, "Couldn't retrieve block for Cid!")) without mc =? blk.cid.contentType(): return failure( newException(DaggerError, "Couldn't identify Cid!")) # if we got a manifest, stream the blocks if $mc in ManifestContainers: trace "Retrieving data set", cid, mc without manifest =? Manifest.decode(blk.data, ManifestContainers[$mc]): return failure("Unable to construct manifest!") if manifest.protected: proc erasureJob(): Future[void] {.async.} = try: without res =? (await node.erasure.decode(manifest)), error: # spawn an erasure decoding job trace "Unable to erasure decode manigest", cid, exc = error.msg except CatchableError as exc: trace "Exception decoding manifest", cid asyncSpawn erasureJob() return LPStream(StoreStream.new(node.blockStore, manifest)).success let stream = BufferStream.new() proc streamOneBlock(): Future[void] {.async.} = try: await stream.pushData(blk.data) except CatchableError as exc: trace "Unable to send block", cid discard finally: await stream.pushEof() asyncSpawn streamOneBlock() return LPStream(stream).success() proc store*( node: DaggerNodeRef, stream: LPStream): Future[?!Cid] {.async.} = trace "Storing data" without var blockManifest =? Manifest.new(): return failure("Unable to create Block Set") let chunker = LPStreamChunker.new(stream, chunkSize = BlockSize) try: while ( let chunk = await chunker.getBytes(); chunk.len > 0): trace "Got data from stream", len = chunk.len without blk =? bt.Block.new(chunk): return failure("Unable to init block from chunk!") blockManifest.add(blk.cid) if not (await node.blockStore.putBlock(blk)): # trace "Unable to store block", cid = blk.cid return failure("Unable to store block " & $blk.cid) except CancelledError as exc: raise exc except CatchableError as exc: return failure(exc.msg) finally: await stream.close() # Generate manifest without data =? blockManifest.encode(): return failure( newException(DaggerError, "Could not generate dataset manifest!")) # Store as a dag-pb block without manifest =? bt.Block.new(data = data, codec = DagPBCodec): trace "Unable to init block from manifest data!" return failure("Unable to init block from manifest data!") if not (await node.blockStore.putBlock(manifest)): trace "Unable to store manifest", cid = manifest.cid return failure("Unable to store manifest " & $manifest.cid) without cid =? blockManifest.cid, error: trace "Unable to generate manifest Cid!", exc = error.msg return failure(error.msg) trace "Stored data", manifestCid = manifest.cid, contentCid = cid, blocks = blockManifest.len return manifest.cid.success proc requestStorage*( self: DaggerNodeRef, cid: Cid, ppb: uint, duration: Duration, nodes: uint, tolerance: uint, autoRenew: bool = false): Future[?!Cid] {.async.} = ## Initiate a request for storage sequence, this might ## be a multistep procedure. ## ## Roughly the flow is as follows: ## - Get the original cid from the store (should have already been uploaded) ## - Erasure code it according to the nodes and tolerance parameters ## - Run the PoR setup on the erasure dataset ## - Call into the marketplace and purchasing contracts ## trace "Received a request for storage!", cid, ppb, duration, nodes, tolerance, autoRenew without blk =? (await self.blockStore.getBlock(cid)), error: trace "Unable to retrieve manifest block", cid return failure(error) without mc =? blk.cid.contentType(): trace "Couldn't identify Cid!", cid return failure("Couldn't identify Cid! " & $cid) # if we got a manifest, stream the blocks if $mc notin ManifestContainers: trace "Not a manifest type!", cid, mc return failure("Not a manifest type!") without var manifest =? Manifest.decode(blk.data), error: trace "Unable to decode manifest from block", cid return failure(error) # Erasure code the dataset according to provided parameters without encoded =? (await self.erasure.encode(manifest, nodes.int, tolerance.int)), error: trace "Unable to erasure code dataset", cid return failure(error) without encodedData =? encoded.encode(), error: trace "Unable to encode protected manifest" return failure(error) without encodedBlk =? bt.Block.new(data = encodedData, codec = DagPBCodec), error: trace "Unable to create block from encoded manifest" return failure(error) if not (await self.blockStore.putBlock(encodedBlk)): trace "Unable to store encoded manifest block", cid = encodedBlk.cid return failure("Unable to store encoded manifest block") return encodedBlk.cid.success proc new*( T: type DaggerNodeRef, switch: Switch, store: BlockStore, engine: BlockExcEngine, erasure: Erasure): T = T( switch: switch, blockStore: store, engine: engine, erasure: erasure)