mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
![Daniel Kraft](/assets/img/avatar_default.png)
Instead of returning a raw pointer from CZMQNotifierFactory and implicitly requiring the caller to know that it has to take ownership, return a std::unique_ptr to make this explicit. This also changes the typedef for CZMQNotifierFactory to use the new C++11 using syntax, which makes it (a little) less cryptic.
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
// Copyright (c) 2015-2018 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_ZMQABSTRACTNOTIFIER_H
|
|
#define BITCOIN_ZMQ_ZMQABSTRACTNOTIFIER_H
|
|
|
|
#include <zmq/zmqconfig.h>
|
|
|
|
#include <util/memory.h>
|
|
|
|
#include <memory>
|
|
|
|
class CBlockIndex;
|
|
class CZMQAbstractNotifier;
|
|
|
|
using CZMQNotifierFactory = std::unique_ptr<CZMQAbstractNotifier> (*)();
|
|
|
|
class CZMQAbstractNotifier
|
|
{
|
|
public:
|
|
static const int DEFAULT_ZMQ_SNDHWM {1000};
|
|
|
|
CZMQAbstractNotifier() : psocket(nullptr), outbound_message_high_water_mark(DEFAULT_ZMQ_SNDHWM) { }
|
|
virtual ~CZMQAbstractNotifier();
|
|
|
|
template <typename T>
|
|
static std::unique_ptr<CZMQAbstractNotifier> Create()
|
|
{
|
|
return MakeUnique<T>();
|
|
}
|
|
|
|
std::string GetType() const { return type; }
|
|
void SetType(const std::string &t) { type = t; }
|
|
std::string GetAddress() const { return address; }
|
|
void SetAddress(const std::string &a) { address = a; }
|
|
int GetOutboundMessageHighWaterMark() const { return outbound_message_high_water_mark; }
|
|
void SetOutboundMessageHighWaterMark(const int sndhwm) {
|
|
if (sndhwm >= 0) {
|
|
outbound_message_high_water_mark = sndhwm;
|
|
}
|
|
}
|
|
|
|
virtual bool Initialize(void *pcontext) = 0;
|
|
virtual void Shutdown() = 0;
|
|
|
|
virtual bool NotifyBlock(const CBlockIndex *pindex);
|
|
virtual bool NotifyTransaction(const CTransaction &transaction);
|
|
|
|
protected:
|
|
void *psocket;
|
|
std::string type;
|
|
std::string address;
|
|
int outbound_message_high_water_mark; // aka SNDHWM
|
|
};
|
|
|
|
#endif // BITCOIN_ZMQ_ZMQABSTRACTNOTIFIER_H
|