Browse Source

Merge pull request #3685

8e29623 [Qt] show number of in/out connections in debug console (Philip Kaufmann)
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
218be95903
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 13
      src/qt/clientmodel.cpp
  2. 10
      src/qt/clientmodel.h
  3. 9
      src/qt/rpcconsole.cpp

13
src/qt/clientmodel.cpp

@ -39,9 +39,18 @@ ClientModel::~ClientModel() @@ -39,9 +39,18 @@ ClientModel::~ClientModel()
unsubscribeFromCoreSignals();
}
int ClientModel::getNumConnections() const
int ClientModel::getNumConnections(unsigned int flags) const
{
return vNodes.size();
LOCK(cs_vNodes);
if (flags == CONNECTIONS_ALL) // Shortcut if we want total
return vNodes.size();
int nNum = 0;
BOOST_FOREACH(CNode* pnode, vNodes)
if (flags & (pnode->fInbound ? CONNECTIONS_IN : CONNECTIONS_OUT))
nNum++;
return nNum;
}
int ClientModel::getNumBlocks() const

10
src/qt/clientmodel.h

@ -25,6 +25,13 @@ enum BlockSource { @@ -25,6 +25,13 @@ enum BlockSource {
BLOCK_SOURCE_NETWORK
};
enum NumConnections {
CONNECTIONS_NONE = 0,
CONNECTIONS_IN = (1U << 0),
CONNECTIONS_OUT = (1U << 1),
CONNECTIONS_ALL = (CONNECTIONS_IN | CONNECTIONS_OUT),
};
/** Model for Bitcoin network client. */
class ClientModel : public QObject
{
@ -36,7 +43,8 @@ public: @@ -36,7 +43,8 @@ public:
OptionsModel *getOptionsModel();
int getNumConnections() const;
//! Return number of connections, default is in- and outbound (total)
int getNumConnections(unsigned int flags = CONNECTIONS_ALL) const;
int getNumBlocks() const;
int getNumBlocksAtStartup();

9
src/qt/rpcconsole.cpp

@ -349,7 +349,14 @@ void RPCConsole::message(int category, const QString &message, bool html) @@ -349,7 +349,14 @@ void RPCConsole::message(int category, const QString &message, bool html)
void RPCConsole::setNumConnections(int count)
{
ui->numberOfConnections->setText(QString::number(count));
if (!clientModel)
return;
QString connections = QString::number(count) + " (";
connections += tr("In:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_IN)) + " / ";
connections += tr("Out:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_OUT)) + ")";
ui->numberOfConnections->setText(connections);
}
void RPCConsole::setNumBlocks(int count, int countOfPeers)

Loading…
Cancel
Save