2015-02-05 01:11:44 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
|
// 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>
|
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;
|
2015-07-01 08:32:30 +02:00
|
|
|
class CReserveScript;
|
2015-02-05 01:11:44 +01:00
|
|
|
class CTransaction;
|
|
|
|
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();
|
|
|
|
/** Push an updated transaction to all registered wallets */
|
2015-07-27 15:33:03 +02:00
|
|
|
void SyncWithWallets(const CTransaction& tx, const CBlockIndex *pindex, const CBlock* pblock = NULL);
|
2015-02-05 01:11:44 +01:00
|
|
|
|
|
|
|
class CValidationInterface {
|
|
|
|
protected:
|
2015-09-16 16:42:23 +02:00
|
|
|
virtual void UpdatedBlockTip(const CBlockIndex *pindex) {}
|
2015-07-27 15:33:03 +02:00
|
|
|
virtual void SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, const CBlock *pblock) {}
|
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) {}
|
|
|
|
virtual void ResendWalletTransactions(int64_t nBestBlockTime) {}
|
|
|
|
virtual void BlockChecked(const CBlock&, const CValidationState&) {}
|
2015-07-01 08:32:30 +02:00
|
|
|
virtual void GetScriptForMining(boost::shared_ptr<CReserveScript>&) {};
|
2015-07-01 16:06:49 +02:00
|
|
|
virtual void ResetRequestCount(const uint256 &hash) {};
|
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 */
|
2015-09-16 16:42:23 +02:00
|
|
|
boost::signals2::signal<void (const CBlockIndex *)> UpdatedBlockTip;
|
2015-02-05 01:11:44 +01:00
|
|
|
/** Notifies listeners of updated transaction data (transaction, and optionally the block it is found in. */
|
2015-07-27 15:33:03 +02:00
|
|
|
boost::signals2::signal<void (const CTransaction &, const CBlockIndex *pindex, const CBlock *)> SyncTransaction;
|
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. */
|
2015-03-23 18:47:18 +01:00
|
|
|
boost::signals2::signal<void (int64_t nBestBlockTime)> Broadcast;
|
2015-02-05 01:11:44 +01:00
|
|
|
/** Notifies listeners of a block validation result */
|
|
|
|
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;
|
2015-04-10 12:49:01 +02:00
|
|
|
/** Notifies listeners that a block has been successfully mined */
|
2015-07-01 16:06:49 +02:00
|
|
|
boost::signals2::signal<void (const uint256 &)> BlockFound;
|
2015-02-05 01:11:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
CMainSignals& GetMainSignals();
|
|
|
|
|
|
|
|
#endif // BITCOIN_VALIDATIONINTERFACE_H
|