91d99fcd3f
* Merge #8996: Network activity toggle 19f46f1 Qt: New network_disabled icon (Luke Dashjr) 54cf997 RPC/Net: Use boolean consistently for networkactive, and remove from getinfo (Luke Dashjr) b2b33d9 Overhaul network activity toggle (Jonas Schnelli) 32efa79 Qt: Add GUI feedback and control of network activity state. (Jon Lund Steffensen) e38993b RPC: Add "togglenetwork" method to toggle network activity temporarily (Jon Lund Steffensen) 7c9a98a Allow network activity to be temporarily suspended. (Jon Lund Steffensen) * Revert on-click behavior of network status icon to showing peers list Stay with the way Dash handled clicking on the status icon * Add theme support for network disabled icon * Merge #8874: Multiple Selection for peer and ban tables 1077577 Fix auto-deselection of peers (Andrew Chow) addfdeb Multiple Selection for peer and ban tables (Andrew Chow) * Merge #9190: qt: Plug many memory leaks ed998ea qt: Avoid OpenSSL certstore-related memory leak (Wladimir J. van der Laan) 5204598 qt: Avoid shutdownwindow-related memory leak (Wladimir J. van der Laan) e4f126a qt: Avoid splash-screen related memory leak (Wladimir J. van der Laan) 693384e qt: Prevent thread/memory leak on exiting RPCConsole (Wladimir J. van der Laan) 47db075 qt: Plug many memory leaks (Wladimir J. van der Laan) * Merge #9218: qt: Show progress overlay when clicking spinner icon 042f9fa qt: Show progress overlay when clicking spinner icon (Wladimir J. van der Laan) 827d9a3 qt: Replace NetworkToggleStatusBarControl with generic ClickableLabel (Wladimir J. van der Laan) * Merge #9266: Bugfix: Qt/RPCConsole: Put column enum in the right places df17fe0 Bugfix: Qt/RPCConsole: Put column enum in the right places (Luke Dashjr) * Merge #9255: qt: layoutAboutToChange signal is called layoutAboutToBeChanged f36349e qt: Remove on_toggleNetworkActiveButton_clicked from RPCConsole (Wladimir J. van der Laan) 297cc20 qt: layoutAboutToChange signal is called layoutAboutToBeChanged (Wladimir J. van der Laan) * Use UniValue until bitcoin PR #8788 is backported Network active toggle was already based on "[RPC] Give RPC commands more information about the RPC request" We need to use the old UniValue style until that one is backported * Merge #8906: [qt] sync-overlay: Don't show progress twice fafeec3 [qt] sync-overlay: Don't show progress twice (MarcoFalke) * Merge #8985: Use pindexBestHeader instead of setBlockIndexCandidates for NotifyHeaderTip() 3154d6e [Qt] use NotifyHeaderTip's height and date for the progress update (Jonas Schnelli) 0a261b6 Use pindexBestHeader instead of setBlockIndexCandidates for NotifyHeaderTip() (Jonas Schnelli) * Merge #9280: [Qt] Show ModalOverlay by pressing the progress bar, allow hiding 89a3723 [Qt] Show ModalOverlay by pressing the progress bar, disabled show() in sync mode (Jonas Schnelli) * Merge #9461: [Qt] Improve progress display during headers-sync and peer-finding 40ec7c7 [Qt] Improve progress display during headers-sync and peer-finding (Jonas Schnelli) * Merge #9588: qt: Use nPowTargetSpacing constant fa4d478 qt: Use nPowTargetSpacing constant (MarcoFalke) * Hide modal overlay forever when syncing has catched up Don't allow to open it again by clicking on the progress bar and spinner icon. Currently the overlay does not show meaningful information about masternode sync and it gives the impression of being stuck after the block chain sync is done. * Don't include chainparams.h in sendcoinsdialog.cpp This was just a remainder of a backported PR which meant to change some calculation in this file which does not apply to Dash. * Also check for fNetworkActive in ConnectNode * Merge #9528: [qt] Rename formateNiceTimeOffset(qint64) to formatNiceTimeOffset(qint64) 988d300 [qt] Rename formateNiceTimeOffset(qint64) to formatNiceTimeOffset(qint64) (practicalswift) * Merge #11237: qt: Fixing division by zero in time remaining c8d38abd6 Refactor tipUpdate as per style guide (MeshCollider) 3b69a08c5 Fix division by zero in time remaining (MeshCollider) Pull request description: Fixes https://github.com/bitcoin/bitcoin/issues/10291, https://github.com/bitcoin/bitcoin/issues/11265 progressDelta may be 0 (or even negative according to 11265), this checks for that and prints unknown if it is, because we cannot calculate an estimate for the time remaining (would be infinite or negative). Tree-SHA512: bc5708e5ed6e4670d008219558c5fbb25709bd99a32c98ec39bb74f94a0b7fa058f3d03389ccdd39e6723e6b5b48e34b13ceee7c051c2db631e51d8ec3e1d68c
383 lines
12 KiB
C++
383 lines
12 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Copyright (c) 2014-2017 The Dash Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "clientmodel.h"
|
|
|
|
#include "bantablemodel.h"
|
|
#include "guiconstants.h"
|
|
#include "peertablemodel.h"
|
|
|
|
#include "alert.h"
|
|
#include "chainparams.h"
|
|
#include "checkpoints.h"
|
|
#include "clientversion.h"
|
|
#include "validation.h"
|
|
#include "net.h"
|
|
#include "txmempool.h"
|
|
#include "ui_interface.h"
|
|
#include "util.h"
|
|
|
|
#include "masternodeman.h"
|
|
#include "masternode-sync.h"
|
|
#include "privatesend.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <QDebug>
|
|
#include <QTimer>
|
|
|
|
class CBlockIndex;
|
|
|
|
static const int64_t nClientStartupTime = GetTime();
|
|
static int64_t nLastHeaderTipUpdateNotification = 0;
|
|
static int64_t nLastBlockTipUpdateNotification = 0;
|
|
|
|
ClientModel::ClientModel(OptionsModel *optionsModel, QObject *parent) :
|
|
QObject(parent),
|
|
optionsModel(optionsModel),
|
|
peerTableModel(0),
|
|
cachedMasternodeCountString(""),
|
|
banTableModel(0),
|
|
pollTimer(0)
|
|
{
|
|
peerTableModel = new PeerTableModel(this);
|
|
banTableModel = new BanTableModel(this);
|
|
pollTimer = new QTimer(this);
|
|
connect(pollTimer, SIGNAL(timeout()), this, SLOT(updateTimer()));
|
|
pollTimer->start(MODEL_UPDATE_DELAY);
|
|
|
|
pollMnTimer = new QTimer(this);
|
|
connect(pollMnTimer, SIGNAL(timeout()), this, SLOT(updateMnTimer()));
|
|
// no need to update as frequent as data for balances/txes/blocks
|
|
pollMnTimer->start(MODEL_UPDATE_DELAY * 4);
|
|
|
|
subscribeToCoreSignals();
|
|
}
|
|
|
|
ClientModel::~ClientModel()
|
|
{
|
|
unsubscribeFromCoreSignals();
|
|
}
|
|
|
|
int ClientModel::getNumConnections(unsigned int flags) const
|
|
{
|
|
CConnman::NumConnections connections = CConnman::CONNECTIONS_NONE;
|
|
|
|
if(flags == CONNECTIONS_IN)
|
|
connections = CConnman::CONNECTIONS_IN;
|
|
else if (flags == CONNECTIONS_OUT)
|
|
connections = CConnman::CONNECTIONS_OUT;
|
|
else if (flags == CONNECTIONS_ALL)
|
|
connections = CConnman::CONNECTIONS_ALL;
|
|
|
|
if(g_connman)
|
|
return g_connman->GetNodeCount(connections);
|
|
return 0;
|
|
}
|
|
|
|
QString ClientModel::getMasternodeCountString() const
|
|
{
|
|
// return tr("Total: %1 (PS compatible: %2 / Enabled: %3) (IPv4: %4, IPv6: %5, TOR: %6)").arg(QString::number((int)mnodeman.size()))
|
|
return tr("Total: %1 (PS compatible: %2 / Enabled: %3)")
|
|
.arg(QString::number((int)mnodeman.size()))
|
|
.arg(QString::number((int)mnodeman.CountEnabled(MIN_PRIVATESEND_PEER_PROTO_VERSION)))
|
|
.arg(QString::number((int)mnodeman.CountEnabled()));
|
|
// .arg(QString::number((int)mnodeman.CountByIP(NET_IPV4)))
|
|
// .arg(QString::number((int)mnodeman.CountByIP(NET_IPV6)))
|
|
// .arg(QString::number((int)mnodeman.CountByIP(NET_TOR)));
|
|
}
|
|
|
|
int ClientModel::getNumBlocks() const
|
|
{
|
|
LOCK(cs_main);
|
|
return chainActive.Height();
|
|
}
|
|
|
|
int ClientModel::getHeaderTipHeight() const
|
|
{
|
|
LOCK(cs_main);
|
|
if (!pindexBestHeader)
|
|
return 0;
|
|
return pindexBestHeader->nHeight;
|
|
}
|
|
|
|
int64_t ClientModel::getHeaderTipTime() const
|
|
{
|
|
LOCK(cs_main);
|
|
if (!pindexBestHeader)
|
|
return 0;
|
|
return pindexBestHeader->GetBlockTime();
|
|
}
|
|
|
|
quint64 ClientModel::getTotalBytesRecv() const
|
|
{
|
|
if(!g_connman)
|
|
return 0;
|
|
return g_connman->GetTotalBytesRecv();
|
|
}
|
|
|
|
quint64 ClientModel::getTotalBytesSent() const
|
|
{
|
|
if(!g_connman)
|
|
return 0;
|
|
return g_connman->GetTotalBytesSent();
|
|
}
|
|
|
|
QDateTime ClientModel::getLastBlockDate() const
|
|
{
|
|
LOCK(cs_main);
|
|
|
|
if (chainActive.Tip())
|
|
return QDateTime::fromTime_t(chainActive.Tip()->GetBlockTime());
|
|
|
|
return QDateTime::fromTime_t(Params().GenesisBlock().GetBlockTime()); // Genesis block's time of current network
|
|
}
|
|
|
|
long ClientModel::getMempoolSize() const
|
|
{
|
|
return mempool.size();
|
|
}
|
|
|
|
size_t ClientModel::getMempoolDynamicUsage() const
|
|
{
|
|
return mempool.DynamicMemoryUsage();
|
|
}
|
|
|
|
double ClientModel::getVerificationProgress(const CBlockIndex *tipIn) const
|
|
{
|
|
CBlockIndex *tip = const_cast<CBlockIndex *>(tipIn);
|
|
if (!tip)
|
|
{
|
|
LOCK(cs_main);
|
|
tip = chainActive.Tip();
|
|
}
|
|
return Checkpoints::GuessVerificationProgress(Params().Checkpoints(), tip);
|
|
}
|
|
|
|
void ClientModel::updateTimer()
|
|
{
|
|
// no locking required at this point
|
|
// the following calls will acquire the required lock
|
|
Q_EMIT mempoolSizeChanged(getMempoolSize(), getMempoolDynamicUsage());
|
|
Q_EMIT bytesChanged(getTotalBytesRecv(), getTotalBytesSent());
|
|
}
|
|
|
|
void ClientModel::updateMnTimer()
|
|
{
|
|
QString newMasternodeCountString = getMasternodeCountString();
|
|
|
|
if (cachedMasternodeCountString != newMasternodeCountString)
|
|
{
|
|
cachedMasternodeCountString = newMasternodeCountString;
|
|
|
|
Q_EMIT strMasternodesChanged(cachedMasternodeCountString);
|
|
}
|
|
}
|
|
|
|
void ClientModel::updateNumConnections(int numConnections)
|
|
{
|
|
Q_EMIT numConnectionsChanged(numConnections);
|
|
}
|
|
|
|
void ClientModel::updateNetworkActive(bool networkActive)
|
|
{
|
|
Q_EMIT networkActiveChanged(networkActive);
|
|
}
|
|
|
|
void ClientModel::updateAlert(const QString &hash, int status)
|
|
{
|
|
// Show error message notification for new alert
|
|
if(status == CT_NEW)
|
|
{
|
|
uint256 hash_256;
|
|
hash_256.SetHex(hash.toStdString());
|
|
CAlert alert = CAlert::getAlertByHash(hash_256);
|
|
if(!alert.IsNull())
|
|
{
|
|
Q_EMIT message(tr("Network Alert"), QString::fromStdString(alert.strStatusBar), CClientUIInterface::ICON_ERROR);
|
|
}
|
|
}
|
|
|
|
Q_EMIT alertsChanged(getStatusBarWarnings());
|
|
}
|
|
|
|
bool ClientModel::inInitialBlockDownload() const
|
|
{
|
|
return IsInitialBlockDownload();
|
|
}
|
|
|
|
enum BlockSource ClientModel::getBlockSource() const
|
|
{
|
|
if (fReindex)
|
|
return BLOCK_SOURCE_REINDEX;
|
|
else if (fImporting)
|
|
return BLOCK_SOURCE_DISK;
|
|
else if (getNumConnections() > 0)
|
|
return BLOCK_SOURCE_NETWORK;
|
|
|
|
return BLOCK_SOURCE_NONE;
|
|
}
|
|
|
|
void ClientModel::setNetworkActive(bool active)
|
|
{
|
|
if (g_connman) {
|
|
g_connman->SetNetworkActive(active);
|
|
}
|
|
}
|
|
|
|
bool ClientModel::getNetworkActive() const
|
|
{
|
|
if (g_connman) {
|
|
return g_connman->GetNetworkActive();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QString ClientModel::getStatusBarWarnings() const
|
|
{
|
|
return QString::fromStdString(GetWarnings("gui"));
|
|
}
|
|
|
|
OptionsModel *ClientModel::getOptionsModel()
|
|
{
|
|
return optionsModel;
|
|
}
|
|
|
|
PeerTableModel *ClientModel::getPeerTableModel()
|
|
{
|
|
return peerTableModel;
|
|
}
|
|
|
|
BanTableModel *ClientModel::getBanTableModel()
|
|
{
|
|
return banTableModel;
|
|
}
|
|
|
|
QString ClientModel::formatFullVersion() const
|
|
{
|
|
return QString::fromStdString(FormatFullVersion());
|
|
}
|
|
|
|
QString ClientModel::formatSubVersion() const
|
|
{
|
|
return QString::fromStdString(strSubVersion);
|
|
}
|
|
|
|
bool ClientModel::isReleaseVersion() const
|
|
{
|
|
return CLIENT_VERSION_IS_RELEASE;
|
|
}
|
|
|
|
QString ClientModel::clientName() const
|
|
{
|
|
return QString::fromStdString(CLIENT_NAME);
|
|
}
|
|
|
|
QString ClientModel::formatClientStartupTime() const
|
|
{
|
|
return QDateTime::fromTime_t(nClientStartupTime).toString();
|
|
}
|
|
|
|
QString ClientModel::dataDir() const
|
|
{
|
|
return QString::fromStdString(GetDataDir().string());
|
|
}
|
|
|
|
void ClientModel::updateBanlist()
|
|
{
|
|
banTableModel->refresh();
|
|
}
|
|
|
|
// Handlers for core signals
|
|
static void ShowProgress(ClientModel *clientmodel, const std::string &title, int nProgress)
|
|
{
|
|
// emits signal "showProgress"
|
|
QMetaObject::invokeMethod(clientmodel, "showProgress", Qt::QueuedConnection,
|
|
Q_ARG(QString, QString::fromStdString(title)),
|
|
Q_ARG(int, nProgress));
|
|
}
|
|
|
|
static void NotifyNumConnectionsChanged(ClientModel *clientmodel, int newNumConnections)
|
|
{
|
|
// Too noisy: qDebug() << "NotifyNumConnectionsChanged: " + QString::number(newNumConnections);
|
|
QMetaObject::invokeMethod(clientmodel, "updateNumConnections", Qt::QueuedConnection,
|
|
Q_ARG(int, newNumConnections));
|
|
}
|
|
|
|
static void NotifyNetworkActiveChanged(ClientModel *clientmodel, bool networkActive)
|
|
{
|
|
QMetaObject::invokeMethod(clientmodel, "updateNetworkActive", Qt::QueuedConnection,
|
|
Q_ARG(bool, networkActive));
|
|
}
|
|
|
|
static void NotifyAlertChanged(ClientModel *clientmodel, const uint256 &hash, ChangeType status)
|
|
{
|
|
qDebug() << "NotifyAlertChanged: " + QString::fromStdString(hash.GetHex()) + " status=" + QString::number(status);
|
|
QMetaObject::invokeMethod(clientmodel, "updateAlert", Qt::QueuedConnection,
|
|
Q_ARG(QString, QString::fromStdString(hash.GetHex())),
|
|
Q_ARG(int, status));
|
|
}
|
|
|
|
static void BannedListChanged(ClientModel *clientmodel)
|
|
{
|
|
qDebug() << QString("%1: Requesting update for peer banlist").arg(__func__);
|
|
QMetaObject::invokeMethod(clientmodel, "updateBanlist", Qt::QueuedConnection);
|
|
}
|
|
|
|
static void BlockTipChanged(ClientModel *clientmodel, bool initialSync, const CBlockIndex *pIndex, bool fHeader)
|
|
{
|
|
// lock free async UI updates in case we have a new block tip
|
|
// during initial sync, only update the UI if the last update
|
|
// was > 250ms (MODEL_UPDATE_DELAY) ago
|
|
int64_t now = 0;
|
|
if (initialSync)
|
|
now = GetTimeMillis();
|
|
|
|
int64_t& nLastUpdateNotification = fHeader ? nLastHeaderTipUpdateNotification : nLastBlockTipUpdateNotification;
|
|
|
|
// if we are in-sync, update the UI regardless of last update time
|
|
if (!initialSync || now - nLastUpdateNotification > MODEL_UPDATE_DELAY) {
|
|
//pass a async signal to the UI thread
|
|
QMetaObject::invokeMethod(clientmodel, "numBlocksChanged", Qt::QueuedConnection,
|
|
Q_ARG(int, pIndex->nHeight),
|
|
Q_ARG(QDateTime, QDateTime::fromTime_t(pIndex->GetBlockTime())),
|
|
Q_ARG(double, clientmodel->getVerificationProgress(pIndex)),
|
|
Q_ARG(bool, fHeader));
|
|
nLastUpdateNotification = now;
|
|
}
|
|
}
|
|
|
|
static void NotifyAdditionalDataSyncProgressChanged(ClientModel *clientmodel, double nSyncProgress)
|
|
{
|
|
QMetaObject::invokeMethod(clientmodel, "additionalDataSyncProgressChanged", Qt::QueuedConnection,
|
|
Q_ARG(double, nSyncProgress));
|
|
}
|
|
|
|
void ClientModel::subscribeToCoreSignals()
|
|
{
|
|
// Connect signals to client
|
|
uiInterface.ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2));
|
|
uiInterface.NotifyNumConnectionsChanged.connect(boost::bind(NotifyNumConnectionsChanged, this, _1));
|
|
uiInterface.NotifyNetworkActiveChanged.connect(boost::bind(NotifyNetworkActiveChanged, this, _1));
|
|
uiInterface.NotifyAlertChanged.connect(boost::bind(NotifyAlertChanged, this, _1, _2));
|
|
uiInterface.BannedListChanged.connect(boost::bind(BannedListChanged, this));
|
|
uiInterface.NotifyBlockTip.connect(boost::bind(BlockTipChanged, this, _1, _2, false));
|
|
uiInterface.NotifyHeaderTip.connect(boost::bind(BlockTipChanged, this, _1, _2, true));
|
|
uiInterface.NotifyAdditionalDataSyncProgressChanged.connect(boost::bind(NotifyAdditionalDataSyncProgressChanged, this, _1));
|
|
}
|
|
|
|
void ClientModel::unsubscribeFromCoreSignals()
|
|
{
|
|
// Disconnect signals from client
|
|
uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2));
|
|
uiInterface.NotifyNumConnectionsChanged.disconnect(boost::bind(NotifyNumConnectionsChanged, this, _1));
|
|
uiInterface.NotifyNetworkActiveChanged.disconnect(boost::bind(NotifyNetworkActiveChanged, this, _1));
|
|
uiInterface.NotifyAlertChanged.disconnect(boost::bind(NotifyAlertChanged, this, _1, _2));
|
|
uiInterface.BannedListChanged.disconnect(boost::bind(BannedListChanged, this));
|
|
uiInterface.NotifyBlockTip.disconnect(boost::bind(BlockTipChanged, this, _1, _2, false));
|
|
uiInterface.NotifyHeaderTip.disconnect(boost::bind(BlockTipChanged, this, _1, _2, true));
|
|
uiInterface.NotifyAdditionalDataSyncProgressChanged.disconnect(boost::bind(NotifyAdditionalDataSyncProgressChanged, this, _1));
|
|
}
|