Skip to content

Commit 3f2c9dc

Browse files
committed
qt: Drop PeerTablePriv class
This commit does not change behavior.
1 parent 5ff7644 commit 3f2c9dc

File tree

2 files changed

+23
-49
lines changed

2 files changed

+23
-49
lines changed

src/qt/peertablemodel.cpp

Lines changed: 18 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -14,52 +14,11 @@
1414
#include <QList>
1515
#include <QTimer>
1616

17-
// private implementation
18-
class PeerTablePriv
19-
{
20-
public:
21-
/** Local cache of peer information */
22-
QList<CNodeCombinedStats> cachedNodeStats;
23-
24-
/** Pull a full list of peers from vNodes into our cache */
25-
void refreshPeers(interfaces::Node& node)
26-
{
27-
cachedNodeStats.clear();
28-
29-
interfaces::Node::NodesStats nodes_stats;
30-
node.getNodesStats(nodes_stats);
31-
cachedNodeStats.reserve(nodes_stats.size());
32-
for (const auto& node_stats : nodes_stats)
33-
{
34-
CNodeCombinedStats stats;
35-
stats.nodeStats = std::get<0>(node_stats);
36-
stats.fNodeStateStatsAvailable = std::get<1>(node_stats);
37-
stats.nodeStateStats = std::get<2>(node_stats);
38-
cachedNodeStats.append(stats);
39-
}
40-
}
41-
42-
int size() const
43-
{
44-
return cachedNodeStats.size();
45-
}
46-
47-
CNodeCombinedStats *index(int idx)
48-
{
49-
if (idx >= 0 && idx < cachedNodeStats.size())
50-
return &cachedNodeStats[idx];
51-
52-
return nullptr;
53-
}
54-
};
55-
5617
PeerTableModel::PeerTableModel(interfaces::Node& node, QObject* parent) :
5718
QAbstractTableModel(parent),
5819
m_node(node),
5920
timer(nullptr)
6021
{
61-
priv.reset(new PeerTablePriv());
62-
6322
// set up timer for auto refresh
6423
timer = new QTimer(this);
6524
connect(timer, &QTimer::timeout, this, &PeerTableModel::refresh);
@@ -89,7 +48,7 @@ int PeerTableModel::rowCount(const QModelIndex& parent) const
8948
if (parent.isValid()) {
9049
return 0;
9150
}
92-
return priv->size();
51+
return m_peers_data.size();
9352
}
9453

9554
int PeerTableModel::columnCount(const QModelIndex& parent) const
@@ -167,16 +126,29 @@ Qt::ItemFlags PeerTableModel::flags(const QModelIndex &index) const
167126
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex& parent) const
168127
{
169128
Q_UNUSED(parent);
170-
CNodeCombinedStats *data = priv->index(row);
171129

172-
if (data)
173-
return createIndex(row, column, data);
130+
if (0 <= row && row < rowCount() && 0 <= column && column < columnCount()) {
131+
return createIndex(row, column, const_cast<CNodeCombinedStats*>(&m_peers_data[row]));
132+
}
133+
174134
return QModelIndex();
175135
}
176136

177137
void PeerTableModel::refresh()
178138
{
139+
interfaces::Node::NodesStats nodes_stats;
140+
m_node.getNodesStats(nodes_stats);
141+
decltype(m_peers_data) new_peers_data;
142+
new_peers_data.reserve(nodes_stats.size());
143+
for (const auto& node_stats : nodes_stats) {
144+
CNodeCombinedStats stats;
145+
stats.nodeStats = std::get<0>(node_stats);
146+
stats.fNodeStateStatsAvailable = std::get<1>(node_stats);
147+
stats.nodeStateStats = std::get<2>(node_stats);
148+
new_peers_data.append(stats);
149+
}
150+
179151
Q_EMIT layoutAboutToBeChanged();
180-
priv->refreshPeers(m_node);
152+
m_peers_data.swap(new_peers_data);
181153
Q_EMIT layoutChanged();
182154
}

src/qt/peertablemodel.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
#include <net_processing.h> // For CNodeStateStats
99
#include <net.h>
1010

11-
#include <memory>
12-
1311
#include <QAbstractTableModel>
12+
#include <QList>
13+
#include <QModelIndex>
1414
#include <QStringList>
15+
#include <QVariant>
1516

1617
class PeerTablePriv;
1718

@@ -72,9 +73,10 @@ public Q_SLOTS:
7273
void refresh();
7374

7475
private:
76+
//! Internal peer data structure.
77+
QList<CNodeCombinedStats> m_peers_data{};
7578
interfaces::Node& m_node;
7679
const QStringList columns{tr("Peer Id"), tr("Address"), tr("Network"), tr("Ping"), tr("Sent"), tr("Received"), tr("User Agent")};
77-
std::unique_ptr<PeerTablePriv> priv;
7880
QTimer *timer;
7981
};
8082

0 commit comments

Comments
 (0)