Bitcoin Core  27.99.0
P2P Digital Currency
chainstatemanager_args.cpp
Go to the documentation of this file.
1 // Copyright (c) 2022 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 
6 
7 #include <arith_uint256.h>
8 #include <common/args.h>
9 #include <common/system.h>
10 #include <logging.h>
11 #include <node/coins_view_args.h>
12 #include <node/database_args.h>
13 #include <tinyformat.h>
14 #include <uint256.h>
15 #include <util/result.h>
16 #include <util/strencodings.h>
17 #include <util/translation.h>
18 #include <validation.h>
19 
20 #include <algorithm>
21 #include <chrono>
22 #include <string>
23 
24 namespace node {
26 {
27  if (auto value{args.GetIntArg("-checkblockindex")}) {
28  // Interpret bare -checkblockindex argument as 1 instead of 0.
29  opts.check_block_index = args.GetArg("-checkblockindex")->empty() ? 1 : *value;
30  }
31 
32  if (auto value{args.GetBoolArg("-checkpoints")}) opts.checkpoints_enabled = *value;
33 
34  if (auto value{args.GetArg("-minimumchainwork")}) {
35  if (!IsHexNumber(*value)) {
36  return util::Error{strprintf(Untranslated("Invalid non-hex (%s) minimum chain work value specified"), *value)};
37  }
39  }
40 
41  if (auto value{args.GetArg("-assumevalid")}) opts.assumed_valid_block = uint256S(*value);
42 
43  if (auto value{args.GetIntArg("-maxtipage")}) opts.max_tip_age = std::chrono::seconds{*value};
44 
45  ReadDatabaseArgs(args, opts.block_tree_db);
46  ReadDatabaseArgs(args, opts.coins_db);
47  ReadCoinsViewArgs(args, opts.coins_view);
48 
49  int script_threads = args.GetIntArg("-par", DEFAULT_SCRIPTCHECK_THREADS);
50  if (script_threads <= 0) {
51  // -par=0 means autodetect (number of cores - 1 script threads)
52  // -par=-n means "leave n cores free" (number of cores - n - 1 script threads)
53  script_threads += GetNumCores();
54  }
55  // Subtract 1 because the main thread counts towards the par threads.
56  opts.worker_threads_num = std::clamp(script_threads - 1, 0, MAX_SCRIPTCHECK_THREADS);
57  LogPrintf("Script verification uses %d additional threads\n", opts.worker_threads_num);
58 
59  if (auto max_size = args.GetIntArg("-maxsigcachesize")) {
60  // 1. When supplied with a max_size of 0, both the signature cache and
61  // script execution cache create the minimum possible cache (2
62  // elements). Therefore, we can use 0 as a floor here.
63  // 2. Multiply first, divide after to avoid integer truncation.
64  size_t clamped_size_each = std::max<int64_t>(*max_size, 0) * (1 << 20) / 2;
65  opts.script_execution_cache_bytes = clamped_size_each;
66  opts.signature_cache_bytes = clamped_size_each;
67  }
68 
69  return {};
70 }
71 } // namespace node
arith_uint256 UintToArith256(const uint256 &a)
if(!SetupNetworking())
ArgsManager & args
Definition: bitcoind.cpp:270
static constexpr int DEFAULT_SCRIPTCHECK_THREADS
-par default (number of script-checking threads, 0 = auto)
static constexpr int MAX_SCRIPTCHECK_THREADS
Maximum number of dedicated script-checking threads allowed.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
Definition: args.cpp:480
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
Definition: args.cpp:455
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
Definition: args.cpp:505
int GetNumCores()
Return the number of cores available on the current system.
Definition: system.cpp:103
#define LogPrintf(...)
Definition: logging.h:244
Definition: messages.h:20
util::Result< void > ApplyArgsManOptions(const ArgsManager &args, BlockManager::Options &opts)
void ReadCoinsViewArgs(const ArgsManager &args, CoinsViewOptions &options)
void ReadDatabaseArgs(const ArgsManager &args, DBOptions &options)
An options struct for ChainstateManager, more ergonomically referred to as ChainstateManager::Options...
std::optional< uint256 > assumed_valid_block
If set, it will override the block hash whose ancestors we will assume to have valid scripts without ...
std::optional< arith_uint256 > minimum_chain_work
If set, it will override the minimum work we will assume exists on some valid chain.
std::optional< int32_t > check_block_index
std::chrono::seconds max_tip_age
If the tip is older than this, the node is considered to be in initial block download.
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1161
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
Definition: translation.h:48
uint256 uint256S(std::string_view str)
Definition: uint256.h:140
bool IsHexNumber(std::string_view str)
Return true if the string is a hex number, optionally prefixed with "0x".