82 lines
2.8 KiB
Nim
82 lines
2.8 KiB
Nim
# Nimbus - Portal Network
|
|
# Copyright (c) 2022-2023 Status Research & Development GmbH
|
|
# 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.
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
import
|
|
stew/[byteutils, io2, results], chronicles,
|
|
eth/[rlp, common/eth_types],
|
|
ncli/e2store,
|
|
../network/history/[history_content, accumulator]
|
|
|
|
export results
|
|
|
|
proc toString*(v: IoErrorCode): string =
|
|
try: ioErrorMsg(v)
|
|
except Exception as e: raiseAssert e.msg
|
|
|
|
# Reading SSZ data from files
|
|
|
|
proc readAccumulator*(file: string): Result[FinishedAccumulator, string] =
|
|
let encodedAccumulator = ? readAllFile(file).mapErr(toString)
|
|
|
|
try:
|
|
ok(SSZ.decode(encodedAccumulator, FinishedAccumulator))
|
|
except SszError as e:
|
|
err("Failed decoding accumulator: " & e.msg)
|
|
|
|
proc readEpochAccumulator*(file: string): Result[EpochAccumulator, string] =
|
|
let encodedAccumulator = ? readAllFile(file).mapErr(toString)
|
|
|
|
try:
|
|
ok(SSZ.decode(encodedAccumulator, EpochAccumulator))
|
|
except SszError as e:
|
|
err("Decoding epoch accumulator failed: " & e.msg)
|
|
|
|
proc readEpochAccumulatorCached*(file: string): Result[EpochAccumulatorCached, string] =
|
|
let encodedAccumulator = ? readAllFile(file).mapErr(toString)
|
|
|
|
try:
|
|
ok(SSZ.decode(encodedAccumulator, EpochAccumulatorCached))
|
|
except SszError as e:
|
|
err("Decoding epoch accumulator failed: " & e.msg)
|
|
|
|
# Reading data in e2s format
|
|
|
|
const
|
|
# Using the e2s format to store data, but without the specific structure
|
|
# like in an era file, as we currently don't really need that.
|
|
# See: https://github.com/status-im/nimbus-eth2/blob/stable/docs/e2store.md
|
|
# Added one type for now, with numbers not formally specified.
|
|
# Note:
|
|
# Snappy compression for `ExecutionBlockHeaderRecord` only helps for the
|
|
# first ~1M (?) block headers, after that there is no gain so we don't do it.
|
|
ExecutionBlockHeaderRecord* = [byte 0xFF, 0x00]
|
|
|
|
proc readBlockHeaders*(file: string): Result[seq[BlockHeader], string] =
|
|
let fh = ? openFile(file, {OpenFlags.Read}).mapErr(toString)
|
|
defer: discard closeFile(fh)
|
|
|
|
var data: seq[byte]
|
|
var blockHeaders: seq[BlockHeader]
|
|
while true:
|
|
let header = readRecord(fh, data).valueOr:
|
|
break
|
|
|
|
if header.typ == ExecutionBlockHeaderRecord:
|
|
let blockHeader =
|
|
try:
|
|
rlp.decode(data, BlockHeader)
|
|
except RlpError as e:
|
|
return err("Invalid block header in " & file & ": " & e.msg)
|
|
|
|
blockHeaders.add(blockHeader)
|
|
else:
|
|
warn "Skipping record, not a block header", typ = toHex(header.typ)
|
|
|
|
ok(blockHeaders)
|