2022-03-14 16:06:36 +00:00
|
|
|
## Nim-Dagger
|
|
|
|
## Copyright (c) 2022 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.
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import std/tables
|
|
|
|
import pkg/libp2p/protobuf/minprotobuf
|
|
|
|
import pkg/libp2p
|
|
|
|
import pkg/questionable
|
|
|
|
import pkg/questionable/results
|
|
|
|
import pkg/chronicles
|
|
|
|
|
|
|
|
import ../errors
|
2022-03-15 18:47:31 +00:00
|
|
|
import ../blocktype
|
2022-03-14 16:06:36 +00:00
|
|
|
|
2022-03-15 18:47:31 +00:00
|
|
|
template EmptyDigests: untyped =
|
|
|
|
var
|
|
|
|
emptyDigests {.global, threadvar.}:
|
|
|
|
array[CIDv0..CIDv1, Table[MultiCodec, MultiHash]]
|
|
|
|
|
|
|
|
once:
|
|
|
|
emptyDigests = [
|
|
|
|
CIDv0: {
|
|
|
|
multiCodec("sha2-256"): Cid
|
|
|
|
.init("bafybeihdwdcefgh4dqkjv67uzcmw7ojee6xedzdetojuzjevtenxquvyku")
|
|
|
|
.get()
|
|
|
|
.mhash
|
|
|
|
.get()
|
|
|
|
}.toTable,
|
|
|
|
CIDv1: {
|
|
|
|
multiCodec("sha2-256"): Cid
|
|
|
|
.init("QmdfTbBqBPQ7VNxZEYEj14VmRuZBkqFbiwReogJgS1zR1n")
|
|
|
|
.get()
|
|
|
|
.mhash
|
|
|
|
.get()
|
|
|
|
}.toTable,
|
|
|
|
]
|
|
|
|
|
|
|
|
emptyDigests
|
|
|
|
|
|
|
|
type
|
|
|
|
Manifest* = object of RootObj
|
|
|
|
rootHash*: ?Cid # root (tree) hash of the contained data set
|
|
|
|
blockSize*: int # size of each contained block (might not be needed if blocks are len-prefixed)
|
|
|
|
blocks*: seq[Cid] # block Cid
|
|
|
|
version*: CidVersion # Cid version
|
|
|
|
hcodec*: MultiCodec # Multihash codec
|
|
|
|
codec*: MultiCodec # Data set codec
|
2022-03-14 16:06:36 +00:00
|
|
|
|
|
|
|
func len*(self: Manifest): int =
|
|
|
|
self.blocks.len
|
|
|
|
|
2022-03-15 18:47:31 +00:00
|
|
|
func size*(self: Manifest): int =
|
|
|
|
self.blocks.len * self.blockSize
|
|
|
|
|
2022-03-14 16:06:36 +00:00
|
|
|
func `[]`*(self: Manifest, i: Natural): Cid =
|
|
|
|
self.blocks[i]
|
|
|
|
|
|
|
|
func `[]=`*(self: var Manifest, i: Natural, item: Cid) =
|
2022-03-15 18:47:31 +00:00
|
|
|
self.rootHash = Cid.none
|
2022-03-14 16:06:36 +00:00
|
|
|
self.blocks[i] = item
|
|
|
|
|
|
|
|
func `[]`*(self: Manifest, i: BackwardsIndex): Cid =
|
|
|
|
self.blocks[self.len - i.int]
|
|
|
|
|
|
|
|
func `[]=`*(self: var Manifest, i: BackwardsIndex, item: Cid) =
|
2022-03-15 18:47:31 +00:00
|
|
|
self.rootHash = Cid.none
|
2022-03-14 16:06:36 +00:00
|
|
|
self.blocks[self.len - i.int] = item
|
|
|
|
|
|
|
|
proc add*(self: var Manifest, cid: Cid) =
|
|
|
|
self.rootHash = Cid.none
|
|
|
|
trace "Adding cid to manifest", cid
|
|
|
|
self.blocks.add(cid)
|
|
|
|
|
|
|
|
iterator items*(self: Manifest): Cid =
|
|
|
|
for b in self.blocks:
|
|
|
|
yield b
|
|
|
|
|
|
|
|
func contains*(self: Manifest, cid: Cid): bool =
|
|
|
|
cid in self.blocks
|
|
|
|
|
|
|
|
template hashBytes(mh: MultiHash): seq[byte] =
|
|
|
|
## get the hash bytes of a multihash object
|
|
|
|
##
|
|
|
|
|
|
|
|
mh.data.buffer[mh.dpos..(mh.dpos + mh.size - 1)]
|
|
|
|
|
2022-03-15 18:47:31 +00:00
|
|
|
proc makeRoot*(self: var Manifest): ?!void =
|
|
|
|
## Create a tree hash root of the contained
|
|
|
|
## block hashes
|
|
|
|
##
|
|
|
|
|
2022-03-14 16:06:36 +00:00
|
|
|
var
|
|
|
|
stack: seq[MultiHash]
|
|
|
|
|
|
|
|
for cid in self:
|
|
|
|
stack.add(? cid.mhash.mapFailure)
|
|
|
|
|
|
|
|
while stack.len > 1:
|
|
|
|
let
|
|
|
|
(b1, b2) = (stack.pop(), stack.pop())
|
|
|
|
mh = ? MultiHash.digest(
|
|
|
|
$self.hcodec,
|
|
|
|
(b1.hashBytes() & b2.hashBytes()))
|
|
|
|
.mapFailure
|
|
|
|
stack.add(mh)
|
|
|
|
|
|
|
|
if stack.len == 1:
|
|
|
|
let cid = ? Cid.init(
|
|
|
|
self.version,
|
|
|
|
self.codec,
|
|
|
|
(? EmptyDigests[self.version][self.hcodec].catch))
|
|
|
|
.mapFailure
|
|
|
|
|
|
|
|
self.rootHash = cid.some
|
|
|
|
|
|
|
|
ok()
|
|
|
|
|
|
|
|
proc cid*(self: var Manifest): ?!Cid =
|
|
|
|
## Generate a root hash using the treehash algorithm
|
|
|
|
##
|
|
|
|
|
|
|
|
if self.rootHash.isNone:
|
|
|
|
? self.makeRoot()
|
|
|
|
|
|
|
|
(!self.rootHash).success
|
|
|
|
|
|
|
|
proc init*(
|
|
|
|
T: type Manifest,
|
|
|
|
blocks: openArray[Cid] = [],
|
|
|
|
version = CIDv1,
|
|
|
|
hcodec = multiCodec("sha2-256"),
|
2022-03-15 18:47:31 +00:00
|
|
|
codec = multiCodec("raw"),
|
|
|
|
blockSize = BlockSize): ?!T =
|
2022-03-14 16:06:36 +00:00
|
|
|
## Create a manifest using array of `Cid`s
|
|
|
|
##
|
|
|
|
|
|
|
|
if hcodec notin EmptyDigests[version]:
|
|
|
|
return failure("Unsupported manifest hash codec!")
|
|
|
|
|
|
|
|
T(
|
|
|
|
blocks: @blocks,
|
|
|
|
version: version,
|
|
|
|
codec: codec,
|
|
|
|
hcodec: hcodec,
|
2022-03-15 18:47:31 +00:00
|
|
|
blockSize: blockSize
|
2022-03-14 16:06:36 +00:00
|
|
|
).success
|
2022-03-15 18:47:31 +00:00
|
|
|
|
|
|
|
proc init*(
|
|
|
|
T: type Manifest,
|
|
|
|
data: openArray[byte]): ?!T =
|
|
|
|
Manifest.decode(data)
|