mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
f329a9298c
Introduces a new kernel:: namespace and move all of src/kernel/coinstats under it. In the verify script, lines like: line="$(grep -n 'namespace node {' -- src/kernel/coinstats.h | tail -n1 | cut -d: -f1)" sed -i -e "${line}s@namespace node {@namespace kernel {@" -- src/kernel/coinstats.h Are intended to replace only the last instance of "namespace node" with "namespace kernel", this is to avoid replacing forward declarations of things inside the node:: namespace. -BEGIN VERIFY SCRIPT- sed -E -i 's@namespace node@namespace kernel@g' -- src/kernel/coinstats.cpp line="$(grep -n 'namespace node {' -- src/kernel/coinstats.h | tail -n1 | cut -d: -f1)" sed -i -e "${line}s@namespace node {@namespace kernel {@" -- src/kernel/coinstats.h line="$(grep -n '// namespace node' -- src/kernel/coinstats.h | tail -n1 | cut -d: -f1)" sed -i -e "${line}s@// namespace node@// namespace kernel@" -- src/kernel/coinstats.h things='(CCoinsStats|CoinStatsHashType|GetBogoSize|TxOutSer|ComputeUTXOStats)' git grep -lE 'node::'"$things" | xargs sed -E -i 's@node::'"$things"'@kernel::\1@g' sed -E -i 's@'"$things"'@kernel::\1@g' -- src/node/coinstats.cpp src/node/coinstats.h sed -E -i 's@BlockManager@node::\0@g' -- src/kernel/coinstats.cpp -END VERIFY SCRIPT-
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
// Copyright (c) 2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_KERNEL_COINSTATS_H
|
|
#define BITCOIN_KERNEL_COINSTATS_H
|
|
|
|
#include <chain.h>
|
|
#include <coins.h>
|
|
#include <consensus/amount.h>
|
|
#include <streams.h>
|
|
#include <uint256.h>
|
|
|
|
#include <cstdint>
|
|
#include <functional>
|
|
|
|
class CCoinsView;
|
|
namespace node {
|
|
class BlockManager;
|
|
} // namespace node
|
|
|
|
namespace kernel {
|
|
enum class CoinStatsHashType {
|
|
HASH_SERIALIZED,
|
|
MUHASH,
|
|
NONE,
|
|
};
|
|
|
|
struct CCoinsStats {
|
|
int nHeight{0};
|
|
uint256 hashBlock{};
|
|
uint64_t nTransactions{0};
|
|
uint64_t nTransactionOutputs{0};
|
|
uint64_t nBogoSize{0};
|
|
uint256 hashSerialized{};
|
|
uint64_t nDiskSize{0};
|
|
//! The total amount, or nullopt if an overflow occurred calculating it
|
|
std::optional<CAmount> total_amount{0};
|
|
|
|
//! The number of coins contained.
|
|
uint64_t coins_count{0};
|
|
|
|
//! Signals if the coinstatsindex was used to retrieve the statistics.
|
|
bool index_used{false};
|
|
|
|
// Following values are only available from coinstats index
|
|
|
|
//! Total cumulative amount of block subsidies up to and including this block
|
|
CAmount total_subsidy{0};
|
|
//! Total cumulative amount of unspendable coins up to and including this block
|
|
CAmount total_unspendable_amount{0};
|
|
//! Total cumulative amount of prevouts spent up to and including this block
|
|
CAmount total_prevout_spent_amount{0};
|
|
//! Total cumulative amount of outputs created up to and including this block
|
|
CAmount total_new_outputs_ex_coinbase_amount{0};
|
|
//! Total cumulative amount of coinbase outputs up to and including this block
|
|
CAmount total_coinbase_amount{0};
|
|
//! The unspendable coinbase amount from the genesis block
|
|
CAmount total_unspendables_genesis_block{0};
|
|
//! The two unspendable coinbase outputs total amount caused by BIP30
|
|
CAmount total_unspendables_bip30{0};
|
|
//! Total cumulative amount of outputs sent to unspendable scripts (OP_RETURN for example) up to and including this block
|
|
CAmount total_unspendables_scripts{0};
|
|
//! Total cumulative amount of coins lost due to unclaimed miner rewards up to and including this block
|
|
CAmount total_unspendables_unclaimed_rewards{0};
|
|
|
|
CCoinsStats() = default;
|
|
CCoinsStats(int block_height, const uint256& block_hash);
|
|
};
|
|
|
|
uint64_t GetBogoSize(const CScript& script_pub_key);
|
|
|
|
CDataStream TxOutSer(const COutPoint& outpoint, const Coin& coin);
|
|
|
|
std::optional<CCoinsStats> ComputeUTXOStats(CoinStatsHashType hash_type, CCoinsView* view, node::BlockManager& blockman, const std::function<void()>& interruption_point = {});
|
|
} // namespace kernel
|
|
|
|
#endif // BITCOIN_KERNEL_COINSTATS_H
|