Bitcoin Core  22.0.0
P2P Digital Currency
base.h
Go to the documentation of this file.
1 // Copyright (c) 2017-2020 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_BASE_H
6 #define BITCOIN_INDEX_BASE_H
7 
8 #include <dbwrapper.h>
9 #include <primitives/block.h>
10 #include <primitives/transaction.h>
11 #include <threadinterrupt.h>
12 #include <validationinterface.h>
13 
14 class CBlockIndex;
15 class CChainState;
16 
17 struct IndexSummary {
18  std::string name;
19  bool synced{false};
21 };
22 
29 {
30 protected:
38  class DB : public CDBWrapper
39  {
40  public:
41  DB(const fs::path& path, size_t n_cache_size,
42  bool f_memory = false, bool f_wipe = false, bool f_obfuscate = false);
43 
45  bool ReadBestBlock(CBlockLocator& locator) const;
46 
48  void WriteBestBlock(CDBBatch& batch, const CBlockLocator& locator);
49  };
50 
51 private:
55  std::atomic<bool> m_synced{false};
56 
58  std::atomic<const CBlockIndex*> m_best_block_index{nullptr};
59 
60  std::thread m_thread_sync;
62 
68  void ThreadSync();
69 
78  bool Commit();
79 protected:
81 
82  void BlockConnected(const std::shared_ptr<const CBlock>& block, const CBlockIndex* pindex) override;
83 
84  void ChainStateFlushed(const CBlockLocator& locator) override;
85 
86  const CBlockIndex* CurrentIndex() { return m_best_block_index.load(); };
87 
89  [[nodiscard]] virtual bool Init();
90 
92  virtual bool WriteBlock(const CBlock& block, const CBlockIndex* pindex) { return true; }
93 
96  virtual bool CommitInternal(CDBBatch& batch);
97 
100  virtual bool Rewind(const CBlockIndex* current_tip, const CBlockIndex* new_tip);
101 
102  virtual DB& GetDB() const = 0;
103 
105  virtual const char* GetName() const = 0;
106 
107 public:
109  virtual ~BaseIndex();
110 
116  bool BlockUntilSyncedToCurrentChain() const LOCKS_EXCLUDED(::cs_main);
117 
118  void Interrupt();
119 
122  [[nodiscard]] bool Start(CChainState& active_chainstate);
123 
125  void Stop();
126 
128  IndexSummary GetSummary() const;
129 };
130 
131 #endif // BITCOIN_INDEX_BASE_H
CChainState * m_chainstate
Definition: base.h:80
bool Commit()
Write the current index state (eg.
Definition: base.cpp:195
virtual bool Init()
Initialize internal state from the database and block index.
Definition: base.cpp:55
CThreadInterrupt m_interrupt
Definition: base.h:61
void ChainStateFlushed(const CBlockLocator &locator) override
Notifies listeners of the new active block chain on-disk.
Definition: base.cpp:273
Describes a place in the block chain to another node such that if the other node doesn&#39;t have the sam...
Definition: block.h:114
std::atomic< bool > m_synced
Whether the index is in sync with the main chain.
Definition: base.h:55
Batch of changes queued to be written to a CDBWrapper.
Definition: dbwrapper.h:47
Definition: block.h:62
CChainState stores and provides an API to update our local knowledge of the current best chain...
Definition: validation.h:561
virtual bool Rewind(const CBlockIndex *current_tip, const CBlockIndex *new_tip)
Rewind index to an earlier chain tip during a chain reorg.
Definition: base.cpp:211
bool synced
Definition: base.h:19
Implement this to subscribe to events generated in validation.
void Stop()
Stops the instance from staying in sync with blockchain updates.
Definition: base.cpp:355
The database stores a block locator of the chain the database is synced to so that the index can effi...
Definition: base.h:38
std::thread m_thread_sync
Definition: base.h:60
virtual bool WriteBlock(const CBlock &block, const CBlockIndex *pindex)
Write update index entries for a newly connected block.
Definition: base.h:92
virtual ~BaseIndex()
Destructor interrupts sync thread if running and blocks until it exits.
Definition: base.cpp:49
Base class for indices of blockchain data.
Definition: base.h:28
void WriteBestBlock(CDBBatch &batch, const CBlockLocator &locator)
Write block locator of the chain that the txindex is in sync with.
Definition: base.cpp:44
void Interrupt(NodeContext &node)
Interrupt threads.
Definition: init.cpp:157
const CBlockIndex * CurrentIndex()
Definition: base.h:86
virtual bool CommitInternal(CDBBatch &batch)
Virtual method called internally by Commit that can be overridden to atomically commit more index sta...
Definition: base.cpp:204
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate...
Definition: validation.cpp:115
std::string name
Definition: base.h:18
#define LOCKS_EXCLUDED(...)
Definition: threadsafety.h:48
int best_block_height
Definition: base.h:20
The block chain is a tree shaped structure starting with the genesis block at the root...
Definition: chain.h:137
void BlockConnected(const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex) override
Notifies listeners of a block being connected.
Definition: base.cpp:231
void ThreadSync()
Sync the index with the block index starting from the current best block.
Definition: base.cpp:124
virtual const char * GetName() const =0
Get the name of the index for display in logs.
DB(const fs::path &path, size_t n_cache_size, bool f_memory=false, bool f_wipe=false, bool f_obfuscate=false)
Definition: base.cpp:31
bool ReadBestBlock(CBlockLocator &locator) const
Read block locator of the chain that the txindex is in sync with.
Definition: base.cpp:35
virtual DB & GetDB() const =0
std::atomic< const CBlockIndex * > m_best_block_index
The last block in the chain that the index is in sync with.
Definition: base.h:58
bool Start(CChainState &active_chainstate)
Start initializes the sync state and registers the instance as a ValidationInterface so that it stays...
Definition: base.cpp:341
IndexSummary GetSummary() const
Get a summary of the index and its state.
Definition: base.cpp:364