2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2015-2018 The Bitcoin Core developers
|
2014-11-18 12:06:32 -05:00
|
|
|
// 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
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <zmq/zmqconfig.h>
|
2014-11-18 12:06:32 -05:00
|
|
|
|
2015-09-16 16:42:23 +02:00
|
|
|
class CBlockIndex;
|
2014-11-18 12:06:32 -05:00
|
|
|
class CZMQAbstractNotifier;
|
2015-09-16 16:42:23 +02:00
|
|
|
|
2014-11-18 12:06:32 -05:00
|
|
|
typedef CZMQAbstractNotifier* (*CZMQNotifierFactory)();
|
|
|
|
|
|
|
|
class CZMQAbstractNotifier
|
|
|
|
{
|
|
|
|
public:
|
2018-08-24 20:42:03 -04:00
|
|
|
static const int DEFAULT_ZMQ_SNDHWM {1000};
|
|
|
|
|
|
|
|
CZMQAbstractNotifier() : psocket(nullptr), outbound_message_high_water_mark(DEFAULT_ZMQ_SNDHWM) { }
|
2014-11-18 12:06:32 -05:00
|
|
|
virtual ~CZMQAbstractNotifier();
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
static CZMQAbstractNotifier* Create()
|
|
|
|
{
|
|
|
|
return new 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; }
|
2018-08-24 20:42:03 -04:00
|
|
|
int GetOutboundMessageHighWaterMark() const { return outbound_message_high_water_mark; }
|
|
|
|
void SetOutboundMessageHighWaterMark(const int sndhwm) {
|
|
|
|
if (sndhwm >= 0) {
|
|
|
|
outbound_message_high_water_mark = sndhwm;
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 12:06:32 -05:00
|
|
|
|
|
|
|
virtual bool Initialize(void *pcontext) = 0;
|
|
|
|
virtual void Shutdown() = 0;
|
|
|
|
|
2015-09-16 16:42:23 +02:00
|
|
|
virtual bool NotifyBlock(const CBlockIndex *pindex);
|
2014-11-18 12:06:32 -05:00
|
|
|
virtual bool NotifyTransaction(const CTransaction &transaction);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void *psocket;
|
|
|
|
std::string type;
|
|
|
|
std::string address;
|
2018-08-24 20:42:03 -04:00
|
|
|
int outbound_message_high_water_mark; // aka SNDHWM
|
2014-11-18 12:06:32 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_ZMQ_ZMQABSTRACTNOTIFIER_H
|