Bitcoin ABC  0.29.1
P2P Digital Currency
checkblock.cpp
Go to the documentation of this file.
1 // Copyright (c) 2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #include <bench/bench.h>
6 #include <bench/data.h>
7 
8 #include <chainparams.h>
9 #include <config.h>
10 #include <consensus/validation.h>
11 #include <streams.h>
12 #include <validation.h>
13 
14 // These are the two major time-sinks which happen after we have fully received
15 // a block off the wire, but before we can relay the block on to peers using
16 // compact block relay.
17 
21  std::byte a{0};
22  // Prevent compaction
23  stream.write({&a, 1});
24 
25  bench.unit("block").run([&] {
26  CBlock block;
27  stream >> block;
28  bool rewound = stream.Rewind(benchmark::data::block413567.size());
29  assert(rewound);
30  });
31 }
32 
36  std::byte a{0};
37  // Prevent compaction
38  stream.write({&a, 1});
39 
40  const Config &config = GetConfig();
41  const Consensus::Params params = config.GetChainParams().GetConsensus();
42  BlockValidationOptions options(config);
43  bench.unit("block").run([&] {
44  // Note that CBlock caches its checked state, so we need to recreate it
45  // here.
46  CBlock block;
47  stream >> block;
48  bool rewound = stream.Rewind(benchmark::data::block413567.size());
49  assert(rewound);
50 
51  BlockValidationState validationState;
52  bool checked = CheckBlock(block, validationState, params, options);
53  assert(checked);
54  });
55 }
56 
BENCHMARK(DeserializeBlockTest)
static void DeserializeAndCheckBlockTest(benchmark::Bench &bench)
Definition: checkblock.cpp:33
static void DeserializeBlockTest(benchmark::Bench &bench)
Definition: checkblock.cpp:18
Definition: block.h:60
const Consensus::Params & GetConsensus() const
Definition: chainparams.h:86
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:177
void write(Span< const value_type > src)
Definition: streams.h:379
bool Rewind(std::optional< size_type > n=std::nullopt)
Definition: streams.h:315
Definition: config.h:17
virtual const CChainParams & GetChainParams() const =0
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:616
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1183
Bench & unit(char const *unit)
Sets the operation unit.
const Config & GetConfig()
Definition: config.cpp:34
bool CheckBlock(const CCheckpointData &data, int nHeight, const BlockHash &hash)
Returns true if block passes checkpoint checks.
Definition: checkpoints.cpp:11
const std::vector< uint8_t > block413567
Definition: data.cpp:11
@ SER_NETWORK
Definition: serialize.h:152
Parameters that influence chain consensus.
Definition: params.h:34
assert(!tx.IsCoinBase())
static const int PROTOCOL_VERSION
network protocol versioning
Definition: version.h:11