/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v31.1
src/bench/readwriteblock.cpp
67 строк
2 KB
MarcoFalke
refactor: Use SpanReader over DataStream
06 фев 2026, 09:56
06 фев 2026, 09:56
fa0677d
Код
Авторство
О чём код?
// Copyright (c) 2023-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <bench/bench.h> #include <bench/data/block413567.raw.h> #include <flatfile.h> #include <node/blockstorage.h> #include <primitives/block.h> #include <primitives/transaction.h> #include <serialize.h> #include <span.h> #include <streams.h> #include <test/util/setup_common.h> #include <validation.h> #include <cassert> #include <cstdint> #include <memory> #include <vector> static CBlock CreateTestBlock() { CBlock block; SpanReader{benchmark::data::block413567} >> TX_WITH_WITNESS(block); return block; } static void WriteBlockBench(benchmark::Bench& bench) { const auto testing_setup{MakeNoLogFileContext<const TestingSetup>(ChainType::MAIN)}; auto& blockman{testing_setup->m_node.chainman->m_blockman}; const CBlock block{CreateTestBlock()}; bench.run([&] { const auto pos{blockman.WriteBlock(block, 413'567)}; assert(!pos.IsNull()); }); } static void ReadBlockBench(benchmark::Bench& bench) { const auto testing_setup{MakeNoLogFileContext<const TestingSetup>(ChainType::MAIN)}; auto& blockman{testing_setup->m_node.chainman->m_blockman}; const auto& test_block{CreateTestBlock()}; const auto& expected_hash{test_block.GetHash()}; const auto& pos{blockman.WriteBlock(test_block, 413'567)}; bench.run([&] { CBlock block; const auto success{blockman.ReadBlock(block, pos, expected_hash)}; assert(success); }); } static void ReadRawBlockBench(benchmark::Bench& bench) { const auto testing_setup{MakeNoLogFileContext<const TestingSetup>(ChainType::MAIN)}; auto& blockman{testing_setup->m_node.chainman->m_blockman}; const auto pos{blockman.WriteBlock(CreateTestBlock(), 413'567)}; bench.run([&] { const auto res{blockman.ReadRawBlock(pos)}; assert(res); }); } BENCHMARK(WriteBlockBench); BENCHMARK(ReadBlockBench); BENCHMARK(ReadRawBlockBench);