Bitcoin ABC 0.33.11
P2P Digital Currency
validationinterface.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2016 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_VALIDATIONINTERFACE_H
7#define BITCOIN_VALIDATIONINTERFACE_H
8
9#include <kernel/chain.h>
10#include <kernel/cs_main.h>
11#include <primitives/transaction.h> // CTransaction(Ref)
12#include <sync.h>
13
14#include <cstddef>
15#include <cstdint>
16#include <functional>
17#include <memory>
18#include <vector>
19
20namespace util {
21class TaskRunnerInterface;
22} // namespace util
23
25class CBlock;
26class CBlockIndex;
27struct CBlockLocator;
28class Coin;
29enum class MemPoolRemovalReason;
30
47protected:
63 virtual void UpdatedBlockTip(const CBlockIndex *pindexNew,
64 const CBlockIndex *pindexFork,
65 bool fInitialDownload) {}
72 const CTransactionRef &tx,
73 std::shared_ptr<const std::vector<Coin>> spent_coins,
74 uint64_t mempool_sequence) {}
75
110 uint64_t mempool_sequence) {}
118 const std::shared_ptr<const CBlock> &block,
119 const CBlockIndex *pindex) {}
126 virtual void BlockDisconnected(const std::shared_ptr<const CBlock> &block,
127 const CBlockIndex *pindex) {}
145 const CBlockLocator &locator) {}
152 virtual void BlockChecked(const CBlock &, const BlockValidationState &) {}
158 virtual void NewPoWValidBlock(const CBlockIndex *pindex,
159 const std::shared_ptr<const CBlock> &block){};
160 virtual void BlockFinalized(const CBlockIndex *pindex){};
161 virtual void BlockInvalidated(const CBlockIndex *pindex,
162 const std::shared_ptr<const CBlock> &block){};
163
164 virtual void TransactionFinalized(const CTransactionRef &tx){};
166 const CTransactionRef &tx,
167 std::shared_ptr<const std::vector<Coin>> spent_coins){};
168
169 friend class ValidationSignals;
171};
172
175private:
176 std::unique_ptr<ValidationSignalsImpl> m_internals;
177
178public:
179 // The task runner will block validation if it calls its insert method's
180 // func argument synchronously. In this class func contains a loop that
181 // dispatches a single validation event to all subscribers sequentially.
182 explicit ValidationSignals(
183 std::unique_ptr<util::TaskRunnerInterface> task_runner);
184
186
189
190 size_t CallbacksPending();
191
201
202 // Alternate registration functions that release a shared_ptr after the last
203 // notification is sent. These are useful for race-free cleanup, since
204 // unregistration is nonblocking and can return before the last notification
205 // is processed.
208 std::shared_ptr<CValidationInterface> callbacks);
211 std::shared_ptr<CValidationInterface> callbacks);
212
223 void CallFunctionInValidationInterfaceQueue(std::function<void()> func);
224
235
236 void UpdatedBlockTip(const CBlockIndex *, const CBlockIndex *,
237 bool fInitialDownload);
239 std::shared_ptr<const std::vector<Coin>>,
240 uint64_t mempool_sequence);
243 uint64_t mempool_sequence);
244 void BlockConnected(ChainstateRole, const std::shared_ptr<const CBlock> &,
245 const CBlockIndex *pindex);
246 void BlockDisconnected(const std::shared_ptr<const CBlock> &,
247 const CBlockIndex *pindex);
249 void BlockChecked(const CBlock &, const BlockValidationState &);
250 void NewPoWValidBlock(const CBlockIndex *,
251 const std::shared_ptr<const CBlock> &);
252 void BlockFinalized(const CBlockIndex *pindex);
253 void BlockInvalidated(const CBlockIndex *pindex,
254 const std::shared_ptr<const CBlock> &block);
257 const CTransactionRef &tx,
258 std::shared_ptr<const std::vector<Coin>> spent_coins);
259};
260
261#endif // BITCOIN_VALIDATIONINTERFACE_H
Definition: block.h:60
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:25
Implement this to subscribe to events generated in validation.
virtual void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr< const CBlock > &block)
Notifies listeners that a block which builds directly on our current tip has been received and connec...
virtual void BlockInvalidated(const CBlockIndex *pindex, const std::shared_ptr< const CBlock > &block)
virtual void ChainStateFlushed(ChainstateRole role, const CBlockLocator &locator)
Notifies listeners of the new active block chain on-disk.
virtual void BlockConnected(ChainstateRole role, const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex)
Notifies listeners of a block being connected.
virtual void BlockChecked(const CBlock &, const BlockValidationState &)
Notifies listeners of a block validation result.
virtual void TransactionRemovedFromMempool(const CTransactionRef &tx, MemPoolRemovalReason reason, uint64_t mempool_sequence)
Notifies listeners of a transaction leaving mempool.
virtual void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload)
Notifies listeners when the block chain tip advances.
virtual void BlockFinalized(const CBlockIndex *pindex)
friend class ValidationInterfaceTest
virtual void TransactionInvalidated(const CTransactionRef &tx, std::shared_ptr< const std::vector< Coin > > spent_coins)
virtual void BlockDisconnected(const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex)
Notifies listeners of a block being disconnected.
virtual void TransactionAddedToMempool(const CTransactionRef &tx, std::shared_ptr< const std::vector< Coin > > spent_coins, uint64_t mempool_sequence)
Notifies listeners of a transaction having been added to mempool.
virtual void TransactionFinalized(const CTransactionRef &tx)
~CValidationInterface()=default
Protected destructor so that instances can only be deleted by derived classes.
A UTXO entry.
Definition: coins.h:31
void UnregisterValidationInterface(CValidationInterface *callbacks)
Unregister subscriber.
void BlockInvalidated(const CBlockIndex *pindex, const std::shared_ptr< const CBlock > &block)
void TransactionInvalidated(const CTransactionRef &tx, std::shared_ptr< const std::vector< Coin > > spent_coins)
void CallFunctionInValidationInterfaceQueue(std::function< void()> func)
Pushes a function to callback onto the notification queue, guaranteeing any callbacks generated prior...
void TransactionAddedToMempool(const CTransactionRef &, std::shared_ptr< const std::vector< Coin > >, uint64_t mempool_sequence)
void BlockFinalized(const CBlockIndex *pindex)
void RegisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Register subscriber.
void TransactionFinalized(const CTransactionRef &tx)
ValidationSignals(std::unique_ptr< util::TaskRunnerInterface > task_runner)
void BlockDisconnected(const std::shared_ptr< const CBlock > &, const CBlockIndex *pindex)
void UnregisterAllValidationInterfaces()
Unregister all subscribers.
void RegisterValidationInterface(CValidationInterface *callbacks)
Register subscriber.
void NewPoWValidBlock(const CBlockIndex *, const std::shared_ptr< const CBlock > &)
void UpdatedBlockTip(const CBlockIndex *, const CBlockIndex *, bool fInitialDownload)
void ChainStateFlushed(ChainstateRole, const CBlockLocator &)
void SyncWithValidationInterfaceQueue() LOCKS_EXCLUDED(cs_main)
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
void BlockChecked(const CBlock &, const BlockValidationState &)
void TransactionRemovedFromMempool(const CTransactionRef &, MemPoolRemovalReason, uint64_t mempool_sequence)
void FlushBackgroundCallbacks()
Call any remaining callbacks on the calling thread.
std::unique_ptr< ValidationSignalsImpl > m_internals
void BlockConnected(ChainstateRole, const std::shared_ptr< const CBlock > &, const CBlockIndex *pindex)
void UnregisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Unregister subscriber.
ValidationSignalsImpl manages a list of shared_ptr<CValidationInterface> callbacks.
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:7
ChainstateRole
This enum describes the various roles a specific Chainstate instance can take.
Definition: chain.h:14
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:315
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
Definition: block.h:108
#define LOCKS_EXCLUDED(...)
Definition: threadsafety.h:55
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
Definition: txmempool.h:159