Files
thehub/hub-qt/peertablemodel.cpp
T

251 lines
6.7 KiB
C++
Raw Permalink Normal View History

2017-11-09 19:34:51 +01:00
/*
* This file is part of the Flowee project
* Copyright (C) 2011-2015 The Bitcoin Core developers
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2014-05-23 12:09:59 -05:00
#include "peertablemodel.h"
#include "clientmodel.h"
2014-06-04 12:06:18 +02:00
#include "guiconstants.h"
#include "guiutil.h"
2014-05-23 12:09:59 -05:00
#include "sync.h"
#include <QDebug>
#include <QList>
#include <QTimer>
2018-12-30 15:33:11 +01:00
#include <boost/foreach.hpp>
2014-05-23 12:09:59 -05:00
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 12:09:59 -05:00
if (order == Qt::DescendingOrder)
std::swap(pLeft, pRight);
switch(column)
{
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:
return pLeft->dPingTime < pRight->dPingTime;
2014-05-23 12:09:59 -05: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 */
2014-06-04 12:06:18 +02:00
void refreshPeers()
{
2014-05-23 12:09:59 -05:00
{
TRY_LOCK(cs_vNodes, lockNodes);
2014-05-23 12:09:59 -05:00
if (!lockNodes)
{
// skip the refresh if we can't immediately get the lock
return;
}
cachedNodeStats.clear();
#if QT_VERSION >= 0x040700
cachedNodeStats.reserve(vNodes.size());
#endif
2015-07-14 13:59:05 +02:00
Q_FOREACH (CNode* pnode, vNodes)
2014-05-23 12:09:59 -05:00
{
CNodeCombinedStats stats;
2014-06-04 12:06:18 +02:00
stats.nodeStateStats.nMisbehavior = 0;
stats.nodeStateStats.nSyncHeight = -1;
2015-06-01 09:09:51 +02:00
stats.nodeStateStats.nCommonHeight = -1;
2014-06-04 12:06:18 +02:00
stats.fNodeStateStatsAvailable = false;
pnode->copyStats(stats.nodeStats);
2014-05-23 12:09:59 -05:00
cachedNodeStats.append(stats);
}
}
2014-06-04 12:06:18 +02:00
// Try to retrieve the CNodeStateStats for each node.
2014-08-10 02:28:23 +02:00
{
TRY_LOCK(cs_main, lockMain);
if (lockMain)
{
BOOST_FOREACH(CNodeCombinedStats &stats, cachedNodeStats)
stats.fNodeStateStatsAvailable = GetNodeStateStats(stats.nodeStats.nodeid, stats.nodeStateStats);
}
}
2014-05-23 12:09:59 -05:00
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 12:09:59 -05:00
qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder));
// build index map
mapNodeRows.clear();
int row = 0;
2015-07-14 13:59:05 +02:00
Q_FOREACH (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 12:09:59 -05:00
}
2015-06-21 13:07:08 +02:00
int size() const
2014-05-23 12:09:59 -05: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 12:09:59 -05:00
return &cachedNodeStats[idx];
2015-06-21 13:07:08 +02:00
return 0;
2014-05-23 12:09:59 -05:00
}
};
PeerTableModel::PeerTableModel(ClientModel *parent) :
2014-06-04 12:06:18 +02:00
QAbstractTableModel(parent),
clientModel(parent),
timer(0)
2014-05-23 12:09:59 -05:00
{
columns << tr("Node/Service") << tr("User Agent") << tr("Ping Time");
2014-05-23 12:09:59 -05:00
priv = new PeerTablePriv();
// default to unsorted
priv->sortColumn = -1;
// set up timer for auto refresh
timer = new QTimer();
connect(timer, SIGNAL(timeout()), SLOT(refresh()));
2014-06-04 12:06:18 +02:00
timer->setInterval(MODEL_UPDATE_DELAY);
2014-05-23 12:09:59 -05:00
// load initial data
refresh();
}
2014-06-04 12:06:18 +02:00
void PeerTableModel::startAutoRefresh()
2014-05-23 12:09:59 -05: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);
2014-06-04 12:06:18 +02:00
return columns.length();;
2014-05-23 12:09:59 -05: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 12:09:59 -05:00
switch(index.column())
{
case Address:
2014-06-04 12:06:18 +02:00
return QString::fromStdString(rec->nodeStats.addrName);
2014-05-23 12:09:59 -05:00
case Subversion:
2014-06-04 12:06:18 +02:00
return QString::fromStdString(rec->nodeStats.cleanSubVer);
case Ping:
return GUIUtil::formatPingTime(rec->nodeStats.dPingTime);
2014-05-23 12:09:59 -05:00
}
2014-08-04 16:25:21 +02:00
} else if (role == Qt::TextAlignmentRole) {
if (index.column() == Ping)
2015-06-21 13:07:08 +02:00
return (QVariant)(Qt::AlignRight | Qt::AlignVCenter);
2014-05-23 12:09:59 -05:00
}
2014-08-04 16:25:21 +02:00
2014-05-23 12:09:59 -05: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 12:09:59 -05:00
}
2014-06-04 12:06:18 +02:00
const CNodeCombinedStats *PeerTableModel::getNodeStats(int idx)
{
2014-05-23 12:09:59 -05:00
return priv->index(idx);
}
void PeerTableModel::refresh()
{
2015-07-14 13:59:05 +02:00
Q_EMIT layoutAboutToBeChanged();
2014-05-23 12:09:59 -05:00
priv->refreshPeers();
2015-07-14 13:59:05 +02:00
Q_EMIT layoutChanged();
2014-05-23 12:09:59 -05: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();
}