mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 06:12:37 -03:00
e15b1cfc31
This is a pure refactoring of zmqnotificationinterface to make the code easier to read and maintain. It replaces explicit iterators with C++11 for-each loops where appropriate and uses std::unique_ptr to make memory ownership more explicit.
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
// Copyright (c) 2015-2019 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_ZMQ_ZMQNOTIFICATIONINTERFACE_H
|
|
#define BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
|
|
|
|
#include <validationinterface.h>
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
class CBlockIndex;
|
|
class CZMQAbstractNotifier;
|
|
|
|
class CZMQNotificationInterface final : public CValidationInterface
|
|
{
|
|
public:
|
|
virtual ~CZMQNotificationInterface();
|
|
|
|
std::list<const CZMQAbstractNotifier*> GetActiveNotifiers() const;
|
|
|
|
static CZMQNotificationInterface* Create();
|
|
|
|
protected:
|
|
bool Initialize();
|
|
void Shutdown();
|
|
|
|
// CValidationInterface
|
|
void TransactionAddedToMempool(const CTransactionRef& tx) override;
|
|
void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected) override;
|
|
void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected) override;
|
|
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
|
|
|
private:
|
|
CZMQNotificationInterface();
|
|
|
|
void *pcontext;
|
|
std::list<std::unique_ptr<CZMQAbstractNotifier>> notifiers;
|
|
};
|
|
|
|
extern CZMQNotificationInterface* g_zmq_notification_interface;
|
|
|
|
#endif // BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
|