2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_CLIENTMODEL_H
|
|
|
|
#define BITCOIN_QT_CLIENTMODEL_H
|
2011-05-22 11:19:43 -04:00
|
|
|
|
|
|
|
#include <QObject>
|
2015-02-09 07:19:01 -03:00
|
|
|
#include <QDateTime>
|
2011-06-03 15:03:20 -04:00
|
|
|
|
2017-04-20 08:29:12 -03:00
|
|
|
#include <atomic>
|
2017-04-17 16:37:36 -03:00
|
|
|
#include <memory>
|
2017-04-20 08:29:12 -03:00
|
|
|
|
2015-06-20 15:27:03 -03:00
|
|
|
class BanTableModel;
|
2013-04-13 02:13:08 -03:00
|
|
|
class OptionsModel;
|
2014-05-23 13:09:59 -04:00
|
|
|
class PeerTableModel;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2015-11-27 09:20:46 -03:00
|
|
|
class CBlockIndex;
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
namespace interfaces {
|
2017-04-17 16:37:36 -03:00
|
|
|
class Handler;
|
|
|
|
class Node;
|
|
|
|
}
|
|
|
|
|
2011-07-08 12:05:10 -04:00
|
|
|
QT_BEGIN_NAMESPACE
|
2012-05-05 10:07:14 -04:00
|
|
|
class QTimer;
|
2011-07-08 12:05:10 -04:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2018-03-09 11:03:40 -03:00
|
|
|
enum class BlockSource {
|
|
|
|
NONE,
|
|
|
|
REINDEX,
|
|
|
|
DISK,
|
|
|
|
NETWORK
|
2012-10-21 16:23:13 -03:00
|
|
|
};
|
|
|
|
|
2014-02-16 15:48:27 -03:00
|
|
|
enum NumConnections {
|
|
|
|
CONNECTIONS_NONE = 0,
|
|
|
|
CONNECTIONS_IN = (1U << 0),
|
|
|
|
CONNECTIONS_OUT = (1U << 1),
|
|
|
|
CONNECTIONS_ALL = (CONNECTIONS_IN | CONNECTIONS_OUT),
|
|
|
|
};
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Model for Bitcoin network client. */
|
2011-05-22 11:19:43 -04:00
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 17:51:02 -03:00
|
|
|
|
2011-05-22 11:19:43 -04:00
|
|
|
public:
|
2018-04-07 04:42:02 -03:00
|
|
|
explicit ClientModel(interfaces::Node& node, OptionsModel *optionsModel, QObject *parent = 0);
|
2012-05-06 13:40:58 -04:00
|
|
|
~ClientModel();
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
interfaces::Node& node() const { return m_node; }
|
2011-05-31 16:24:53 -04:00
|
|
|
OptionsModel *getOptionsModel();
|
2014-05-23 13:09:59 -04:00
|
|
|
PeerTableModel *getPeerTableModel();
|
2015-06-20 15:27:03 -03:00
|
|
|
BanTableModel *getBanTableModel();
|
2011-05-31 16:24:53 -04:00
|
|
|
|
2014-02-16 15:48:27 -03:00
|
|
|
//! Return number of connections, default is in- and outbound (total)
|
|
|
|
int getNumConnections(unsigned int flags = CONNECTIONS_ALL) const;
|
2017-04-20 04:51:05 -03:00
|
|
|
int getHeaderTipHeight() const;
|
|
|
|
int64_t getHeaderTipTime() const;
|
2017-04-17 16:37:36 -03:00
|
|
|
|
2017-01-03 11:09:57 -03:00
|
|
|
//! Returns enum BlockSource of the current importing/syncing state
|
2012-10-21 16:23:13 -03:00
|
|
|
enum BlockSource getBlockSource() const;
|
2011-12-13 16:00:21 -03:00
|
|
|
//! Return warnings to be displayed in status bar
|
|
|
|
QString getStatusBarWarnings() const;
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2011-07-01 11:06:36 -04:00
|
|
|
QString formatFullVersion() const;
|
2015-08-06 10:40:50 -03:00
|
|
|
QString formatSubVersion() const;
|
2012-10-24 16:47:07 -03:00
|
|
|
bool isReleaseVersion() const;
|
2012-05-21 17:05:54 -04:00
|
|
|
QString formatClientStartupTime() const;
|
2016-03-22 04:40:10 -03:00
|
|
|
QString dataDir() const;
|
2018-10-02 17:12:17 -03:00
|
|
|
QString blocksDir() const;
|
2011-07-01 11:06:36 -04:00
|
|
|
|
2017-10-02 11:59:32 -03:00
|
|
|
bool getProxyInfo(std::string& ip_port) const;
|
|
|
|
|
2017-04-19 13:45:11 -03:00
|
|
|
// caches for the best header
|
2017-04-20 04:51:05 -03:00
|
|
|
mutable std::atomic<int> cachedBestHeaderHeight;
|
|
|
|
mutable std::atomic<int64_t> cachedBestHeaderTime;
|
2017-04-19 13:45:11 -03:00
|
|
|
|
2011-05-31 16:24:53 -04:00
|
|
|
private:
|
2018-04-07 04:42:02 -03:00
|
|
|
interfaces::Node& m_node;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_show_progress;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_notify_num_connections_changed;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_notify_network_active_changed;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_notify_alert_changed;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_banned_list_changed;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_notify_block_tip;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_notify_header_tip;
|
2011-06-03 15:03:20 -04:00
|
|
|
OptionsModel *optionsModel;
|
2014-05-23 13:09:59 -04:00
|
|
|
PeerTableModel *peerTableModel;
|
2015-06-20 15:27:03 -03:00
|
|
|
BanTableModel *banTableModel;
|
2011-05-30 14:20:12 -04:00
|
|
|
|
2012-05-05 10:07:14 -04:00
|
|
|
QTimer *pollTimer;
|
|
|
|
|
2012-05-06 13:40:58 -04:00
|
|
|
void subscribeToCoreSignals();
|
|
|
|
void unsubscribeFromCoreSignals();
|
2013-01-23 17:51:02 -03:00
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
Q_SIGNALS:
|
2011-05-22 11:19:43 -04:00
|
|
|
void numConnectionsChanged(int count);
|
2016-04-28 11:18:45 -03:00
|
|
|
void numBlocksChanged(int count, const QDateTime& blockDate, double nVerificationProgress, bool header);
|
2015-11-09 07:45:07 -03:00
|
|
|
void mempoolSizeChanged(long count, size_t mempoolSizeInBytes);
|
2013-03-25 23:07:06 -03:00
|
|
|
void networkActiveChanged(bool networkActive);
|
2012-10-24 16:47:07 -03:00
|
|
|
void alertsChanged(const QString &warnings);
|
2013-08-22 12:09:32 -04:00
|
|
|
void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut);
|
2011-06-30 12:05:29 -04:00
|
|
|
|
2013-12-03 05:25:24 -03:00
|
|
|
//! Fired when a message should be reported to the user
|
2012-12-03 09:24:42 -03:00
|
|
|
void message(const QString &title, const QString &message, unsigned int style);
|
2011-05-22 11:19:43 -04:00
|
|
|
|
2014-05-23 12:04:09 -04:00
|
|
|
// Show progress dialog e.g. for verifychain
|
|
|
|
void showProgress(const QString &title, int nProgress);
|
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
public Q_SLOTS:
|
2012-05-05 10:07:14 -04:00
|
|
|
void updateTimer();
|
|
|
|
void updateNumConnections(int numConnections);
|
2013-03-25 23:07:06 -03:00
|
|
|
void updateNetworkActive(bool networkActive);
|
2016-03-06 07:07:25 -03:00
|
|
|
void updateAlert();
|
2015-06-20 15:27:03 -03:00
|
|
|
void updateBanlist();
|
2011-05-22 11:19:43 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_CLIENTMODEL_H
|