2015-02-05 01:11:44 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2015-02-05 01:11:44 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_VALIDATIONINTERFACE_H
|
|
|
|
#define BITCOIN_VALIDATIONINTERFACE_H
|
|
|
|
|
|
|
|
#include <boost/signals2/signal.hpp>
|
2015-07-01 08:32:30 +02:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2016-12-19 08:26:20 +01:00
|
|
|
#include <memory>
|
2015-02-05 01:11:44 +01:00
|
|
|
|
2017-03-30 03:12:42 +02:00
|
|
|
#include "primitives/transaction.h" // CTransaction(Ref)
|
|
|
|
|
2015-02-05 01:11:44 +01:00
|
|
|
class CBlock;
|
2015-07-27 15:33:03 +02:00
|
|
|
class CBlockIndex;
|
2015-03-29 13:45:05 +02:00
|
|
|
struct CBlockLocator;
|
2015-09-16 16:42:23 +02:00
|
|
|
class CBlockIndex;
|
2016-05-25 02:56:17 +02:00
|
|
|
class CConnman;
|
2015-07-01 08:32:30 +02:00
|
|
|
class CReserveScript;
|
2015-02-05 01:11:44 +01:00
|
|
|
class CValidationInterface;
|
|
|
|
class CValidationState;
|
|
|
|
class uint256;
|
|
|
|
|
|
|
|
// These functions dispatch to one or all registered wallets
|
|
|
|
|
|
|
|
/** Register a wallet to receive updates from core */
|
|
|
|
void RegisterValidationInterface(CValidationInterface* pwalletIn);
|
|
|
|
/** Unregister a wallet from core */
|
|
|
|
void UnregisterValidationInterface(CValidationInterface* pwalletIn);
|
|
|
|
/** Unregister all wallets from core */
|
|
|
|
void UnregisterAllValidationInterfaces();
|
|
|
|
|
|
|
|
class CValidationInterface {
|
|
|
|
protected:
|
2016-09-30 23:40:03 +02:00
|
|
|
virtual void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) {}
|
2017-03-30 03:12:42 +02:00
|
|
|
virtual void TransactionAddedToMempool(const CTransactionRef &ptxn) {}
|
|
|
|
virtual void BlockConnected(const std::shared_ptr<const CBlock> &block, const CBlockIndex *pindex, const std::vector<CTransactionRef> &txnConflicted) {}
|
|
|
|
virtual void BlockDisconnected(const std::shared_ptr<const CBlock> &block) {}
|
2015-04-23 14:50:22 +02:00
|
|
|
virtual void SetBestChain(const CBlockLocator &locator) {}
|
|
|
|
virtual void UpdatedTransaction(const uint256 &hash) {}
|
|
|
|
virtual void Inventory(const uint256 &hash) {}
|
2016-05-25 02:56:17 +02:00
|
|
|
virtual void ResendWalletTransactions(int64_t nBestBlockTime, CConnman* connman) {}
|
2015-04-23 14:50:22 +02:00
|
|
|
virtual void BlockChecked(const CBlock&, const CValidationState&) {}
|
2015-07-01 08:32:30 +02:00
|
|
|
virtual void GetScriptForMining(boost::shared_ptr<CReserveScript>&) {};
|
2016-12-19 08:26:20 +01:00
|
|
|
virtual void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& block) {};
|
2015-02-05 01:11:44 +01:00
|
|
|
friend void ::RegisterValidationInterface(CValidationInterface*);
|
|
|
|
friend void ::UnregisterValidationInterface(CValidationInterface*);
|
|
|
|
friend void ::UnregisterAllValidationInterfaces();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CMainSignals {
|
2015-05-07 16:49:00 +02:00
|
|
|
/** Notifies listeners of updated block chain tip */
|
2016-09-30 23:40:03 +02:00
|
|
|
boost::signals2::signal<void (const CBlockIndex *, const CBlockIndex *, bool fInitialDownload)> UpdatedBlockTip;
|
2017-03-30 03:12:42 +02:00
|
|
|
/** Notifies listeners of a transaction having been added to mempool. */
|
|
|
|
boost::signals2::signal<void (const CTransactionRef &)> TransactionAddedToMempool;
|
|
|
|
/**
|
|
|
|
* Notifies listeners of a block being connected.
|
|
|
|
* Provides a vector of transactions evicted from the mempool as a result.
|
|
|
|
*/
|
|
|
|
boost::signals2::signal<void (const std::shared_ptr<const CBlock> &, const CBlockIndex *pindex, const std::vector<CTransactionRef> &)> BlockConnected;
|
|
|
|
/** Notifies listeners of a block being disconnected */
|
|
|
|
boost::signals2::signal<void (const std::shared_ptr<const CBlock> &)> BlockDisconnected;
|
2015-02-05 01:11:44 +01:00
|
|
|
/** Notifies listeners of an updated transaction without new data (for now: a coinbase potentially becoming visible). */
|
|
|
|
boost::signals2::signal<void (const uint256 &)> UpdatedTransaction;
|
|
|
|
/** Notifies listeners of a new active block chain. */
|
|
|
|
boost::signals2::signal<void (const CBlockLocator &)> SetBestChain;
|
|
|
|
/** Notifies listeners about an inventory item being seen on the network. */
|
|
|
|
boost::signals2::signal<void (const uint256 &)> Inventory;
|
|
|
|
/** Tells listeners to broadcast their data. */
|
2016-05-25 02:56:17 +02:00
|
|
|
boost::signals2::signal<void (int64_t nBestBlockTime, CConnman* connman)> Broadcast;
|
2017-01-14 22:40:46 +01:00
|
|
|
/**
|
|
|
|
* Notifies listeners of a block validation result.
|
|
|
|
* If the provided CValidationState IsValid, the provided block
|
|
|
|
* is guaranteed to be the current best block at the time the
|
|
|
|
* callback was generated (not necessarily now)
|
|
|
|
*/
|
2015-02-05 01:11:44 +01:00
|
|
|
boost::signals2::signal<void (const CBlock&, const CValidationState&)> BlockChecked;
|
2015-04-10 12:49:01 +02:00
|
|
|
/** Notifies listeners that a key for mining is required (coinbase) */
|
2015-07-01 08:32:30 +02:00
|
|
|
boost::signals2::signal<void (boost::shared_ptr<CReserveScript>&)> ScriptForMining;
|
2016-12-19 08:26:20 +01:00
|
|
|
/**
|
|
|
|
* Notifies listeners that a block which builds directly on our current tip
|
|
|
|
* has been received and connected to the headers tree, though not validated yet */
|
|
|
|
boost::signals2::signal<void (const CBlockIndex *, const std::shared_ptr<const CBlock>&)> NewPoWValidBlock;
|
2015-02-05 01:11:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
CMainSignals& GetMainSignals();
|
|
|
|
|
|
|
|
#endif // BITCOIN_VALIDATIONINTERFACE_H
|