2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2011-2017 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.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_PEERTABLEMODEL_H
|
|
|
|
#define BITCOIN_QT_PEERTABLEMODEL_H
|
2014-05-23 19:09:59 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <net_processing.h> // For CNodeStateStats
|
|
|
|
#include <net.h>
|
2014-05-23 19:09:59 +02:00
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
class ClientModel;
|
2014-06-03 14:42:20 +02:00
|
|
|
class PeerTablePriv;
|
2014-05-23 19:09:59 +02:00
|
|
|
|
2014-06-03 14:42:20 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2014-05-23 19:09:59 +02:00
|
|
|
class QTimer;
|
2014-06-03 14:42:20 +02:00
|
|
|
QT_END_NAMESPACE
|
2014-05-23 19:09:59 +02:00
|
|
|
|
|
|
|
struct CNodeCombinedStats {
|
2014-06-04 12:06:18 +02:00
|
|
|
CNodeStats nodeStats;
|
|
|
|
CNodeStateStats nodeStateStats;
|
|
|
|
bool fNodeStateStatsAvailable;
|
2014-05-23 19:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class NodeLessThan
|
|
|
|
{
|
|
|
|
public:
|
2014-06-03 14:42:20 +02:00
|
|
|
NodeLessThan(int nColumn, Qt::SortOrder fOrder) :
|
2014-05-23 19:09:59 +02:00
|
|
|
column(nColumn), order(fOrder) {}
|
|
|
|
bool operator()(const CNodeCombinedStats &left, const CNodeCombinedStats &right) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int column;
|
|
|
|
Qt::SortOrder order;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
Qt model providing information about connected peers, similar to the
|
|
|
|
"getpeerinfo" RPC call. Used by the rpc console UI.
|
|
|
|
*/
|
|
|
|
class PeerTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PeerTableModel(ClientModel *parent = 0);
|
2016-11-18 15:47:20 +01:00
|
|
|
~PeerTableModel();
|
2014-05-23 19:09:59 +02:00
|
|
|
const CNodeCombinedStats *getNodeStats(int idx);
|
|
|
|
int getRowByNodeId(NodeId nodeid);
|
2014-06-04 12:06:18 +02:00
|
|
|
void startAutoRefresh();
|
2014-05-23 19:09:59 +02:00
|
|
|
void stopAutoRefresh();
|
|
|
|
|
|
|
|
enum ColumnIndex {
|
2016-08-19 21:38:04 +02:00
|
|
|
NetNodeId = 0,
|
|
|
|
Address = 1,
|
2017-10-15 01:06:54 +02:00
|
|
|
Ping = 2,
|
|
|
|
Sent = 3,
|
|
|
|
Received = 4,
|
|
|
|
Subversion = 5
|
2014-05-23 19:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** @name Methods overridden from QAbstractTableModel
|
|
|
|
@{*/
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
|
|
void sort(int column, Qt::SortOrder order);
|
|
|
|
/*@}*/
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2014-05-23 19:09:59 +02:00
|
|
|
void refresh();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ClientModel *clientModel;
|
|
|
|
QStringList columns;
|
2016-11-18 15:47:20 +01:00
|
|
|
std::unique_ptr<PeerTablePriv> priv;
|
2014-05-23 19:09:59 +02:00
|
|
|
QTimer *timer;
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_PEERTABLEMODEL_H
|