mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
0e689341d2
* fix whitespace * added zmq stuff for governance objects and votes it seems that zmq is currently not in a working state, need to figure that out. Need to: plug in the new methods added possibly plug in the old methods, as it doesn't look like they are. * formatting fix. Will probably need to revert for this PR * continue linking new zmq messages in * added comment, might need to revert * fixes error of it not knowing about the classes * Actually link in, all new govobjects and govvotes should be broadcast over zmq now. * fix compile error, forgot to change params when copying * fix compile error * add imports to the header files in zmqconfig.h * fixing linking(i think) error * Revert "added comment, might need to revert" This reverts commit2918ea40fe
. * Revert "formatting fix. Will probably need to revert for this PR" This reverts commitca10558866
. * fix tabs etc * EOL added * optimization of hash.begin() @nmarley thoughts? * remove formatting changes * iterator i -> it and removal of notifier * typo indf879f57
* use auto for the iterators * introduce hash prefix * implement changes in zmq_sub.py, update the doc, and change argument name to fix typo * deref iterators before calling methods * continuede8a4c505
* missed one... continuede8a4c505
* killing some tabs * fix spacing for setting or comparing iterators * change order of new variables to match current setup * re-add elif's I didn't realize got removed * Revert "fix spacing for setting or comparing iterators" This reverts commit8ce2068148
. * Revert "use auto for the iterators" This reverts commitcb16cf0760
. * Revert "missed one... continued e8a4c505" This reverts commit2087cf894f
. * Revert "continued e8a4c505" This reverts commita78c8ad2c9
. * Revert "deref iterators before calling methods" This reverts commite8a4c505d1
. * Revert "iterator i -> it and removal of notifier" This reverts commit29574248b1
. * Revert "fix whitespace" This reverts commit612be48d96
. * Revert "typo in df879f5" * Revert "Optimization of hash.begin()" * fixes problem with revert * Udjin complain's a lot ;) * help text, init.cpp * add signals in validationinterface.cpp * Change location of vote notification call. * remain consistent * remove unneeded include due to change of notification location * implement raw notifications
103 lines
5.4 KiB
C++
103 lines
5.4 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2015 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>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <memory>
|
|
|
|
class CBlock;
|
|
class CBlockIndex;
|
|
struct CBlockLocator;
|
|
class CConnman;
|
|
class CReserveScript;
|
|
class CTransaction;
|
|
class CValidationInterface;
|
|
class CValidationState;
|
|
class CGovernanceVote;
|
|
class CGovernanceObject;
|
|
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:
|
|
virtual void AcceptedBlockHeader(const CBlockIndex *pindexNew) {}
|
|
virtual void NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload) {}
|
|
virtual void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) {}
|
|
virtual void SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, int posInBlock) {}
|
|
virtual void NotifyTransactionLock(const CTransaction &tx) {}
|
|
virtual void NotifyGovernanceVote(const CGovernanceVote &vote) {}
|
|
virtual void NotifyGovernanceObject(const CGovernanceObject &object) {}
|
|
virtual void SetBestChain(const CBlockLocator &locator) {}
|
|
virtual bool UpdatedTransaction(const uint256 &hash) { return false;}
|
|
virtual void Inventory(const uint256 &hash) {}
|
|
virtual void ResendWalletTransactions(int64_t nBestBlockTime, CConnman* connman) {}
|
|
virtual void BlockChecked(const CBlock&, const CValidationState&) {}
|
|
virtual void GetScriptForMining(boost::shared_ptr<CReserveScript>&) {}
|
|
virtual void ResetRequestCount(const uint256 &hash) {}
|
|
virtual void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& block) {}
|
|
friend void ::RegisterValidationInterface(CValidationInterface*);
|
|
friend void ::UnregisterValidationInterface(CValidationInterface*);
|
|
friend void ::UnregisterAllValidationInterfaces();
|
|
};
|
|
|
|
struct CMainSignals {
|
|
/** Notifies listeners of accepted block header */
|
|
boost::signals2::signal<void (const CBlockIndex *)> AcceptedBlockHeader;
|
|
/** Notifies listeners of updated block header tip */
|
|
boost::signals2::signal<void (const CBlockIndex *, bool fInitialDownload)> NotifyHeaderTip;
|
|
/** Notifies listeners of updated block chain tip */
|
|
boost::signals2::signal<void (const CBlockIndex *, const CBlockIndex *, bool fInitialDownload)> UpdatedBlockTip;
|
|
/** A posInBlock value for SyncTransaction calls for tranactions not
|
|
* included in connected blocks such as transactions removed from mempool,
|
|
* accepted to mempool or appearing in disconnected blocks.*/
|
|
static const int SYNC_TRANSACTION_NOT_IN_BLOCK = -1;
|
|
/** Notifies listeners of updated transaction data (transaction, and
|
|
* optionally the block it is found in). Called with block data when
|
|
* transaction is included in a connected block, and without block data when
|
|
* transaction was accepted to mempool, removed from mempool (only when
|
|
* removal was due to conflict from connected block), or appeared in a
|
|
* disconnected block.*/
|
|
boost::signals2::signal<void (const CTransaction &, const CBlockIndex *pindex, int posInBlock)> SyncTransaction;
|
|
/** Notifies listeners of an updated transaction lock without new data. */
|
|
boost::signals2::signal<void (const CTransaction &)> NotifyTransactionLock;
|
|
/** Notifies listeners of a new governance vote. */
|
|
boost::signals2::signal<void (const CGovernanceVote &)> NotifyGovernanceVote;
|
|
/** Notifies listeners of a new governance object. */
|
|
boost::signals2::signal<void (const CGovernanceObject &)> NotifyGovernanceObject;
|
|
/** Notifies listeners of an updated transaction without new data (for now: a coinbase potentially becoming visible). */
|
|
boost::signals2::signal<bool (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. */
|
|
boost::signals2::signal<void (int64_t nBestBlockTime, CConnman* connman)> Broadcast;
|
|
/** Notifies listeners of a block validation result */
|
|
boost::signals2::signal<void (const CBlock&, const CValidationState&)> BlockChecked;
|
|
/** Notifies listeners that a key for mining is required (coinbase) */
|
|
boost::signals2::signal<void (boost::shared_ptr<CReserveScript>&)> ScriptForMining;
|
|
/** Notifies listeners that a block has been successfully mined */
|
|
boost::signals2::signal<void (const uint256 &)> BlockFound;
|
|
/**
|
|
* 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;
|
|
};
|
|
|
|
CMainSignals& GetMainSignals();
|
|
|
|
#endif // BITCOIN_VALIDATIONINTERFACE_H
|