Bitcoin Core  22.0.0
P2P Digital Currency
coinstatsindex.h
Go to the documentation of this file.
1 // Copyright (c) 2020-2021 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 #ifndef BITCOIN_INDEX_COINSTATSINDEX_H
6 #define BITCOIN_INDEX_COINSTATSINDEX_H
7 
8 #include <chain.h>
9 #include <crypto/muhash.h>
10 #include <flatfile.h>
11 #include <index/base.h>
12 #include <node/coinstats.h>
13 
17 class CoinStatsIndex final : public BaseIndex
18 {
19 private:
20  std::string m_name;
21  std::unique_ptr<BaseIndex::DB> m_db;
22 
25  uint64_t m_bogo_size{0};
36 
37  bool ReverseBlock(const CBlock& block, const CBlockIndex* pindex);
38 
39 protected:
40  bool Init() override;
41 
42  bool WriteBlock(const CBlock& block, const CBlockIndex* pindex) override;
43 
44  bool Rewind(const CBlockIndex* current_tip, const CBlockIndex* new_tip) override;
45 
46  BaseIndex::DB& GetDB() const override { return *m_db; }
47 
48  const char* GetName() const override { return "coinstatsindex"; }
49 
50 public:
51  // Constructs the index, which becomes available to be queried.
52  explicit CoinStatsIndex(size_t n_cache_size, bool f_memory = false, bool f_wipe = false);
53 
54  // Look up stats for a specific block using CBlockIndex
55  bool LookUpStats(const CBlockIndex* block_index, CCoinsStats& coins_stats) const;
56 };
57 
59 extern std::unique_ptr<CoinStatsIndex> g_coin_stats_index;
60 
61 #endif // BITCOIN_INDEX_COINSTATSINDEX_H
CAmount m_unspendables_scripts
const char * GetName() const override
Get the name of the index for display in logs.
bool WriteBlock(const CBlock &block, const CBlockIndex *pindex) override
Write update index entries for a newly connected block.
CAmount m_block_prevout_spent_amount
Definition: block.h:62
uint64_t m_bogo_size
BaseIndex::DB & GetDB() const override
std::unique_ptr< BaseIndex::DB > m_db
CAmount m_total_amount
CAmount m_block_unspendable_amount
The database stores a block locator of the chain the database is synced to so that the index can effi...
Definition: base.h:38
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
Base class for indices of blockchain data.
Definition: base.h:28
bool Rewind(const CBlockIndex *current_tip, const CBlockIndex *new_tip) override
Rewind index to an earlier chain tip during a chain reorg.
CoinStatsIndex maintains statistics on the UTXO set.
CAmount m_block_new_outputs_ex_coinbase_amount
CAmount m_total_subsidy
CAmount m_unspendables_bip30
bool Init() override
Initialize internal state from the database and block index.
CAmount m_unspendables_unclaimed_rewards
CoinStatsIndex(size_t n_cache_size, bool f_memory=false, bool f_wipe=false)
std::string m_name
CAmount m_block_coinbase_amount
bool ReverseBlock(const CBlock &block, const CBlockIndex *pindex)
The block chain is a tree shaped structure starting with the genesis block at the root...
Definition: chain.h:137
A class representing MuHash sets.
Definition: muhash.h:94
std::unique_ptr< CoinStatsIndex > g_coin_stats_index
The global UTXO set hash object.
CAmount m_unspendables_genesis_block
uint64_t m_transaction_output_count
bool LookUpStats(const CBlockIndex *block_index, CCoinsStats &coins_stats) const
MuHash3072 m_muhash