1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 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.
6 #ifndef BITCOIN_VALIDATIONINTERFACE_H
7 #define BITCOIN_VALIDATIONINTERFACE_H
9 #include <boost/signals2/signal.hpp>
11 #include "zcash/IncrementalMerkleTree.hpp"
17 class CValidationInterface;
18 class CValidationState;
21 // These functions dispatch to one or all registered wallets
23 /** Register a wallet to receive updates from core */
24 void RegisterValidationInterface(CValidationInterface* pwalletIn);
25 /** Unregister a wallet from core */
26 void UnregisterValidationInterface(CValidationInterface* pwalletIn);
27 /** Unregister all wallets from core */
28 void UnregisterAllValidationInterfaces();
29 /** Push an updated transaction to all registered wallets */
30 void SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL);
32 class CValidationInterface {
34 virtual void SyncTransaction(const CTransaction &tx, const CBlock *pblock) {}
35 virtual void EraseFromWallet(const uint256 &hash) {}
36 virtual void ChainTip(const CBlockIndex *pindex, const CBlock *pblock, ZCIncrementalMerkleTree tree, bool added) {}
37 virtual void SetBestChain(const CBlockLocator &locator) {}
38 virtual void UpdatedTransaction(const uint256 &hash) {}
39 virtual void Inventory(const uint256 &hash) {}
40 virtual void ResendWalletTransactions(int64_t nBestBlockTime) {}
41 virtual void BlockChecked(const CBlock&, const CValidationState&) {}
42 friend void ::RegisterValidationInterface(CValidationInterface*);
43 friend void ::UnregisterValidationInterface(CValidationInterface*);
44 friend void ::UnregisterAllValidationInterfaces();
48 /** Notifies listeners of updated transaction data (transaction, and optionally the block it is found in. */
49 boost::signals2::signal<void (const CTransaction &, const CBlock *)> SyncTransaction;
50 /** Notifies listeners of an erased transaction (currently disabled, requires transaction replacement). */
51 boost::signals2::signal<void (const uint256 &)> EraseTransaction;
52 /** Notifies listeners of an updated transaction without new data (for now: a coinbase potentially becoming visible). */
53 boost::signals2::signal<void (const uint256 &)> UpdatedTransaction;
54 /** Notifies listeners of a change to the tip of the active block chain. */
55 boost::signals2::signal<void (const CBlockIndex *, const CBlock *, ZCIncrementalMerkleTree, bool)> ChainTip;
56 /** Notifies listeners of a new active block chain. */
57 boost::signals2::signal<void (const CBlockLocator &)> SetBestChain;
58 /** Notifies listeners about an inventory item being seen on the network. */
59 boost::signals2::signal<void (const uint256 &)> Inventory;
60 /** Tells listeners to broadcast their data. */
61 boost::signals2::signal<void (int64_t nBestBlockTime)> Broadcast;
62 /** Notifies listeners of a block validation result */
63 boost::signals2::signal<void (const CBlock&, const CValidationState&)> BlockChecked;
66 CMainSignals& GetMainSignals();
68 #endif // BITCOIN_VALIDATIONINTERFACE_H