2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-05-23 19:09:59 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <qt/peertablemodel.h>
|
2014-05-23 19:09:59 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <qt/clientmodel.h>
|
|
|
|
#include <qt/guiconstants.h>
|
|
|
|
#include <qt/guiutil.h>
|
2014-05-23 19:09:59 +02:00
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
#include <interfaces/node.h>
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <validation.h> // for cs_main
|
|
|
|
#include <sync.h>
|
2014-05-23 19:09:59 +02:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QList>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
bool NodeLessThan::operator()(const CNodeCombinedStats &left, const CNodeCombinedStats &right) const
|
|
|
|
{
|
2014-06-04 12:06:18 +02:00
|
|
|
const CNodeStats *pLeft = &(left.nodeStats);
|
|
|
|
const CNodeStats *pRight = &(right.nodeStats);
|
2014-05-23 19:09:59 +02:00
|
|
|
|
|
|
|
if (order == Qt::DescendingOrder)
|
|
|
|
std::swap(pLeft, pRight);
|
|
|
|
|
|
|
|
switch(column)
|
|
|
|
{
|
2016-08-19 21:38:04 +02:00
|
|
|
case PeerTableModel::NetNodeId:
|
|
|
|
return pLeft->nodeid < pRight->nodeid;
|
2014-05-23 19:09:59 +02:00
|
|
|
case PeerTableModel::Address:
|
|
|
|
return pLeft->addrName.compare(pRight->addrName) < 0;
|
|
|
|
case PeerTableModel::Subversion:
|
|
|
|
return pLeft->cleanSubVer.compare(pRight->cleanSubVer) < 0;
|
2014-06-04 12:06:18 +02:00
|
|
|
case PeerTableModel::Ping:
|
2016-10-14 16:11:38 +02:00
|
|
|
return pLeft->dMinPing < pRight->dMinPing;
|
2017-10-15 01:06:54 +02:00
|
|
|
case PeerTableModel::Sent:
|
|
|
|
return pLeft->nSendBytes < pRight->nSendBytes;
|
|
|
|
case PeerTableModel::Received:
|
|
|
|
return pLeft->nRecvBytes < pRight->nRecvBytes;
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// private implementation
|
|
|
|
class PeerTablePriv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Local cache of peer information */
|
|
|
|
QList<CNodeCombinedStats> cachedNodeStats;
|
|
|
|
/** Column to sort nodes by */
|
|
|
|
int sortColumn;
|
|
|
|
/** Order (ascending or descending) to sort nodes by */
|
|
|
|
Qt::SortOrder sortOrder;
|
|
|
|
/** Index of rows by node ID */
|
|
|
|
std::map<NodeId, int> mapNodeRows;
|
|
|
|
|
|
|
|
/** Pull a full list of peers from vNodes into our cache */
|
2018-04-07 09:42:02 +02:00
|
|
|
void refreshPeers(interfaces::Node& node)
|
2014-06-04 12:06:18 +02:00
|
|
|
{
|
2014-05-23 19:09:59 +02:00
|
|
|
{
|
|
|
|
cachedNodeStats.clear();
|
2017-04-17 21:57:19 +02:00
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
interfaces::Node::NodesStats nodes_stats;
|
2017-04-17 21:57:19 +02:00
|
|
|
node.getNodesStats(nodes_stats);
|
|
|
|
cachedNodeStats.reserve(nodes_stats.size());
|
|
|
|
for (auto& node_stats : nodes_stats)
|
2014-05-23 19:09:59 +02:00
|
|
|
{
|
|
|
|
CNodeCombinedStats stats;
|
2017-04-17 21:57:19 +02:00
|
|
|
stats.nodeStats = std::get<0>(node_stats);
|
|
|
|
stats.fNodeStateStatsAvailable = std::get<1>(node_stats);
|
|
|
|
stats.nodeStateStats = std::get<2>(node_stats);
|
2014-05-23 19:09:59 +02:00
|
|
|
cachedNodeStats.append(stats);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sortColumn >= 0)
|
2015-08-18 19:23:28 +02:00
|
|
|
// sort cacheNodeStats (use stable sort to prevent rows jumping around unnecessarily)
|
2014-05-23 19:09:59 +02:00
|
|
|
qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder));
|
|
|
|
|
|
|
|
// build index map
|
|
|
|
mapNodeRows.clear();
|
|
|
|
int row = 0;
|
2017-06-02 03:25:02 +02:00
|
|
|
for (const CNodeCombinedStats& stats : cachedNodeStats)
|
2014-06-04 12:06:18 +02:00
|
|
|
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
|
2015-06-21 13:07:08 +02:00
|
|
|
int size() const
|
2014-05-23 19:09:59 +02:00
|
|
|
{
|
|
|
|
return cachedNodeStats.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
CNodeCombinedStats *index(int idx)
|
|
|
|
{
|
2015-06-21 13:07:08 +02:00
|
|
|
if (idx >= 0 && idx < cachedNodeStats.size())
|
2014-05-23 19:09:59 +02:00
|
|
|
return &cachedNodeStats[idx];
|
2015-06-21 13:07:08 +02:00
|
|
|
|
|
|
|
return 0;
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
PeerTableModel::PeerTableModel(interfaces::Node& node, ClientModel *parent) :
|
2014-06-04 12:06:18 +02:00
|
|
|
QAbstractTableModel(parent),
|
2017-04-17 21:57:19 +02:00
|
|
|
m_node(node),
|
2014-06-04 12:06:18 +02:00
|
|
|
clientModel(parent),
|
|
|
|
timer(0)
|
2014-05-23 19:09:59 +02:00
|
|
|
{
|
2017-10-15 01:06:54 +02:00
|
|
|
columns << tr("NodeId") << tr("Node/Service") << tr("Ping") << tr("Sent") << tr("Received") << tr("User Agent");
|
2016-11-18 15:47:20 +01:00
|
|
|
priv.reset(new PeerTablePriv());
|
2014-05-23 19:09:59 +02:00
|
|
|
// default to unsorted
|
|
|
|
priv->sortColumn = -1;
|
|
|
|
|
|
|
|
// set up timer for auto refresh
|
2016-11-18 15:47:20 +01:00
|
|
|
timer = new QTimer(this);
|
2014-05-23 19:09:59 +02:00
|
|
|
connect(timer, SIGNAL(timeout()), SLOT(refresh()));
|
2014-06-04 12:06:18 +02:00
|
|
|
timer->setInterval(MODEL_UPDATE_DELAY);
|
2014-05-23 19:09:59 +02:00
|
|
|
|
|
|
|
// load initial data
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2016-11-18 15:47:20 +01:00
|
|
|
PeerTableModel::~PeerTableModel()
|
|
|
|
{
|
|
|
|
// Intentionally left empty
|
|
|
|
}
|
|
|
|
|
2014-06-04 12:06:18 +02:00
|
|
|
void PeerTableModel::startAutoRefresh()
|
2014-05-23 19:09:59 +02:00
|
|
|
{
|
|
|
|
timer->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeerTableModel::stopAutoRefresh()
|
|
|
|
{
|
|
|
|
timer->stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
int PeerTableModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
|
|
|
return priv->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int PeerTableModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
2015-12-30 04:42:27 +01:00
|
|
|
return columns.length();
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant PeerTableModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if(!index.isValid())
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
CNodeCombinedStats *rec = static_cast<CNodeCombinedStats*>(index.internalPointer());
|
|
|
|
|
2014-08-04 16:25:21 +02:00
|
|
|
if (role == Qt::DisplayRole) {
|
2014-05-23 19:09:59 +02:00
|
|
|
switch(index.column())
|
|
|
|
{
|
2016-08-19 21:38:04 +02:00
|
|
|
case NetNodeId:
|
2017-04-10 21:00:23 +02:00
|
|
|
return (qint64)rec->nodeStats.nodeid;
|
2014-05-23 19:09:59 +02:00
|
|
|
case Address:
|
2018-06-24 22:09:01 +02:00
|
|
|
// prepend to peer address down-arrow symbol for inbound connection and up-arrow for outbound connection
|
|
|
|
return QString(rec->nodeStats.fInbound ? "↓ " : "↑ ") + QString::fromStdString(rec->nodeStats.addrName);
|
2014-05-23 19:09:59 +02:00
|
|
|
case Subversion:
|
2014-06-04 12:06:18 +02:00
|
|
|
return QString::fromStdString(rec->nodeStats.cleanSubVer);
|
|
|
|
case Ping:
|
2016-10-14 16:11:38 +02:00
|
|
|
return GUIUtil::formatPingTime(rec->nodeStats.dMinPing);
|
2017-10-15 01:06:54 +02:00
|
|
|
case Sent:
|
|
|
|
return GUIUtil::formatBytes(rec->nodeStats.nSendBytes);
|
|
|
|
case Received:
|
|
|
|
return GUIUtil::formatBytes(rec->nodeStats.nRecvBytes);
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
2014-08-04 16:25:21 +02:00
|
|
|
} else if (role == Qt::TextAlignmentRole) {
|
2017-10-15 01:06:54 +02:00
|
|
|
switch (index.column()) {
|
|
|
|
case Ping:
|
|
|
|
case Sent:
|
|
|
|
case Received:
|
|
|
|
return QVariant(Qt::AlignRight | Qt::AlignVCenter);
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
2014-08-04 16:25:21 +02:00
|
|
|
|
2014-05-23 19:09:59 +02:00
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant PeerTableModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
if(orientation == Qt::Horizontal)
|
|
|
|
{
|
|
|
|
if(role == Qt::DisplayRole && section < columns.size())
|
|
|
|
{
|
|
|
|
return columns[section];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::ItemFlags PeerTableModel::flags(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
if(!index.isValid())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
|
|
|
CNodeCombinedStats *data = priv->index(row);
|
|
|
|
|
|
|
|
if (data)
|
|
|
|
return createIndex(row, column, data);
|
2015-06-21 13:07:08 +02:00
|
|
|
return QModelIndex();
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 12:06:18 +02:00
|
|
|
const CNodeCombinedStats *PeerTableModel::getNodeStats(int idx)
|
|
|
|
{
|
2014-05-23 19:09:59 +02:00
|
|
|
return priv->index(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeerTableModel::refresh()
|
|
|
|
{
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_EMIT layoutAboutToBeChanged();
|
2017-04-17 21:57:19 +02:00
|
|
|
priv->refreshPeers(m_node);
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_EMIT layoutChanged();
|
2014-05-23 19:09:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int PeerTableModel::getRowByNodeId(NodeId nodeid)
|
|
|
|
{
|
|
|
|
std::map<NodeId, int>::iterator it = priv->mapNodeRows.find(nodeid);
|
|
|
|
if (it == priv->mapNodeRows.end())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeerTableModel::sort(int column, Qt::SortOrder order)
|
|
|
|
{
|
|
|
|
priv->sortColumn = column;
|
|
|
|
priv->sortOrder = order;
|
|
|
|
refresh();
|
|
|
|
}
|