Bitcoin ABC 0.31.0
P2P Digital Currency
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 <functional>
15#include <memory>
16
18class CBlock;
19class CBlockIndex;
20struct CBlockLocator;
21class Coin;
23class CScheduler;
24enum class MemPoolRemovalReason;
25
35
36// Alternate registration functions that release a shared_ptr after the last
37// notification is sent. These are useful for race-free cleanup, since
38// unregistration is nonblocking and can return before the last notification is
39// processed.
42 std::shared_ptr<CValidationInterface> callbacks);
45 std::shared_ptr<CValidationInterface> callbacks);
46
56void CallFunctionInValidationInterfaceQueue(std::function<void()> func);
67
84protected:
100 virtual void UpdatedBlockTip(const CBlockIndex *pindexNew,
101 const CBlockIndex *pindexFork,
102 bool fInitialDownload) {}
109 const CTransactionRef &tx,
110 std::shared_ptr<const std::vector<Coin>> spent_coins,
111 uint64_t mempool_sequence) {}
112
147 uint64_t mempool_sequence) {}
155 const std::shared_ptr<const CBlock> &block,
156 const CBlockIndex *pindex) {}
163 virtual void BlockDisconnected(const std::shared_ptr<const CBlock> &block,
164 const CBlockIndex *pindex) {}
182 const CBlockLocator &locator) {}
189 virtual void BlockChecked(const CBlock &, const BlockValidationState &) {}
195 virtual void NewPoWValidBlock(const CBlockIndex *pindex,
196 const std::shared_ptr<const CBlock> &block){};
197 virtual void BlockFinalized(const CBlockIndex *pindex){};
198 virtual void BlockInvalidated(const CBlockIndex *pindex,
199 const std::shared_ptr<const CBlock> &block){};
200 friend class CMainSignals;
201 friend class ValidationInterfaceTest;
202};
203
204class MainSignalsImpl;
206private:
207 std::unique_ptr<MainSignalsImpl> m_internals;
208
210 std::shared_ptr<CValidationInterface>);
214 std::function<void()> func);
215
216public:
229
230 size_t CallbacksPending();
231
232 void UpdatedBlockTip(const CBlockIndex *, const CBlockIndex *,
233 bool fInitialDownload);
235 std::shared_ptr<const std::vector<Coin>>,
236 uint64_t mempool_sequence);
239 uint64_t mempool_sequence);
240 void BlockConnected(ChainstateRole, const std::shared_ptr<const CBlock> &,
241 const CBlockIndex *pindex);
242 void BlockDisconnected(const std::shared_ptr<const CBlock> &,
243 const CBlockIndex *pindex);
245 void BlockChecked(const CBlock &, const BlockValidationState &);
246 void NewPoWValidBlock(const CBlockIndex *,
247 const std::shared_ptr<const CBlock> &);
248 void BlockFinalized(const CBlockIndex *pindex);
249 void BlockInvalidated(const CBlockIndex *pindex,
250 const std::shared_ptr<const CBlock> &block);
251};
252
254
255#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
void TransactionAddedToMempool(const CTransactionRef &, std::shared_ptr< const std::vector< Coin > >, uint64_t mempool_sequence)
void UpdatedBlockTip(const CBlockIndex *, const CBlockIndex *, bool fInitialDownload)
void BlockConnected(ChainstateRole, const std::shared_ptr< const CBlock > &, const CBlockIndex *pindex)
void BlockDisconnected(const std::shared_ptr< const CBlock > &, const CBlockIndex *pindex)
void BlockChecked(const CBlock &, const BlockValidationState &)
std::unique_ptr< MainSignalsImpl > m_internals
void UnregisterBackgroundSignalScheduler()
Unregister a CScheduler to give callbacks which should run in the background - these callbacks will n...
void TransactionRemovedFromMempool(const CTransactionRef &, MemPoolRemovalReason, uint64_t mempool_sequence)
void NewPoWValidBlock(const CBlockIndex *, const std::shared_ptr< const CBlock > &)
void RegisterBackgroundSignalScheduler(CScheduler &scheduler)
Register a CScheduler to give callbacks which should run in the background (may only be called once)
void BlockInvalidated(const CBlockIndex *pindex, const std::shared_ptr< const CBlock > &block)
void ChainStateFlushed(ChainstateRole, const CBlockLocator &)
void FlushBackgroundCallbacks()
Call any remaining callbacks on the calling thread.
void BlockFinalized(const CBlockIndex *pindex)
Simple class for background tasks that should be run periodically or once "after a while".
Definition: scheduler.h:41
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)
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.
~CValidationInterface()=default
Protected destructor so that instances can only be deleted by derived classes.
A UTXO entry.
Definition: coins.h:28
MainSignalsImpl 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
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:105
#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:153
void CallFunctionInValidationInterfaceQueue(std::function< void()> func)
Pushes a function to callback onto the notification queue, guaranteeing any callbacks generated prior...
CMainSignals & GetMainSignals()
void UnregisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Unregister subscriber.
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 UnregisterAllValidationInterfaces()
Unregister all subscribers.
void UnregisterValidationInterface(CValidationInterface *callbacks)
Unregister subscriber.
void RegisterValidationInterface(CValidationInterface *callbacks)
Register subscriber.
void RegisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Register subscriber.