Skip to content

Commit 1b66f6e

Browse files
committed
qt: Drop PeerTablePriv class
This commit does not change behavior.
1 parent efb7e5a commit 1b66f6e

File tree

2 files changed

+20
-49
lines changed

2 files changed

+20
-49
lines changed

src/qt/peertablemodel.cpp

+15-46
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
@@ -175,16 +134,26 @@ Qt::ItemFlags PeerTableModel::flags(const QModelIndex &index) const
175134
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex& parent) const
176135
{
177136
Q_UNUSED(parent);
178-
CNodeCombinedStats *data = priv->index(row);
179137

180-
if (data)
181-
return createIndex(row, column, data);
138+
if (0 <= row && row < rowCount() && 0 <= column && column < columnCount()) {
139+
return createIndex(row, column, const_cast<CNodeCombinedStats*>(&m_peers_data[row]));
140+
}
141+
182142
return QModelIndex();
183143
}
184144

185145
void PeerTableModel::refresh()
186146
{
147+
interfaces::Node::NodesStats nodes_stats;
148+
m_node.getNodesStats(nodes_stats);
149+
decltype(m_peers_data) new_peers_data;
150+
new_peers_data.reserve(nodes_stats.size());
151+
for (const auto& node_stats : nodes_stats) {
152+
const CNodeCombinedStats stats{std::get<0>(node_stats), std::get<2>(node_stats), std::get<1>(node_stats)};
153+
new_peers_data.append(stats);
154+
}
155+
187156
Q_EMIT layoutAboutToBeChanged();
188-
priv->refreshPeers(m_node);
157+
m_peers_data.swap(new_peers_data);
189158
Q_EMIT layoutChanged();
190159
}

src/qt/peertablemodel.h

+5-3
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

@@ -73,6 +74,8 @@ public Q_SLOTS:
7374
void refresh();
7475

7576
private:
77+
//! Internal peer data structure.
78+
QList<CNodeCombinedStats> m_peers_data{};
7679
interfaces::Node& m_node;
7780
const QStringList columns{
7881
/*: Title of Peers Table column which contains a
@@ -99,7 +102,6 @@ public Q_SLOTS:
99102
/*: Title of Peers Table column which contains the peer's
100103
User Agent string. */
101104
tr("User Agent")};
102-
std::unique_ptr<PeerTablePriv> priv;
103105
QTimer *timer;
104106
};
105107

0 commit comments

Comments
 (0)