2021-10-09 11:22:03 +00:00
|
|
|
# Nimbus
|
2022-04-13 09:17:07 +00:00
|
|
|
# Copyright (c) 2021-2022 Status Research & Development GmbH
|
2021-10-09 11:22:03 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# https://github.com/ethereum/portal-network-specs/blob/master/history-network.md#content-keys-and-values
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
|
|
|
std/options,
|
2022-04-13 09:17:07 +00:00
|
|
|
nimcrypto/[sha2, hash], stew/byteutils, stint,
|
2021-10-23 12:28:12 +00:00
|
|
|
ssz_serialization,
|
2021-10-09 11:22:03 +00:00
|
|
|
../../common/common_types
|
|
|
|
|
|
|
|
export ssz_serialization, common_types
|
|
|
|
|
|
|
|
type
|
|
|
|
ContentType* = enum
|
2022-01-05 08:49:49 +00:00
|
|
|
blockHeader = 0x00
|
|
|
|
blockBody = 0x01
|
|
|
|
receipts = 0x02
|
2021-10-09 11:22:03 +00:00
|
|
|
|
2022-01-05 08:49:49 +00:00
|
|
|
ContentKeyType* = object
|
2021-10-09 11:22:03 +00:00
|
|
|
chainId*: uint16
|
|
|
|
blockHash*: BlockHash
|
|
|
|
|
2022-01-05 08:49:49 +00:00
|
|
|
ContentKey* = object
|
|
|
|
case contentType*: ContentType
|
|
|
|
of blockHeader:
|
|
|
|
blockHeaderKey*: ContentKeyType
|
|
|
|
of blockBody:
|
|
|
|
blockBodyKey*: ContentKeyType
|
|
|
|
of receipts:
|
|
|
|
receiptsKey*: ContentKeyType
|
2021-10-09 11:22:03 +00:00
|
|
|
|
|
|
|
func encode*(contentKey: ContentKey): ByteList =
|
2021-10-22 15:49:23 +00:00
|
|
|
ByteList.init(SSZ.encode(contentKey))
|
2021-10-09 11:22:03 +00:00
|
|
|
|
|
|
|
func decode*(contentKey: ByteList): Option[ContentKey] =
|
|
|
|
try:
|
|
|
|
some(SSZ.decode(contentKey.asSeq(), ContentKey))
|
|
|
|
except SszError:
|
|
|
|
return none[ContentKey]()
|
|
|
|
|
|
|
|
func toContentId*(contentKey: ByteList): ContentId =
|
2022-05-24 11:27:22 +00:00
|
|
|
# TODO: Should we try to parse the content key here for invalid ones?
|
2021-10-09 11:22:03 +00:00
|
|
|
let idHash = sha2.sha_256.digest(contentKey.asSeq())
|
|
|
|
readUintBE[256](idHash.data)
|
|
|
|
|
|
|
|
func toContentId*(contentKey: ContentKey): ContentId =
|
|
|
|
toContentId(encode(contentKey))
|
2022-04-13 09:17:07 +00:00
|
|
|
|
|
|
|
func `$`*(x: BlockHash): string =
|
|
|
|
"0x" & x.data.toHex()
|
|
|
|
|
|
|
|
func `$`*(x: ContentKey): string =
|
|
|
|
let key =
|
|
|
|
case x.contentType:
|
|
|
|
of blockHeader:
|
|
|
|
x.blockHeaderKey
|
|
|
|
of blockBody:
|
|
|
|
x.blockBodyKey
|
|
|
|
of receipts:
|
|
|
|
x.receiptsKey
|
|
|
|
|
|
|
|
"(contentType: " & $x.contentType &
|
|
|
|
", blockHash: " & $key.blockHash &
|
|
|
|
", chainId: " & $key.chainId & ")"
|