2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2011-2020 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-05-23 12:09:59 -05: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 12:09:59 -05:00
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <net_processing.h> // For CNodeStateStats
|
|
|
|
#include <net.h>
|
2014-05-23 12:09:59 -05:00
|
|
|
|
2018-04-02 18:31:40 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2014-06-03 14:42:20 +02:00
|
|
|
class PeerTablePriv;
|
2014-05-23 12:09:59 -05:00
|
|
|
|
2018-04-07 03:42:02 -04:00
|
|
|
namespace interfaces {
|
2017-04-17 15:57:19 -04:00
|
|
|
class Node;
|
|
|
|
}
|
|
|
|
|
2014-06-03 14:42:20 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2014-05-23 12:09:59 -05:00
|
|
|
class QTimer;
|
2014-06-03 14:42:20 +02:00
|
|
|
QT_END_NAMESPACE
|
2014-05-23 12:09:59 -05:00
|
|
|
|
|
|
|
struct CNodeCombinedStats {
|
2014-06-04 12:06:18 +02:00
|
|
|
CNodeStats nodeStats;
|
|
|
|
CNodeStateStats nodeStateStats;
|
|
|
|
bool fNodeStateStatsAvailable;
|
2014-05-23 12:09:59 -05:00
|
|
|
};
|
2020-12-24 12:15:57 +02:00
|
|
|
Q_DECLARE_METATYPE(CNodeCombinedStats*)
|
2014-05-23 12:09:59 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
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:
|
2020-02-03 14:48:27 +00:00
|
|
|
explicit PeerTableModel(interfaces::Node& node, QObject* parent);
|
2016-11-18 15:47:20 +01:00
|
|
|
~PeerTableModel();
|
2014-06-04 12:06:18 +02:00
|
|
|
void startAutoRefresh();
|
2014-05-23 12:09:59 -05:00
|
|
|
void stopAutoRefresh();
|
|
|
|
|
|
|
|
enum ColumnIndex {
|
2016-08-19 15:38:04 -04:00
|
|
|
NetNodeId = 0,
|
2021-01-09 20:10:12 +01:00
|
|
|
Address,
|
|
|
|
ConnectionType,
|
|
|
|
Network,
|
|
|
|
Ping,
|
|
|
|
Sent,
|
|
|
|
Received,
|
|
|
|
Subversion
|
2014-05-23 12:09:59 -05:00
|
|
|
};
|
|
|
|
|
2020-12-24 12:15:57 +02:00
|
|
|
enum {
|
|
|
|
StatsRole = Qt::UserRole,
|
|
|
|
};
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
/** @name Methods overridden from QAbstractTableModel
|
|
|
|
@{*/
|
2020-03-14 08:49:59 +02:00
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
2014-05-23 12:09:59 -05:00
|
|
|
/*@}*/
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2014-05-23 12:09:59 -05:00
|
|
|
void refresh();
|
|
|
|
|
|
|
|
private:
|
2018-04-07 03:42:02 -04:00
|
|
|
interfaces::Node& m_node;
|
2021-04-23 15:08:37 +02:00
|
|
|
const QStringList columns{tr("Peer"), tr("Address"), tr("Type"), tr("Network"), tr("Ping"), tr("Sent"), tr("Received"), tr("User Agent")};
|
2016-11-18 15:47:20 +01:00
|
|
|
std::unique_ptr<PeerTablePriv> priv;
|
2014-05-23 12:09:59 -05:00
|
|
|
QTimer *timer;
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_PEERTABLEMODEL_H
|