2021-12-30 19:36:57 +02:00
|
|
|
// Copyright (c) 2011-2021 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
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2021-02-22 09:55:10 +02:00
|
|
|
#include <QList>
|
|
|
|
#include <QModelIndex>
|
2014-05-23 12:09:59 -05:00
|
|
|
#include <QStringList>
|
2021-02-22 09:55:10 +02:00
|
|
|
#include <QVariant>
|
2014-05-23 12:09:59 -05:00
|
|
|
|
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,
|
2022-02-10 01:45:25 -05:00
|
|
|
Age,
|
2021-01-09 20:10:12 +01:00
|
|
|
Address,
|
2021-04-23 14:57:05 +02:00
|
|
|
Direction,
|
2021-01-09 20:10:12 +01:00
|
|
|
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
|
|
|
|
@{*/
|
2021-02-22 09:54:43 +02:00
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override;
|
2020-03-14 08:49:59 +02:00
|
|
|
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:
|
2021-02-22 09:55:10 +02:00
|
|
|
//! Internal peer data structure.
|
|
|
|
QList<CNodeCombinedStats> m_peers_data{};
|
2018-04-07 03:42:02 -04:00
|
|
|
interfaces::Node& m_node;
|
2021-05-21 22:42:28 -04:00
|
|
|
const QStringList columns{
|
|
|
|
/*: Title of Peers Table column which contains a
|
|
|
|
unique number used to identify a connection. */
|
|
|
|
tr("Peer"),
|
2022-02-10 01:45:25 -05:00
|
|
|
/*: Title of Peers Table column which indicates the duration (length of time)
|
|
|
|
since the peer connection started. */
|
|
|
|
tr("Age"),
|
2021-05-21 22:42:28 -04:00
|
|
|
/*: Title of Peers Table column which contains the
|
|
|
|
IP/Onion/I2P address of the connected peer. */
|
|
|
|
tr("Address"),
|
2021-04-23 14:57:05 +02:00
|
|
|
/*: Title of Peers Table column which indicates the direction
|
|
|
|
the peer connection was initiated from. */
|
|
|
|
tr("Direction"),
|
2021-05-21 22:42:28 -04:00
|
|
|
/*: Title of Peers Table column which describes the type of
|
|
|
|
peer connection. The "type" describes why the connection exists. */
|
|
|
|
tr("Type"),
|
|
|
|
/*: Title of Peers Table column which states the network the peer
|
|
|
|
connected through. */
|
|
|
|
tr("Network"),
|
|
|
|
/*: Title of Peers Table column which indicates the current latency
|
|
|
|
of the connection with the peer. */
|
|
|
|
tr("Ping"),
|
|
|
|
/*: Title of Peers Table column which indicates the total amount of
|
|
|
|
network information we have sent to the peer. */
|
|
|
|
tr("Sent"),
|
|
|
|
/*: Title of Peers Table column which indicates the total amount of
|
|
|
|
network information we have received from the peer. */
|
|
|
|
tr("Received"),
|
|
|
|
/*: Title of Peers Table column which contains the peer's
|
|
|
|
User Agent string. */
|
|
|
|
tr("User Agent")};
|
2014-05-23 12:09:59 -05:00
|
|
|
QTimer *timer;
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_PEERTABLEMODEL_H
|