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
|
2013-11-04 16:20:43 +01:00
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
2015-12-09 10:53:12 +00:00
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
2017-11-10 13:57:53 +13:00
|
|
|
|
#include <config/bitcoin-config.h>
|
2015-12-09 10:53:12 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
|
#include <qt/rpcconsole.h>
|
2017-08-15 17:31:26 +02:00
|
|
|
|
#include <qt/forms/ui_debugwindow.h>
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2021-02-22 09:51:21 +02:00
|
|
|
|
#include <chainparams.h>
|
|
|
|
|
#include <interfaces/node.h>
|
|
|
|
|
#include <netbase.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
|
#include <qt/bantablemodel.h>
|
|
|
|
|
#include <qt/clientmodel.h>
|
2021-12-03 01:03:11 +02:00
|
|
|
|
#include <qt/guiutil.h>
|
2021-02-22 09:51:21 +02:00
|
|
|
|
#include <qt/peertablesortproxy.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
|
#include <qt/platformstyle.h>
|
2016-09-09 20:55:59 +00:00
|
|
|
|
#include <qt/walletmodel.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
|
#include <rpc/client.h>
|
2021-01-10 14:42:28 +01:00
|
|
|
|
#include <rpc/server.h>
|
2018-10-29 09:13:07 +01:00
|
|
|
|
#include <util/strencodings.h>
|
2021-01-10 14:42:28 +01:00
|
|
|
|
#include <util/string.h>
|
2018-10-22 15:51:11 -07:00
|
|
|
|
#include <util/system.h>
|
2020-04-27 19:47:43 +03:00
|
|
|
|
#include <util/threadnames.h>
|
2013-04-13 00:13:08 -05:00
|
|
|
|
|
2015-09-04 16:11:34 +02:00
|
|
|
|
#include <univalue.h>
|
2014-08-20 15:15:16 -04:00
|
|
|
|
|
2014-06-05 07:00:16 +02:00
|
|
|
|
#ifdef ENABLE_WALLET
|
2020-10-19 15:34:21 -04:00
|
|
|
|
#ifdef USE_BDB
|
2020-10-19 15:12:14 -04:00
|
|
|
|
#include <wallet/bdb.h>
|
2020-10-19 15:34:21 -04:00
|
|
|
|
#endif
|
2020-03-14 08:50:56 +02:00
|
|
|
|
#include <wallet/db.h>
|
2017-07-18 20:19:47 +02:00
|
|
|
|
#include <wallet/wallet.h>
|
2014-06-05 07:00:16 +02:00
|
|
|
|
#endif
|
2014-06-04 22:00:59 +02:00
|
|
|
|
|
2021-05-14 17:28:39 -04:00
|
|
|
|
#include <QAbstractButton>
|
2021-06-28 17:16:48 +03:00
|
|
|
|
#include <QAbstractItemModel>
|
2020-08-09 16:25:22 +03:00
|
|
|
|
#include <QDateTime>
|
2020-01-11 14:35:34 +02:00
|
|
|
|
#include <QFont>
|
2012-04-09 21:07:25 +02:00
|
|
|
|
#include <QKeyEvent>
|
2021-05-12 21:39:48 +03:00
|
|
|
|
#include <QLatin1String>
|
|
|
|
|
#include <QLocale>
|
2015-06-01 15:32:25 +02:00
|
|
|
|
#include <QMenu>
|
2016-11-16 12:32:15 +00:00
|
|
|
|
#include <QMessageBox>
|
2019-08-23 20:30:46 +03:00
|
|
|
|
#include <QScreen>
|
2020-05-17 11:02:17 -04:00
|
|
|
|
#include <QScrollBar>
|
2016-01-22 18:00:36 +01:00
|
|
|
|
#include <QSettings>
|
2020-03-14 08:50:56 +02:00
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QStringList>
|
2021-05-12 21:39:48 +03:00
|
|
|
|
#include <QStyledItemDelegate>
|
2013-04-13 00:13:08 -05:00
|
|
|
|
#include <QTime>
|
2015-08-28 16:46:20 +02:00
|
|
|
|
#include <QTimer>
|
2021-05-12 21:39:48 +03:00
|
|
|
|
#include <QVariant>
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
|
|
|
|
const int CONSOLE_HISTORY = 50;
|
2013-08-23 02:09:32 +10:00
|
|
|
|
const int INITIAL_TRAFFIC_GRAPH_MINS = 30;
|
2016-01-22 18:00:36 +01:00
|
|
|
|
const QSize FONT_RANGE(4, 40);
|
|
|
|
|
const char fontSizeSettingsKey[] = "consoleFontSize";
|
2013-08-23 02:09:32 +10:00
|
|
|
|
|
2012-05-12 12:30:07 +02:00
|
|
|
|
const struct {
|
|
|
|
|
const char *url;
|
|
|
|
|
const char *source;
|
|
|
|
|
} ICON_MAPPING[] = {
|
|
|
|
|
{"cmd-request", ":/icons/tx_input"},
|
|
|
|
|
{"cmd-reply", ":/icons/tx_output"},
|
|
|
|
|
{"cmd-error", ":/icons/tx_output"},
|
|
|
|
|
{"misc", ":/icons/tx_inout"},
|
2017-08-07 07:36:37 +02:00
|
|
|
|
{nullptr, nullptr}
|
2012-05-12 12:30:07 +02:00
|
|
|
|
};
|
|
|
|
|
|
2016-10-04 04:17:27 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2015-03-13 21:51:27 +01:00
|
|
|
|
// don't add private key handling cmd's to the history
|
2016-10-04 04:17:27 +00:00
|
|
|
|
const QStringList historyFilter = QStringList()
|
2015-03-13 21:51:27 +01:00
|
|
|
|
<< "importprivkey"
|
2016-11-22 23:37:23 +00:00
|
|
|
|
<< "importmulti"
|
2017-09-12 14:01:12 -07:00
|
|
|
|
<< "sethdseed"
|
2016-10-04 14:07:50 +00:00
|
|
|
|
<< "signmessagewithprivkey"
|
2017-06-12 12:23:02 -07:00
|
|
|
|
<< "signrawtransactionwithkey"
|
2015-03-13 21:51:27 +01:00
|
|
|
|
<< "walletpassphrase"
|
|
|
|
|
<< "walletpassphrasechange"
|
|
|
|
|
<< "encryptwallet";
|
|
|
|
|
|
2016-10-04 04:17:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
/* Object for executing console RPC commands in a separate thread.
|
|
|
|
|
*/
|
2013-01-23 21:51:02 +01:00
|
|
|
|
class RPCExecutor : public QObject
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2017-04-17 16:38:51 -04:00
|
|
|
|
public:
|
2018-07-26 17:15:32 +02:00
|
|
|
|
explicit RPCExecutor(interfaces::Node& node) : m_node(node) {}
|
2013-01-23 21:51:02 +01:00
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
|
public Q_SLOTS:
|
2019-01-04 12:17:53 +00:00
|
|
|
|
void request(const QString &command, const WalletModel* wallet_model);
|
2013-01-23 21:51:02 +01:00
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
|
Q_SIGNALS:
|
2012-04-09 21:07:25 +02:00
|
|
|
|
void reply(int category, const QString &command);
|
2017-04-17 16:38:51 -04:00
|
|
|
|
|
|
|
|
|
private:
|
2018-04-07 03:42:02 -04:00
|
|
|
|
interfaces::Node& m_node;
|
2012-04-09 21:07:25 +02:00
|
|
|
|
};
|
|
|
|
|
|
2015-08-28 16:46:20 +02:00
|
|
|
|
/** Class for handling RPC timers
|
|
|
|
|
* (used for e.g. re-locking the wallet after a timeout)
|
|
|
|
|
*/
|
|
|
|
|
class QtRPCTimerBase: public QObject, public RPCTimerBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2018-09-13 10:36:41 -07:00
|
|
|
|
QtRPCTimerBase(std::function<void()>& _func, int64_t millis):
|
2016-09-09 13:43:29 +02:00
|
|
|
|
func(_func)
|
2015-08-28 16:46:20 +02:00
|
|
|
|
{
|
|
|
|
|
timer.setSingleShot(true);
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(&timer, &QTimer::timeout, [this]{ func(); });
|
2015-08-28 16:46:20 +02:00
|
|
|
|
timer.start(millis);
|
|
|
|
|
}
|
|
|
|
|
~QtRPCTimerBase() {}
|
|
|
|
|
private:
|
|
|
|
|
QTimer timer;
|
2018-09-13 10:36:41 -07:00
|
|
|
|
std::function<void()> func;
|
2015-08-28 16:46:20 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QtRPCTimerInterface: public RPCTimerInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
~QtRPCTimerInterface() {}
|
2020-03-14 08:49:59 +02:00
|
|
|
|
const char *Name() override { return "Qt"; }
|
|
|
|
|
RPCTimerBase* NewTimer(std::function<void()>& func, int64_t millis) override
|
2015-08-28 16:46:20 +02:00
|
|
|
|
{
|
|
|
|
|
return new QtRPCTimerBase(func, millis);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-12 21:39:48 +03:00
|
|
|
|
class PeerIdViewDelegate : public QStyledItemDelegate
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit PeerIdViewDelegate(QObject* parent = nullptr)
|
|
|
|
|
: QStyledItemDelegate(parent) {}
|
|
|
|
|
|
|
|
|
|
QString displayText(const QVariant& value, const QLocale& locale) const override
|
|
|
|
|
{
|
|
|
|
|
// Additional spaces should visually separate right-aligned content
|
|
|
|
|
// from the next column to the right.
|
|
|
|
|
return value.toString() + QLatin1String(" ");
|
|
|
|
|
}
|
|
|
|
|
};
|
2015-08-28 16:46:20 +02:00
|
|
|
|
|
2017-08-15 17:31:26 +02:00
|
|
|
|
#include <qt/rpcconsole.moc>
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2012-08-30 21:42:18 +02:00
|
|
|
|
/**
|
2016-11-16 10:56:32 +00:00
|
|
|
|
* Split shell command line into a list of arguments and optionally execute the command(s).
|
2016-08-20 11:19:35 +02:00
|
|
|
|
* Aims to emulate \c bash and friends.
|
2012-08-30 21:42:18 +02:00
|
|
|
|
*
|
2016-11-16 10:56:32 +00:00
|
|
|
|
* - Command nesting is possible with parenthesis; for example: validateaddress(getnewaddress())
|
2016-08-20 11:19:35 +02:00
|
|
|
|
* - Arguments are delimited with whitespace or comma
|
2012-08-30 21:42:18 +02:00
|
|
|
|
* - Extra whitespace at the beginning and end and between arguments will be ignored
|
2012-08-30 21:42:18 +02:00
|
|
|
|
* - Text can be "double" or 'single' quoted
|
|
|
|
|
* - The backslash \c \ is used as escape character
|
2012-08-30 21:42:18 +02:00
|
|
|
|
* - Outside quotes, any character can be escaped
|
2012-08-30 21:42:18 +02:00
|
|
|
|
* - Within double quotes, only escape \c " and backslashes before a \c " or another backslash
|
|
|
|
|
* - Within single quotes, no escaping is possible and no special interpretation takes place
|
2012-08-30 21:42:18 +02:00
|
|
|
|
*
|
2017-04-17 16:38:51 -04:00
|
|
|
|
* @param[in] node optional node to execute command on
|
2018-08-08 21:12:14 +02:00
|
|
|
|
* @param[out] strResult stringified result from the executed command(chain)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
* @param[in] strCommand Command line to split
|
2016-11-16 10:56:32 +00:00
|
|
|
|
* @param[in] fExecute set true if you want the command to be executed
|
2016-11-16 11:36:21 +00:00
|
|
|
|
* @param[out] pstrFilteredOut Command line, filtered to remove any sensitive data
|
2012-08-30 21:42:18 +02:00
|
|
|
|
*/
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
2019-01-04 12:17:53 +00:00
|
|
|
|
bool RPCConsole::RPCParseCommandLine(interfaces::Node* node, std::string &strResult, const std::string &strCommand, const bool fExecute, std::string * const pstrFilteredOut, const WalletModel* wallet_model)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
std::vector< std::vector<std::string> > stack;
|
|
|
|
|
stack.push_back(std::vector<std::string>());
|
|
|
|
|
|
2012-08-30 21:42:18 +02:00
|
|
|
|
enum CmdParseState
|
|
|
|
|
{
|
|
|
|
|
STATE_EATING_SPACES,
|
2016-12-12 15:38:22 +01:00
|
|
|
|
STATE_EATING_SPACES_IN_ARG,
|
2016-12-14 08:59:09 +01:00
|
|
|
|
STATE_EATING_SPACES_IN_BRACKETS,
|
2012-08-30 21:42:18 +02:00
|
|
|
|
STATE_ARGUMENT,
|
|
|
|
|
STATE_SINGLEQUOTED,
|
|
|
|
|
STATE_DOUBLEQUOTED,
|
|
|
|
|
STATE_ESCAPE_OUTER,
|
2016-08-20 11:19:35 +02:00
|
|
|
|
STATE_ESCAPE_DOUBLEQUOTED,
|
|
|
|
|
STATE_COMMAND_EXECUTED,
|
|
|
|
|
STATE_COMMAND_EXECUTED_INNER
|
2012-08-30 21:42:18 +02:00
|
|
|
|
} state = STATE_EATING_SPACES;
|
|
|
|
|
std::string curarg;
|
2016-08-20 11:19:35 +02:00
|
|
|
|
UniValue lastResult;
|
2016-11-16 11:36:21 +00:00
|
|
|
|
unsigned nDepthInsideSensitive = 0;
|
2016-11-16 12:32:15 +00:00
|
|
|
|
size_t filter_begin_pos = 0, chpos;
|
2016-11-16 11:36:21 +00:00
|
|
|
|
std::vector<std::pair<size_t, size_t>> filter_ranges;
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
2017-01-09 19:31:19 +01:00
|
|
|
|
auto add_to_current_stack = [&](const std::string& strArg) {
|
|
|
|
|
if (stack.back().empty() && (!nDepthInsideSensitive) && historyFilter.contains(QString::fromStdString(strArg), Qt::CaseInsensitive)) {
|
2016-11-16 12:32:15 +00:00
|
|
|
|
nDepthInsideSensitive = 1;
|
|
|
|
|
filter_begin_pos = chpos;
|
|
|
|
|
}
|
2017-03-22 20:34:27 -04:00
|
|
|
|
// Make sure stack is not empty before adding something
|
|
|
|
|
if (stack.empty()) {
|
|
|
|
|
stack.push_back(std::vector<std::string>());
|
|
|
|
|
}
|
2017-01-09 19:31:19 +01:00
|
|
|
|
stack.back().push_back(strArg);
|
2016-11-16 12:32:15 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto close_out_params = [&]() {
|
|
|
|
|
if (nDepthInsideSensitive) {
|
|
|
|
|
if (!--nDepthInsideSensitive) {
|
|
|
|
|
assert(filter_begin_pos);
|
|
|
|
|
filter_ranges.push_back(std::make_pair(filter_begin_pos, chpos));
|
|
|
|
|
filter_begin_pos = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stack.pop_back();
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-20 11:19:35 +02:00
|
|
|
|
std::string strCommandTerminated = strCommand;
|
|
|
|
|
if (strCommandTerminated.back() != '\n')
|
|
|
|
|
strCommandTerminated += "\n";
|
2016-11-16 12:32:15 +00:00
|
|
|
|
for (chpos = 0; chpos < strCommandTerminated.size(); ++chpos)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2016-11-16 11:36:21 +00:00
|
|
|
|
char ch = strCommandTerminated[chpos];
|
2012-08-30 21:42:18 +02:00
|
|
|
|
switch(state)
|
2012-05-12 18:14:29 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case STATE_COMMAND_EXECUTED_INNER:
|
|
|
|
|
case STATE_COMMAND_EXECUTED:
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
bool breakParsing = true;
|
|
|
|
|
switch(ch)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case '[': curarg.clear(); state = STATE_COMMAND_EXECUTED_INNER; break;
|
|
|
|
|
default:
|
|
|
|
|
if (state == STATE_COMMAND_EXECUTED_INNER)
|
|
|
|
|
{
|
|
|
|
|
if (ch != ']')
|
|
|
|
|
{
|
|
|
|
|
// append char to the current argument (which is also used for the query command)
|
|
|
|
|
curarg += ch;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-11-16 10:56:32 +00:00
|
|
|
|
if (curarg.size() && fExecute)
|
2016-08-20 11:19:35 +02:00
|
|
|
|
{
|
|
|
|
|
// if we have a value query, query arrays with index and objects with a string key
|
|
|
|
|
UniValue subelement;
|
|
|
|
|
if (lastResult.isArray())
|
|
|
|
|
{
|
2021-10-05 14:47:12 +02:00
|
|
|
|
const auto parsed{ToIntegral<size_t>(curarg)};
|
|
|
|
|
if (!parsed) {
|
|
|
|
|
throw std::runtime_error("Invalid result query");
|
|
|
|
|
}
|
|
|
|
|
subelement = lastResult[parsed.value()];
|
2016-08-20 11:19:35 +02:00
|
|
|
|
}
|
|
|
|
|
else if (lastResult.isObject())
|
|
|
|
|
subelement = find_value(lastResult, curarg);
|
|
|
|
|
else
|
|
|
|
|
throw std::runtime_error("Invalid result query"); //no array or object: abort
|
|
|
|
|
lastResult = subelement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
state = STATE_COMMAND_EXECUTED;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// don't break parsing when the char is required for the next argument
|
|
|
|
|
breakParsing = false;
|
|
|
|
|
|
|
|
|
|
// pop the stack and return the result to the current command arguments
|
2016-11-16 12:32:15 +00:00
|
|
|
|
close_out_params();
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
|
|
|
|
// don't stringify the json in case of a string to avoid doublequotes
|
|
|
|
|
if (lastResult.isStr())
|
|
|
|
|
curarg = lastResult.get_str();
|
|
|
|
|
else
|
|
|
|
|
curarg = lastResult.write(2);
|
|
|
|
|
|
|
|
|
|
// if we have a non empty result, use it as stack argument otherwise as general result
|
|
|
|
|
if (curarg.size())
|
|
|
|
|
{
|
|
|
|
|
if (stack.size())
|
2016-11-16 12:32:15 +00:00
|
|
|
|
add_to_current_stack(curarg);
|
2016-08-20 11:19:35 +02:00
|
|
|
|
else
|
|
|
|
|
strResult = curarg;
|
|
|
|
|
}
|
|
|
|
|
curarg.clear();
|
|
|
|
|
// assume eating space state
|
|
|
|
|
state = STATE_EATING_SPACES;
|
2012-08-30 21:42:18 +02:00
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
if (breakParsing)
|
|
|
|
|
break;
|
2021-03-13 21:23:17 +02:00
|
|
|
|
[[fallthrough]];
|
2016-08-20 11:19:35 +02:00
|
|
|
|
}
|
|
|
|
|
case STATE_ARGUMENT: // In or after argument
|
2016-12-12 15:38:22 +01:00
|
|
|
|
case STATE_EATING_SPACES_IN_ARG:
|
2016-12-14 08:59:09 +01:00
|
|
|
|
case STATE_EATING_SPACES_IN_BRACKETS:
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case STATE_EATING_SPACES: // Handle runs of whitespace
|
|
|
|
|
switch(ch)
|
|
|
|
|
{
|
|
|
|
|
case '"': state = STATE_DOUBLEQUOTED; break;
|
|
|
|
|
case '\'': state = STATE_SINGLEQUOTED; break;
|
|
|
|
|
case '\\': state = STATE_ESCAPE_OUTER; break;
|
|
|
|
|
case '(': case ')': case '\n':
|
2016-12-14 08:59:09 +01:00
|
|
|
|
if (state == STATE_EATING_SPACES_IN_ARG)
|
|
|
|
|
throw std::runtime_error("Invalid Syntax");
|
2016-08-20 11:19:35 +02:00
|
|
|
|
if (state == STATE_ARGUMENT)
|
|
|
|
|
{
|
|
|
|
|
if (ch == '(' && stack.size() && stack.back().size() > 0)
|
2016-11-16 11:36:21 +00:00
|
|
|
|
{
|
|
|
|
|
if (nDepthInsideSensitive) {
|
|
|
|
|
++nDepthInsideSensitive;
|
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
stack.push_back(std::vector<std::string>());
|
2016-11-16 11:36:21 +00:00
|
|
|
|
}
|
2016-12-12 15:38:22 +01:00
|
|
|
|
|
|
|
|
|
// don't allow commands after executed commands on baselevel
|
|
|
|
|
if (!stack.size())
|
|
|
|
|
throw std::runtime_error("Invalid Syntax");
|
|
|
|
|
|
2016-11-16 12:32:15 +00:00
|
|
|
|
add_to_current_stack(curarg);
|
2016-08-20 11:19:35 +02:00
|
|
|
|
curarg.clear();
|
2016-12-14 08:59:09 +01:00
|
|
|
|
state = STATE_EATING_SPACES_IN_BRACKETS;
|
2016-08-20 11:19:35 +02:00
|
|
|
|
}
|
|
|
|
|
if ((ch == ')' || ch == '\n') && stack.size() > 0)
|
|
|
|
|
{
|
2016-11-16 10:56:32 +00:00
|
|
|
|
if (fExecute) {
|
|
|
|
|
// Convert argument list to JSON objects in method-dependent way,
|
|
|
|
|
// and pass it along with the method name to the dispatcher.
|
2017-04-17 16:38:51 -04:00
|
|
|
|
UniValue params = RPCConvertValues(stack.back()[0], std::vector<std::string>(stack.back().begin() + 1, stack.back().end()));
|
|
|
|
|
std::string method = stack.back()[0];
|
|
|
|
|
std::string uri;
|
2017-07-18 20:19:47 +02:00
|
|
|
|
#ifdef ENABLE_WALLET
|
2019-01-04 12:17:53 +00:00
|
|
|
|
if (wallet_model) {
|
|
|
|
|
QByteArray encodedName = QUrl::toPercentEncoding(wallet_model->getWalletName());
|
2017-04-17 16:38:51 -04:00
|
|
|
|
uri = "/wallet/"+std::string(encodedName.constData(), encodedName.length());
|
2017-07-18 20:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2017-04-17 16:38:51 -04:00
|
|
|
|
assert(node);
|
|
|
|
|
lastResult = node->executeRpc(method, params, uri);
|
2016-11-16 10:56:32 +00:00
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
|
|
|
|
state = STATE_COMMAND_EXECUTED;
|
|
|
|
|
curarg.clear();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ' ': case ',': case '\t':
|
2016-12-14 08:59:09 +01:00
|
|
|
|
if(state == STATE_EATING_SPACES_IN_ARG && curarg.empty() && ch == ',')
|
|
|
|
|
throw std::runtime_error("Invalid Syntax");
|
|
|
|
|
|
|
|
|
|
else if(state == STATE_ARGUMENT) // Space ends argument
|
2016-08-20 11:19:35 +02:00
|
|
|
|
{
|
2016-11-16 12:32:15 +00:00
|
|
|
|
add_to_current_stack(curarg);
|
2016-08-20 11:19:35 +02:00
|
|
|
|
curarg.clear();
|
|
|
|
|
}
|
2016-12-14 08:59:09 +01:00
|
|
|
|
if ((state == STATE_EATING_SPACES_IN_BRACKETS || state == STATE_ARGUMENT) && ch == ',')
|
|
|
|
|
{
|
|
|
|
|
state = STATE_EATING_SPACES_IN_ARG;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
state = STATE_EATING_SPACES;
|
|
|
|
|
break;
|
|
|
|
|
default: curarg += ch; state = STATE_ARGUMENT;
|
2012-08-30 21:42:18 +02:00
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
break;
|
|
|
|
|
case STATE_SINGLEQUOTED: // Single-quoted string
|
|
|
|
|
switch(ch)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case '\'': state = STATE_ARGUMENT; break;
|
|
|
|
|
default: curarg += ch;
|
2012-08-30 21:42:18 +02:00
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
break;
|
|
|
|
|
case STATE_DOUBLEQUOTED: // Double-quoted string
|
|
|
|
|
switch(ch)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case '"': state = STATE_ARGUMENT; break;
|
|
|
|
|
case '\\': state = STATE_ESCAPE_DOUBLEQUOTED; break;
|
|
|
|
|
default: curarg += ch;
|
2012-08-30 21:42:18 +02:00
|
|
|
|
}
|
2016-08-20 11:19:35 +02:00
|
|
|
|
break;
|
|
|
|
|
case STATE_ESCAPE_OUTER: // '\' outside quotes
|
|
|
|
|
curarg += ch; state = STATE_ARGUMENT;
|
|
|
|
|
break;
|
|
|
|
|
case STATE_ESCAPE_DOUBLEQUOTED: // '\' in double-quoted text
|
|
|
|
|
if(ch != '"' && ch != '\\') curarg += '\\'; // keep '\' for everything but the quote and '\' itself
|
|
|
|
|
curarg += ch; state = STATE_DOUBLEQUOTED;
|
|
|
|
|
break;
|
2012-05-12 18:14:29 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-16 11:36:21 +00:00
|
|
|
|
if (pstrFilteredOut) {
|
2016-11-16 12:32:15 +00:00
|
|
|
|
if (STATE_COMMAND_EXECUTED == state) {
|
|
|
|
|
assert(!stack.empty());
|
|
|
|
|
close_out_params();
|
|
|
|
|
}
|
2016-11-16 11:36:21 +00:00
|
|
|
|
*pstrFilteredOut = strCommand;
|
|
|
|
|
for (auto i = filter_ranges.rbegin(); i != filter_ranges.rend(); ++i) {
|
2016-11-16 12:32:15 +00:00
|
|
|
|
pstrFilteredOut->replace(i->first, i->second - i->first, "(…)");
|
2016-11-16 11:36:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-30 21:42:18 +02:00
|
|
|
|
switch(state) // final state
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case STATE_COMMAND_EXECUTED:
|
|
|
|
|
if (lastResult.isStr())
|
|
|
|
|
strResult = lastResult.get_str();
|
|
|
|
|
else
|
|
|
|
|
strResult = lastResult.write(2);
|
2021-03-13 21:23:17 +02:00
|
|
|
|
[[fallthrough]];
|
2016-08-20 11:19:35 +02:00
|
|
|
|
case STATE_ARGUMENT:
|
|
|
|
|
case STATE_EATING_SPACES:
|
|
|
|
|
return true;
|
|
|
|
|
default: // ERROR to end in one of the other states
|
|
|
|
|
return false;
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
2012-08-30 21:42:18 +02:00
|
|
|
|
}
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2019-01-04 12:17:53 +00:00
|
|
|
|
void RPCExecutor::request(const QString &command, const WalletModel* wallet_model)
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{
|
2012-08-31 17:40:13 +02:00
|
|
|
|
try
|
|
|
|
|
{
|
2016-08-20 11:19:35 +02:00
|
|
|
|
std::string result;
|
|
|
|
|
std::string executableCommand = command.toStdString() + "\n";
|
2017-11-17 22:43:17 -06:00
|
|
|
|
|
|
|
|
|
// Catch the console-only-help command before RPC call is executed and reply with help text as-if a RPC reply.
|
2019-01-16 13:50:06 +02:00
|
|
|
|
if(executableCommand == "help-console\n") {
|
2017-11-17 22:43:17 -06:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_REPLY, QString(("\n"
|
|
|
|
|
"This console accepts RPC commands using the standard syntax.\n"
|
|
|
|
|
" example: getblockhash 0\n\n"
|
|
|
|
|
|
2019-01-16 13:50:06 +02:00
|
|
|
|
"This console can also accept RPC commands using the parenthesized syntax.\n"
|
2017-11-17 22:43:17 -06:00
|
|
|
|
" example: getblockhash(0)\n\n"
|
|
|
|
|
|
|
|
|
|
"Commands may be nested when specified with the parenthesized syntax.\n"
|
|
|
|
|
" example: getblock(getblockhash(0) 1)\n\n"
|
|
|
|
|
|
|
|
|
|
"A space or a comma can be used to delimit arguments for either syntax.\n"
|
|
|
|
|
" example: getblockhash 0\n"
|
|
|
|
|
" getblockhash,0\n\n"
|
|
|
|
|
|
2019-01-16 13:50:06 +02:00
|
|
|
|
"Named results can be queried with a non-quoted key string in brackets using the parenthesized syntax.\n"
|
|
|
|
|
" example: getblock(getblockhash(0) 1)[tx]\n\n"
|
2017-11-17 22:43:17 -06:00
|
|
|
|
|
2019-01-16 13:50:06 +02:00
|
|
|
|
"Results without keys can be queried with an integer in brackets using the parenthesized syntax.\n"
|
|
|
|
|
" example: getblock(getblockhash(0),1)[tx][0]\n\n")));
|
2017-11-17 22:43:17 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-01-04 12:17:53 +00:00
|
|
|
|
if (!RPCConsole::RPCExecuteCommandLine(m_node, result, executableCommand, nullptr, wallet_model)) {
|
2016-08-20 11:19:35 +02:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_ERROR, QString("Parse error: unbalanced ' or \""));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-11-17 22:43:17 -06:00
|
|
|
|
|
2016-08-20 11:19:35 +02:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_REPLY, QString::fromStdString(result));
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
2014-08-20 15:15:16 -04:00
|
|
|
|
catch (UniValue& objError)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2012-08-31 17:40:13 +02:00
|
|
|
|
try // Nice formatting for standard-format error
|
|
|
|
|
{
|
|
|
|
|
int code = find_value(objError, "code").get_int();
|
|
|
|
|
std::string message = find_value(objError, "message").get_str();
|
2015-07-14 13:59:05 +02:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_ERROR, QString::fromStdString(message) + " (code " + QString::number(code) + ")");
|
2012-08-31 17:40:13 +02:00
|
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
|
catch (const std::runtime_error&) // raised when converting to invalid type, i.e. missing code or message
|
2012-08-30 21:42:18 +02:00
|
|
|
|
{ // Show raw JSON object
|
2015-07-14 13:59:05 +02:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_ERROR, QString::fromStdString(objError.write()));
|
2012-08-31 17:40:13 +02:00
|
|
|
|
}
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
|
catch (const std::exception& e)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2015-07-14 13:59:05 +02:00
|
|
|
|
Q_EMIT reply(RPCConsole::CMD_ERROR, QString("Error: ") + QString::fromStdString(e.what()));
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-07 03:42:02 -04:00
|
|
|
|
RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformStyle, QWidget *parent) :
|
2014-11-10 16:41:57 +01:00
|
|
|
|
QWidget(parent),
|
2017-04-17 16:38:51 -04:00
|
|
|
|
m_node(node),
|
2012-04-09 21:07:25 +02:00
|
|
|
|
ui(new Ui::RPCConsole),
|
2018-04-11 11:56:44 +02:00
|
|
|
|
platformStyle(_platformStyle)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
2017-09-15 16:38:42 +12:00
|
|
|
|
QSettings settings;
|
2021-01-21 16:17:27 +02:00
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
|
if (WalletModel::isWalletEnabled()) {
|
|
|
|
|
// RPCConsole widget is a window.
|
|
|
|
|
if (!restoreGeometry(settings.value("RPCConsoleWindowGeometry").toByteArray())) {
|
|
|
|
|
// Restore failed (perhaps missing setting), center the window
|
|
|
|
|
move(QGuiApplication::primaryScreen()->availableGeometry().center() - frameGeometry().center());
|
|
|
|
|
}
|
|
|
|
|
ui->splitter->restoreState(settings.value("RPCConsoleWindowPeersTabSplitterSizes").toByteArray());
|
|
|
|
|
} else
|
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
{
|
|
|
|
|
// RPCConsole is a child widget.
|
|
|
|
|
ui->splitter->restoreState(settings.value("RPCConsoleWidgetPeersTabSplitterSizes").toByteArray());
|
2017-09-15 16:38:42 +12:00
|
|
|
|
}
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2021-03-23 23:49:41 +02:00
|
|
|
|
m_peer_widget_header_state = settings.value("PeersTabPeerHeaderState").toByteArray();
|
|
|
|
|
m_banlist_widget_header_state = settings.value("PeersTabBanlistHeaderState").toByteArray();
|
|
|
|
|
|
2021-01-10 14:42:28 +01:00
|
|
|
|
constexpr QChar nonbreaking_hyphen(8209);
|
|
|
|
|
const std::vector<QString> CONNECTION_TYPE_DOC{
|
2021-05-26 20:03:21 -04:00
|
|
|
|
//: Explanatory text for an inbound peer connection.
|
2021-01-30 18:53:40 +01:00
|
|
|
|
tr("Inbound: initiated by peer"),
|
2021-05-26 20:03:21 -04:00
|
|
|
|
/*: Explanatory text for an outbound peer connection that
|
|
|
|
|
relays all network information. This is the default behavior for
|
|
|
|
|
outbound connections. */
|
2021-01-10 14:42:28 +01:00
|
|
|
|
tr("Outbound Full Relay: default"),
|
2021-05-26 20:03:21 -04:00
|
|
|
|
/*: Explanatory text for an outbound peer connection that relays
|
|
|
|
|
network information about blocks and not transactions or addresses. */
|
2021-01-10 14:42:28 +01:00
|
|
|
|
tr("Outbound Block Relay: does not relay transactions or addresses"),
|
2021-05-26 20:03:21 -04:00
|
|
|
|
/*: Explanatory text for an outbound peer connection that was
|
|
|
|
|
established manually through one of several methods. The numbered
|
|
|
|
|
arguments are stand-ins for the methods available to establish
|
|
|
|
|
manual connections. */
|
2021-01-10 14:42:28 +01:00
|
|
|
|
tr("Outbound Manual: added using RPC %1 or %2/%3 configuration options")
|
|
|
|
|
.arg("addnode")
|
|
|
|
|
.arg(QString(nonbreaking_hyphen) + "addnode")
|
|
|
|
|
.arg(QString(nonbreaking_hyphen) + "connect"),
|
2021-05-26 20:03:21 -04:00
|
|
|
|
/*: Explanatory text for a short-lived outbound peer connection that
|
|
|
|
|
is used to test the aliveness of known addresses. */
|
2021-01-10 14:42:28 +01:00
|
|
|
|
tr("Outbound Feeler: short-lived, for testing addresses"),
|
2021-05-26 20:03:21 -04:00
|
|
|
|
/*: Explanatory text for a short-lived outbound peer connection that is used
|
|
|
|
|
to request addresses from a peer. */
|
2021-01-10 14:42:28 +01:00
|
|
|
|
tr("Outbound Address Fetch: short-lived, for soliciting addresses")};
|
|
|
|
|
const QString list{"<ul><li>" + Join(CONNECTION_TYPE_DOC, QString("</li><li>")) + "</li></ul>"};
|
|
|
|
|
ui->peerConnectionTypeLabel->setToolTip(ui->peerConnectionTypeLabel->toolTip().arg(list));
|
2021-01-30 23:54:12 +01:00
|
|
|
|
const QString hb_list{"<ul><li>\""
|
2021-02-23 18:11:42 +01:00
|
|
|
|
+ ts.to + "\" – " + tr("we selected the peer for high bandwidth relay") + "</li><li>\""
|
|
|
|
|
+ ts.from + "\" – " + tr("the peer selected us for high bandwidth relay") + "</li><li>\""
|
|
|
|
|
+ ts.no + "\" – " + tr("no high bandwidth relay selected") + "</li></ul>"};
|
2021-01-30 23:54:12 +01:00
|
|
|
|
ui->peerHighBandwidthLabel->setToolTip(ui->peerHighBandwidthLabel->toolTip().arg(hb_list));
|
2018-10-06 00:05:51 +03:00
|
|
|
|
ui->dataDir->setToolTip(ui->dataDir->toolTip().arg(QString(nonbreaking_hyphen) + "datadir"));
|
|
|
|
|
ui->blocksDir->setToolTip(ui->blocksDir->toolTip().arg(QString(nonbreaking_hyphen) + "blocksdir"));
|
2019-06-26 10:28:13 -04:00
|
|
|
|
ui->openDebugLogfileButton->setToolTip(ui->openDebugLogfileButton->toolTip().arg(PACKAGE_NAME));
|
2015-12-09 10:53:12 +00:00
|
|
|
|
|
2015-07-28 15:20:14 +02:00
|
|
|
|
if (platformStyle->getImagesOnButtons()) {
|
|
|
|
|
ui->openDebugLogfileButton->setIcon(platformStyle->SingleColorIcon(":/icons/export"));
|
|
|
|
|
}
|
|
|
|
|
ui->clearButton->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));
|
2021-04-18 15:25:56 +03:00
|
|
|
|
|
2016-01-22 18:00:36 +01:00
|
|
|
|
ui->fontBiggerButton->setIcon(platformStyle->SingleColorIcon(":/icons/fontbigger"));
|
2021-04-18 15:25:56 +03:00
|
|
|
|
//: Main shortcut to increase the RPC console font size.
|
|
|
|
|
ui->fontBiggerButton->setShortcut(tr("Ctrl++"));
|
|
|
|
|
//: Secondary shortcut to increase the RPC console font size.
|
|
|
|
|
GUIUtil::AddButtonShortcut(ui->fontBiggerButton, tr("Ctrl+="));
|
|
|
|
|
|
2016-01-22 18:00:36 +01:00
|
|
|
|
ui->fontSmallerButton->setIcon(platformStyle->SingleColorIcon(":/icons/fontsmaller"));
|
2021-04-18 15:25:56 +03:00
|
|
|
|
//: Main shortcut to decrease the RPC console font size.
|
|
|
|
|
ui->fontSmallerButton->setShortcut(tr("Ctrl+-"));
|
|
|
|
|
//: Secondary shortcut to decrease the RPC console font size.
|
|
|
|
|
GUIUtil::AddButtonShortcut(ui->fontSmallerButton, tr("Ctrl+_"));
|
2012-05-20 15:49:17 +02:00
|
|
|
|
|
2021-06-30 13:27:31 -04:00
|
|
|
|
ui->promptIcon->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/prompticon")));
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
// Install event filter for up and down arrow
|
|
|
|
|
ui->lineEdit->installEventFilter(this);
|
2020-05-17 01:53:31 -03:00
|
|
|
|
ui->lineEdit->setMaxLength(16 * 1024 * 1024);
|
2012-09-09 20:07:22 +02:00
|
|
|
|
ui->messagesWidget->installEventFilter(this);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2021-05-14 17:28:39 -04:00
|
|
|
|
connect(ui->clearButton, &QAbstractButton::clicked, [this] { clear(); });
|
|
|
|
|
connect(ui->fontBiggerButton, &QAbstractButton::clicked, this, &RPCConsole::fontBigger);
|
|
|
|
|
connect(ui->fontSmallerButton, &QAbstractButton::clicked, this, &RPCConsole::fontSmaller);
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(ui->btnClearTrafficGraph, &QPushButton::clicked, ui->trafficGraph, &TrafficGraphWidget::clear);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2018-03-18 15:35:51 +07:00
|
|
|
|
// disable the wallet selector by default
|
|
|
|
|
ui->WalletSelector->setVisible(false);
|
|
|
|
|
ui->WalletSelectorLabel->setVisible(false);
|
|
|
|
|
|
2015-08-28 16:46:20 +02:00
|
|
|
|
// Register RPC timer interface
|
|
|
|
|
rpcTimerInterface = new QtRPCTimerInterface();
|
2016-01-08 11:03:52 +01:00
|
|
|
|
// avoid accidentally overwriting an existing, non QTThread
|
|
|
|
|
// based timer interface
|
2017-04-17 16:38:51 -04:00
|
|
|
|
m_node.rpcSetTimerInterfaceIfUnset(rpcTimerInterface);
|
2012-06-14 19:18:30 +02:00
|
|
|
|
|
2013-08-23 02:09:32 +10:00
|
|
|
|
setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);
|
2020-06-27 11:41:17 +01:00
|
|
|
|
updateDetailWidget();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2020-01-11 14:35:34 +02:00
|
|
|
|
consoleFontSize = settings.value(fontSizeSettingsKey, QFont().pointSize()).toInt();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
clear();
|
2019-04-07 21:33:35 +02:00
|
|
|
|
|
|
|
|
|
GUIUtil::handleCloseWindowShortcut(this);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RPCConsole::~RPCConsole()
|
|
|
|
|
{
|
2017-09-15 16:38:42 +12:00
|
|
|
|
QSettings settings;
|
2021-01-21 16:17:27 +02:00
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
|
if (WalletModel::isWalletEnabled()) {
|
|
|
|
|
// RPCConsole widget is a window.
|
|
|
|
|
settings.setValue("RPCConsoleWindowGeometry", saveGeometry());
|
|
|
|
|
settings.setValue("RPCConsoleWindowPeersTabSplitterSizes", ui->splitter->saveState());
|
|
|
|
|
} else
|
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
{
|
|
|
|
|
// RPCConsole is a child widget.
|
|
|
|
|
settings.setValue("RPCConsoleWidgetPeersTabSplitterSizes", ui->splitter->saveState());
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-23 23:49:41 +02:00
|
|
|
|
settings.setValue("PeersTabPeerHeaderState", m_peer_widget_header_state);
|
|
|
|
|
settings.setValue("PeersTabBanlistHeaderState", m_banlist_widget_header_state);
|
|
|
|
|
|
2017-04-17 16:38:51 -04:00
|
|
|
|
m_node.rpcUnsetTimerInterface(rpcTimerInterface);
|
2015-08-28 16:46:20 +02:00
|
|
|
|
delete rpcTimerInterface;
|
2012-04-09 21:07:25 +02:00
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RPCConsole::eventFilter(QObject* obj, QEvent *event)
|
|
|
|
|
{
|
2012-09-09 20:07:22 +02:00
|
|
|
|
if(event->type() == QEvent::KeyPress) // Special key handling
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2012-09-09 20:07:22 +02:00
|
|
|
|
QKeyEvent *keyevt = static_cast<QKeyEvent*>(event);
|
|
|
|
|
int key = keyevt->key();
|
|
|
|
|
Qt::KeyboardModifiers mod = keyevt->modifiers();
|
|
|
|
|
switch(key)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2012-09-09 20:07:22 +02:00
|
|
|
|
case Qt::Key_Up: if(obj == ui->lineEdit) { browseHistory(-1); return true; } break;
|
|
|
|
|
case Qt::Key_Down: if(obj == ui->lineEdit) { browseHistory(1); return true; } break;
|
|
|
|
|
case Qt::Key_PageUp: /* pass paging keys to messages widget */
|
|
|
|
|
case Qt::Key_PageDown:
|
|
|
|
|
if(obj == ui->lineEdit)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2012-09-09 20:07:22 +02:00
|
|
|
|
QApplication::postEvent(ui->messagesWidget, new QKeyEvent(*keyevt));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2016-05-31 05:30:35 +03:00
|
|
|
|
case Qt::Key_Return:
|
|
|
|
|
case Qt::Key_Enter:
|
|
|
|
|
// forward these events to lineEdit
|
|
|
|
|
if(obj == autoCompleter->popup()) {
|
|
|
|
|
QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt));
|
2018-10-09 23:53:15 +03:00
|
|
|
|
autoCompleter->popup()->hide();
|
2016-05-31 05:30:35 +03:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2012-09-09 20:07:22 +02:00
|
|
|
|
default:
|
|
|
|
|
// Typing in messages widget brings focus to line edit, and redirects key there
|
|
|
|
|
// Exclude most combinations and keys that emit no text, except paste shortcuts
|
|
|
|
|
if(obj == ui->messagesWidget && (
|
|
|
|
|
(!mod && !keyevt->text().isEmpty() && key != Qt::Key_Tab) ||
|
|
|
|
|
((mod & Qt::ControlModifier) && key == Qt::Key_V) ||
|
|
|
|
|
((mod & Qt::ShiftModifier) && key == Qt::Key_Insert)))
|
|
|
|
|
{
|
|
|
|
|
ui->lineEdit->setFocus();
|
|
|
|
|
QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt));
|
|
|
|
|
return true;
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-11-10 16:41:57 +01:00
|
|
|
|
return QWidget::eventFilter(obj, event);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-19 15:11:45 +02:00
|
|
|
|
void RPCConsole::setClientModel(ClientModel *model, int bestblock_height, int64_t bestblock_date, double verification_progress)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2013-08-23 02:09:32 +10:00
|
|
|
|
clientModel = model;
|
2018-12-05 22:51:49 +02:00
|
|
|
|
|
|
|
|
|
bool wallet_enabled{false};
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
|
wallet_enabled = WalletModel::isWalletEnabled();
|
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
if (model && !wallet_enabled) {
|
|
|
|
|
// Show warning, for example if this is a prerelease version
|
|
|
|
|
connect(model, &ClientModel::alertsChanged, this, &RPCConsole::updateAlerts);
|
|
|
|
|
updateAlerts(model->getStatusBarWarnings());
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-23 02:09:32 +10:00
|
|
|
|
ui->trafficGraph->setClientModel(model);
|
2015-06-26 10:23:51 +02:00
|
|
|
|
if (model && clientModel->getPeerTableModel() && clientModel->getBanTableModel()) {
|
2013-06-03 14:10:14 +02:00
|
|
|
|
// Keep up to date with client
|
|
|
|
|
setNumConnections(model->getNumConnections());
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model, &ClientModel::numConnectionsChanged, this, &RPCConsole::setNumConnections);
|
2013-06-03 14:10:14 +02:00
|
|
|
|
|
2021-05-31 12:59:05 +08:00
|
|
|
|
setNumBlocks(bestblock_height, QDateTime::fromSecsSinceEpoch(bestblock_date), verification_progress, false);
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model, &ClientModel::numBlocksChanged, this, &RPCConsole::setNumBlocks);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2013-03-26 03:07:06 +01:00
|
|
|
|
updateNetworkState();
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model, &ClientModel::networkActiveChanged, this, &RPCConsole::setNetworkActive);
|
2013-03-26 03:07:06 +01:00
|
|
|
|
|
2020-05-19 15:11:45 +02:00
|
|
|
|
interfaces::Node& node = clientModel->node();
|
2017-04-17 15:37:36 -04:00
|
|
|
|
updateTrafficStats(node.getTotalBytesRecv(), node.getTotalBytesSent());
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model, &ClientModel::bytesChanged, this, &RPCConsole::updateTrafficStats);
|
2013-08-23 02:09:32 +10:00
|
|
|
|
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model, &ClientModel::mempoolSizeChanged, this, &RPCConsole::setMempoolSize);
|
2015-11-09 11:45:07 +01:00
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
|
// set up peer table
|
2021-02-22 09:51:21 +02:00
|
|
|
|
ui->peerWidget->setModel(model->peerTableSortProxy());
|
2014-05-23 12:09:59 -05:00
|
|
|
|
ui->peerWidget->verticalHeader()->hide();
|
|
|
|
|
ui->peerWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
|
2016-10-03 19:40:40 -04:00
|
|
|
|
ui->peerWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
2015-06-01 15:32:25 +02:00
|
|
|
|
ui->peerWidget->setContextMenuPolicy(Qt::CustomContextMenu);
|
2021-03-23 23:49:41 +02:00
|
|
|
|
|
|
|
|
|
if (!ui->peerWidget->horizontalHeader()->restoreState(m_peer_widget_header_state)) {
|
|
|
|
|
ui->peerWidget->setColumnWidth(PeerTableModel::Address, ADDRESS_COLUMN_WIDTH);
|
|
|
|
|
ui->peerWidget->setColumnWidth(PeerTableModel::Subversion, SUBVERSION_COLUMN_WIDTH);
|
|
|
|
|
ui->peerWidget->setColumnWidth(PeerTableModel::Ping, PING_COLUMN_WIDTH);
|
|
|
|
|
}
|
2015-06-20 21:48:10 +02:00
|
|
|
|
ui->peerWidget->horizontalHeader()->setStretchLastSection(true);
|
2021-05-12 21:39:48 +03:00
|
|
|
|
ui->peerWidget->setItemDelegateForColumn(PeerTableModel::NetNodeId, new PeerIdViewDelegate(this));
|
2015-06-20 20:27:03 +02:00
|
|
|
|
|
2015-06-26 14:55:52 +02:00
|
|
|
|
// create peer table context menu
|
2016-11-18 15:47:20 +01:00
|
|
|
|
peersTableContextMenu = new QMenu(this);
|
2021-09-12 18:25:06 -04:00
|
|
|
|
//: Context menu action to copy the address of a peer.
|
2021-03-30 09:15:55 +03:00
|
|
|
|
peersTableContextMenu->addAction(tr("&Copy address"), [this] {
|
|
|
|
|
GUIUtil::copyEntryData(ui->peerWidget, PeerTableModel::Address, Qt::DisplayRole);
|
|
|
|
|
});
|
|
|
|
|
peersTableContextMenu->addSeparator();
|
2021-06-12 19:31:59 +00:00
|
|
|
|
peersTableContextMenu->addAction(tr("&Disconnect"), this, &RPCConsole::disconnectSelectedNode);
|
|
|
|
|
peersTableContextMenu->addAction(ts.ban_for + " " + tr("1 &hour"), [this] { banSelectedNode(60 * 60); });
|
2021-06-14 07:07:42 +00:00
|
|
|
|
peersTableContextMenu->addAction(ts.ban_for + " " + tr("1 d&ay"), [this] { banSelectedNode(60 * 60 * 24); });
|
2021-06-12 19:31:59 +00:00
|
|
|
|
peersTableContextMenu->addAction(ts.ban_for + " " + tr("1 &week"), [this] { banSelectedNode(60 * 60 * 24 * 7); });
|
|
|
|
|
peersTableContextMenu->addAction(ts.ban_for + " " + tr("1 &year"), [this] { banSelectedNode(60 * 60 * 24 * 365); });
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(ui->peerWidget, &QTableView::customContextMenuRequested, this, &RPCConsole::showPeersTableContextMenu);
|
2015-06-26 14:55:52 +02:00
|
|
|
|
|
|
|
|
|
// peer table signal handling - update peer details when selecting new node
|
2020-06-27 11:41:17 +01:00
|
|
|
|
connect(ui->peerWidget->selectionModel(), &QItemSelectionModel::selectionChanged, this, &RPCConsole::updateDetailWidget);
|
2021-06-28 17:16:48 +03:00
|
|
|
|
connect(model->getPeerTableModel(), &QAbstractItemModel::dataChanged, [this] { updateDetailWidget(); });
|
2017-06-12 12:23:02 -07:00
|
|
|
|
|
2015-06-20 20:55:21 +02:00
|
|
|
|
// set up ban table
|
|
|
|
|
ui->banlistWidget->setModel(model->getBanTableModel());
|
|
|
|
|
ui->banlistWidget->verticalHeader()->hide();
|
|
|
|
|
ui->banlistWidget->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
|
|
|
ui->banlistWidget->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
|
ui->banlistWidget->setContextMenuPolicy(Qt::CustomContextMenu);
|
2021-03-23 23:49:41 +02:00
|
|
|
|
|
|
|
|
|
if (!ui->banlistWidget->horizontalHeader()->restoreState(m_banlist_widget_header_state)) {
|
|
|
|
|
ui->banlistWidget->setColumnWidth(BanTableModel::Address, BANSUBNET_COLUMN_WIDTH);
|
|
|
|
|
ui->banlistWidget->setColumnWidth(BanTableModel::Bantime, BANTIME_COLUMN_WIDTH);
|
|
|
|
|
}
|
2015-06-20 21:48:10 +02:00
|
|
|
|
ui->banlistWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-06-20 20:55:21 +02:00
|
|
|
|
|
2015-06-26 10:23:51 +02:00
|
|
|
|
// create ban table context menu
|
2016-11-18 15:47:20 +01:00
|
|
|
|
banTableContextMenu = new QMenu(this);
|
2021-07-20 21:57:55 +05:30
|
|
|
|
/*: Context menu action to copy the IP/Netmask of a banned peer.
|
|
|
|
|
IP/Netmask is the combination of a peer's IP address and its Netmask.
|
2021-09-12 18:25:06 -04:00
|
|
|
|
For IP address, see: https://en.wikipedia.org/wiki/IP_address. */
|
2021-07-20 21:57:55 +05:30
|
|
|
|
banTableContextMenu->addAction(tr("&Copy IP/Netmask"), [this] {
|
|
|
|
|
GUIUtil::copyEntryData(ui->banlistWidget, BanTableModel::Address, Qt::DisplayRole);
|
|
|
|
|
});
|
|
|
|
|
banTableContextMenu->addSeparator();
|
2021-06-12 19:31:59 +00:00
|
|
|
|
banTableContextMenu->addAction(tr("&Unban"), this, &RPCConsole::unbanSelectedNode);
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(ui->banlistWidget, &QTableView::customContextMenuRequested, this, &RPCConsole::showBanTableContextMenu);
|
2015-06-20 20:55:21 +02:00
|
|
|
|
|
2015-06-26 10:23:51 +02:00
|
|
|
|
// ban table signal handling - clear peer details when clicking a peer in the ban table
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(ui->banlistWidget, &QTableView::clicked, this, &RPCConsole::clearSelectedNode);
|
2015-06-26 10:23:51 +02:00
|
|
|
|
// ban table signal handling - ensure ban table is shown or hidden (if empty)
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(model->getBanTableModel(), &BanTableModel::layoutChanged, this, &RPCConsole::showOrHideBanTableIfRequired);
|
2015-06-26 10:23:51 +02:00
|
|
|
|
showOrHideBanTableIfRequired();
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
// Provide initial values
|
|
|
|
|
ui->clientVersion->setText(model->formatFullVersion());
|
2015-08-06 15:40:50 +02:00
|
|
|
|
ui->clientUserAgent->setText(model->formatSubVersion());
|
2016-03-22 08:40:10 +01:00
|
|
|
|
ui->dataDir->setText(model->dataDir());
|
2018-10-02 23:12:17 +03:00
|
|
|
|
ui->blocksDir->setText(model->blocksDir());
|
2012-05-21 23:05:54 +02:00
|
|
|
|
ui->startupTime->setText(model->formatClientStartupTime());
|
2014-06-11 12:23:49 +02:00
|
|
|
|
ui->networkName->setText(QString::fromStdString(Params().NetworkIDString()));
|
2016-02-27 11:57:12 +08:00
|
|
|
|
|
|
|
|
|
//Setup autocomplete and attach it
|
|
|
|
|
QStringList wordList;
|
2017-04-17 16:38:51 -04:00
|
|
|
|
std::vector<std::string> commandList = m_node.listRpcCommands();
|
2016-02-27 11:57:12 +08:00
|
|
|
|
for (size_t i = 0; i < commandList.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
wordList << commandList[i].c_str();
|
2017-01-09 20:53:00 -05:00
|
|
|
|
wordList << ("help " + commandList[i]).c_str();
|
2016-02-27 11:57:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-17 22:43:17 -06:00
|
|
|
|
wordList << "help-console";
|
2017-01-09 20:53:00 -05:00
|
|
|
|
wordList.sort();
|
2016-02-27 11:57:12 +08:00
|
|
|
|
autoCompleter = new QCompleter(wordList, this);
|
2017-01-09 20:53:00 -05:00
|
|
|
|
autoCompleter->setModelSorting(QCompleter::CaseSensitivelySortedModel);
|
2019-05-29 22:53:25 +01:00
|
|
|
|
// ui->lineEdit is initially disabled because running commands is only
|
|
|
|
|
// possible from now on.
|
|
|
|
|
ui->lineEdit->setEnabled(true);
|
2016-02-27 11:57:12 +08:00
|
|
|
|
ui->lineEdit->setCompleter(autoCompleter);
|
2016-05-31 05:30:35 +03:00
|
|
|
|
autoCompleter->popup()->installEventFilter(this);
|
2016-11-18 16:35:14 +01:00
|
|
|
|
// Start thread to execute RPC commands.
|
|
|
|
|
startExecutor();
|
|
|
|
|
}
|
|
|
|
|
if (!model) {
|
|
|
|
|
// Client model is being set to 0, this means shutdown() is about to be called.
|
2018-10-21 15:10:16 +03:00
|
|
|
|
thread.quit();
|
2016-11-18 16:35:14 +01:00
|
|
|
|
thread.wait();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-09 20:55:59 +00:00
|
|
|
|
#ifdef ENABLE_WALLET
|
2017-10-12 07:22:48 +00:00
|
|
|
|
void RPCConsole::addWallet(WalletModel * const walletModel)
|
2016-09-09 20:55:59 +00:00
|
|
|
|
{
|
2019-01-04 12:17:53 +00:00
|
|
|
|
// use name for text and wallet model for internal data object (to allow to move to a wallet id later)
|
|
|
|
|
ui->WalletSelector->addItem(walletModel->getDisplayName(), QVariant::fromValue(walletModel));
|
2016-09-09 20:55:59 +00:00
|
|
|
|
if (ui->WalletSelector->count() == 2 && !isVisible()) {
|
|
|
|
|
// First wallet added, set to default so long as the window isn't presently visible (and potentially in use)
|
|
|
|
|
ui->WalletSelector->setCurrentIndex(1);
|
|
|
|
|
}
|
2018-03-18 15:35:51 +07:00
|
|
|
|
if (ui->WalletSelector->count() > 2) {
|
|
|
|
|
ui->WalletSelector->setVisible(true);
|
|
|
|
|
ui->WalletSelectorLabel->setVisible(true);
|
|
|
|
|
}
|
2016-09-09 20:55:59 +00:00
|
|
|
|
}
|
2018-06-05 11:17:28 +01:00
|
|
|
|
|
|
|
|
|
void RPCConsole::removeWallet(WalletModel * const walletModel)
|
|
|
|
|
{
|
2019-01-04 12:17:53 +00:00
|
|
|
|
ui->WalletSelector->removeItem(ui->WalletSelector->findData(QVariant::fromValue(walletModel)));
|
2018-06-05 11:17:28 +01:00
|
|
|
|
if (ui->WalletSelector->count() == 2) {
|
|
|
|
|
ui->WalletSelector->setVisible(false);
|
|
|
|
|
ui->WalletSelectorLabel->setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-09 20:55:59 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2012-05-12 12:30:07 +02:00
|
|
|
|
static QString categoryClass(int category)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
|
|
|
|
switch(category)
|
|
|
|
|
{
|
2012-05-12 12:30:07 +02:00
|
|
|
|
case RPCConsole::CMD_REQUEST: return "cmd-request"; break;
|
|
|
|
|
case RPCConsole::CMD_REPLY: return "cmd-reply"; break;
|
|
|
|
|
case RPCConsole::CMD_ERROR: return "cmd-error"; break;
|
|
|
|
|
default: return "misc";
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-22 18:00:36 +01:00
|
|
|
|
void RPCConsole::fontBigger()
|
|
|
|
|
{
|
|
|
|
|
setFontSize(consoleFontSize+1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::fontSmaller()
|
|
|
|
|
{
|
|
|
|
|
setFontSize(consoleFontSize-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::setFontSize(int newSize)
|
|
|
|
|
{
|
|
|
|
|
QSettings settings;
|
|
|
|
|
|
2017-06-20 01:57:31 +03:00
|
|
|
|
//don't allow an insane font size
|
2016-01-22 18:00:36 +01:00
|
|
|
|
if (newSize < FONT_RANGE.width() || newSize > FONT_RANGE.height())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// temp. store the console content
|
|
|
|
|
QString str = ui->messagesWidget->toHtml();
|
|
|
|
|
|
|
|
|
|
// replace font tags size in current content
|
|
|
|
|
str.replace(QString("font-size:%1pt").arg(consoleFontSize), QString("font-size:%1pt").arg(newSize));
|
|
|
|
|
|
|
|
|
|
// store the new font size
|
|
|
|
|
consoleFontSize = newSize;
|
|
|
|
|
settings.setValue(fontSizeSettingsKey, consoleFontSize);
|
|
|
|
|
|
|
|
|
|
// clear console (reset icon sizes, default stylesheet) and re-add the content
|
2016-01-23 00:05:14 +01:00
|
|
|
|
float oldPosFactor = 1.0 / ui->messagesWidget->verticalScrollBar()->maximum() * ui->messagesWidget->verticalScrollBar()->value();
|
2021-04-17 14:29:37 +03:00
|
|
|
|
clear(/* keep_prompt */ true);
|
2016-01-22 18:00:36 +01:00
|
|
|
|
ui->messagesWidget->setHtml(str);
|
2016-01-23 00:05:14 +01:00
|
|
|
|
ui->messagesWidget->verticalScrollBar()->setValue(oldPosFactor * ui->messagesWidget->verticalScrollBar()->maximum());
|
2016-01-22 18:00:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-17 14:29:37 +03:00
|
|
|
|
void RPCConsole::clear(bool keep_prompt)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
|
|
|
|
ui->messagesWidget->clear();
|
2021-04-17 14:29:37 +03:00
|
|
|
|
if (!keep_prompt) ui->lineEdit->clear();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
ui->lineEdit->setFocus();
|
|
|
|
|
|
2012-05-12 12:30:07 +02:00
|
|
|
|
// Add smoothly scaled icon images.
|
|
|
|
|
// (when using width/height on an img, Qt uses nearest instead of linear interpolation)
|
|
|
|
|
for(int i=0; ICON_MAPPING[i].url; ++i)
|
|
|
|
|
{
|
|
|
|
|
ui->messagesWidget->document()->addResource(
|
|
|
|
|
QTextDocument::ImageResource,
|
|
|
|
|
QUrl(ICON_MAPPING[i].url),
|
2016-01-22 18:00:36 +01:00
|
|
|
|
platformStyle->SingleColorImage(ICON_MAPPING[i].source).scaled(QSize(consoleFontSize*2, consoleFontSize*2), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
2012-05-12 12:30:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set default style sheet
|
2021-11-21 16:25:03 -05:00
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
QFontInfo fixedFontInfo(GUIUtil::fixedPitchFont(/*use_embedded_font=*/true));
|
|
|
|
|
#else
|
2015-10-22 13:33:58 +02:00
|
|
|
|
QFontInfo fixedFontInfo(GUIUtil::fixedPitchFont());
|
2021-11-21 16:25:03 -05:00
|
|
|
|
#endif
|
2012-05-12 12:30:07 +02:00
|
|
|
|
ui->messagesWidget->document()->setDefaultStyleSheet(
|
2015-10-22 13:33:58 +02:00
|
|
|
|
QString(
|
2012-05-12 12:30:07 +02:00
|
|
|
|
"table { }"
|
2016-01-22 18:00:36 +01:00
|
|
|
|
"td.time { color: #808080; font-size: %2; padding-top: 3px; } "
|
2015-10-22 13:33:58 +02:00
|
|
|
|
"td.message { font-family: %1; font-size: %2; white-space:pre-wrap; } "
|
2012-05-12 12:30:07 +02:00
|
|
|
|
"td.cmd-request { color: #006060; } "
|
|
|
|
|
"td.cmd-error { color: red; } "
|
2016-12-12 15:57:45 +01:00
|
|
|
|
".secwarning { color: red; }"
|
2012-05-12 12:30:07 +02:00
|
|
|
|
"b { color: #006060; } "
|
2016-01-22 18:00:36 +01:00
|
|
|
|
).arg(fixedFontInfo.family(), QString("%1pt").arg(consoleFontSize))
|
2015-10-22 13:33:58 +02:00
|
|
|
|
);
|
2012-05-12 12:30:07 +02:00
|
|
|
|
|
2021-05-15 14:49:34 +03:00
|
|
|
|
static const QString welcome_message =
|
|
|
|
|
/*: RPC console welcome message.
|
|
|
|
|
Placeholders %7 and %8 are style tags for the warning content, and
|
|
|
|
|
they are not space separated from the rest of the text intentionally. */
|
|
|
|
|
tr("Welcome to the %1 RPC console.\n"
|
|
|
|
|
"Use up and down arrows to navigate history, and %2 to clear screen.\n"
|
|
|
|
|
"Use %3 and %4 to increase or decrease the font size.\n"
|
|
|
|
|
"Type %5 for an overview of available commands.\n"
|
|
|
|
|
"For more information on using this console, type %6.\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"%7WARNING: Scammers have been active, telling users to type"
|
|
|
|
|
" commands here, stealing their wallet contents. Do not use this console"
|
|
|
|
|
" without fully understanding the ramifications of a command.%8")
|
|
|
|
|
.arg(PACKAGE_NAME,
|
|
|
|
|
"<b>" + ui->clearButton->shortcut().toString(QKeySequence::NativeText) + "</b>",
|
|
|
|
|
"<b>" + ui->fontBiggerButton->shortcut().toString(QKeySequence::NativeText) + "</b>",
|
|
|
|
|
"<b>" + ui->fontSmallerButton->shortcut().toString(QKeySequence::NativeText) + "</b>",
|
|
|
|
|
"<b>help</b>",
|
|
|
|
|
"<b>help-console</b>",
|
|
|
|
|
"<span class=\"secwarning\">",
|
|
|
|
|
"<span>");
|
|
|
|
|
|
|
|
|
|
message(CMD_REPLY, welcome_message, true);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-10 16:41:57 +01:00
|
|
|
|
void RPCConsole::keyPressEvent(QKeyEvent *event)
|
2014-03-18 14:51:28 +01:00
|
|
|
|
{
|
2021-12-03 01:03:11 +02:00
|
|
|
|
if (windowType() != Qt::Widget && GUIUtil::IsEscapeOrBack(event->key())) {
|
2014-11-10 16:41:57 +01:00
|
|
|
|
close();
|
|
|
|
|
}
|
2014-03-18 14:51:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-08 12:17:05 +03:00
|
|
|
|
void RPCConsole::changeEvent(QEvent* e)
|
|
|
|
|
{
|
|
|
|
|
if (e->type() == QEvent::PaletteChange) {
|
|
|
|
|
ui->clearButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
|
|
|
|
|
ui->fontBiggerButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/fontbigger")));
|
|
|
|
|
ui->fontSmallerButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/fontsmaller")));
|
|
|
|
|
ui->promptIcon->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/prompticon")));
|
|
|
|
|
|
|
|
|
|
for (int i = 0; ICON_MAPPING[i].url; ++i) {
|
|
|
|
|
ui->messagesWidget->document()->addResource(
|
|
|
|
|
QTextDocument::ImageResource,
|
|
|
|
|
QUrl(ICON_MAPPING[i].url),
|
|
|
|
|
platformStyle->SingleColorImage(ICON_MAPPING[i].source).scaled(QSize(consoleFontSize * 2, consoleFontSize * 2), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-22 19:24:35 +00:00
|
|
|
|
|
|
|
|
|
QWidget::changeEvent(e);
|
2021-04-08 12:17:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-12 12:30:07 +02:00
|
|
|
|
void RPCConsole::message(int category, const QString &message, bool html)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
|
|
|
|
QTime time = QTime::currentTime();
|
2012-05-12 12:30:07 +02:00
|
|
|
|
QString timeString = time.toString();
|
|
|
|
|
QString out;
|
|
|
|
|
out += "<table><tr><td class=\"time\" width=\"65\">" + timeString + "</td>";
|
|
|
|
|
out += "<td class=\"icon\" width=\"32\"><img src=\"" + categoryClass(category) + "\"></td>";
|
|
|
|
|
out += "<td class=\"message " + categoryClass(category) + "\" valign=\"middle\">";
|
|
|
|
|
if(html)
|
|
|
|
|
out += message;
|
|
|
|
|
else
|
2015-10-22 13:33:58 +02:00
|
|
|
|
out += GUIUtil::HtmlEscape(message, false);
|
2012-05-12 12:30:07 +02:00
|
|
|
|
out += "</td></tr></table>";
|
|
|
|
|
ui->messagesWidget->append(out);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-26 03:07:06 +01:00
|
|
|
|
void RPCConsole::updateNetworkState()
|
|
|
|
|
{
|
|
|
|
|
QString connections = QString::number(clientModel->getNumConnections()) + " (";
|
|
|
|
|
connections += tr("In:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_IN)) + " / ";
|
|
|
|
|
connections += tr("Out:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_OUT)) + ")";
|
|
|
|
|
|
2017-04-17 15:37:36 -04:00
|
|
|
|
if(!clientModel->node().getNetworkActive()) {
|
2013-03-26 03:07:06 +01:00
|
|
|
|
connections += " (" + tr("Network activity disabled") + ")";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->numberOfConnections->setText(connections);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
void RPCConsole::setNumConnections(int count)
|
|
|
|
|
{
|
2014-02-16 19:48:27 +01:00
|
|
|
|
if (!clientModel)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-03-26 03:07:06 +01:00
|
|
|
|
updateNetworkState();
|
|
|
|
|
}
|
2014-02-16 19:48:27 +01:00
|
|
|
|
|
2013-03-26 03:07:06 +01:00
|
|
|
|
void RPCConsole::setNetworkActive(bool networkActive)
|
|
|
|
|
{
|
|
|
|
|
updateNetworkState();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-28 16:18:45 +02:00
|
|
|
|
void RPCConsole::setNumBlocks(int count, const QDateTime& blockDate, double nVerificationProgress, bool headers)
|
2012-04-09 21:07:25 +02:00
|
|
|
|
{
|
2016-04-28 16:18:45 +02:00
|
|
|
|
if (!headers) {
|
|
|
|
|
ui->numberOfBlocks->setText(QString::number(count));
|
|
|
|
|
ui->lastBlockTime->setText(blockDate.toString());
|
|
|
|
|
}
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-09 11:45:07 +01:00
|
|
|
|
void RPCConsole::setMempoolSize(long numberOfTxs, size_t dynUsage)
|
|
|
|
|
{
|
|
|
|
|
ui->mempoolNumberTxs->setText(QString::number(numberOfTxs));
|
|
|
|
|
|
|
|
|
|
if (dynUsage < 1000000)
|
|
|
|
|
ui->mempoolSize->setText(QString::number(dynUsage/1000.0, 'f', 2) + " KB");
|
|
|
|
|
else
|
|
|
|
|
ui->mempoolSize->setText(QString::number(dynUsage/1000000.0, 'f', 2) + " MB");
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
void RPCConsole::on_lineEdit_returnPressed()
|
|
|
|
|
{
|
2021-03-20 05:06:32 +02:00
|
|
|
|
QString cmd = ui->lineEdit->text().trimmed();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
if (cmd.isEmpty()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-11-16 12:32:15 +00:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
std::string strFilteredCmd;
|
|
|
|
|
try {
|
|
|
|
|
std::string dummy;
|
|
|
|
|
if (!RPCParseCommandLine(nullptr, dummy, cmd.toStdString(), false, &strFilteredCmd)) {
|
|
|
|
|
// Failed to parse command, so we cannot even filter it for the history
|
|
|
|
|
throw std::runtime_error("Invalid command line");
|
2016-11-16 12:32:15 +00:00
|
|
|
|
}
|
2021-03-20 04:59:14 +02:00
|
|
|
|
} catch (const std::exception& e) {
|
|
|
|
|
QMessageBox::critical(this, "Error", QString("Error: ") + QString::fromStdString(e.what()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-11-16 12:32:15 +00:00
|
|
|
|
|
2021-03-20 05:06:32 +02:00
|
|
|
|
// A special case allows to request shutdown even a long-running command is executed.
|
|
|
|
|
if (cmd == QLatin1String("stop")) {
|
|
|
|
|
std::string dummy;
|
|
|
|
|
RPCExecuteCommandLine(m_node, dummy, cmd.toStdString());
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-11-16 12:32:15 +00:00
|
|
|
|
|
2021-03-20 05:01:27 +02:00
|
|
|
|
if (m_is_executing) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-11-16 12:32:15 +00:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
ui->lineEdit->clear();
|
2015-03-13 21:51:27 +01:00
|
|
|
|
|
2016-09-09 20:55:59 +00:00
|
|
|
|
#ifdef ENABLE_WALLET
|
2021-03-20 04:59:14 +02:00
|
|
|
|
WalletModel* wallet_model = ui->WalletSelector->currentData().value<WalletModel*>();
|
2017-12-14 03:29:55 +00:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
if (m_last_wallet_model != wallet_model) {
|
|
|
|
|
if (wallet_model) {
|
|
|
|
|
message(CMD_REQUEST, tr("Executing command using \"%1\" wallet").arg(wallet_model->getWalletName()));
|
|
|
|
|
} else {
|
|
|
|
|
message(CMD_REQUEST, tr("Executing command without any wallet"));
|
2017-12-14 03:29:55 +00:00
|
|
|
|
}
|
2021-03-20 04:59:14 +02:00
|
|
|
|
m_last_wallet_model = wallet_model;
|
|
|
|
|
}
|
|
|
|
|
#endif // ENABLE_WALLET
|
2015-03-13 21:51:27 +01:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
message(CMD_REQUEST, QString::fromStdString(strFilteredCmd));
|
|
|
|
|
//: A console message indicating an entered command is currently being executed.
|
|
|
|
|
message(CMD_REPLY, tr("Executing…"));
|
2021-03-20 05:01:27 +02:00
|
|
|
|
m_is_executing = true;
|
2021-03-20 04:59:14 +02:00
|
|
|
|
Q_EMIT cmdRequest(cmd, m_last_wallet_model);
|
2015-03-13 21:51:27 +01:00
|
|
|
|
|
2021-03-20 04:59:14 +02:00
|
|
|
|
cmd = QString::fromStdString(strFilteredCmd);
|
|
|
|
|
|
|
|
|
|
// Remove command, if already in history
|
|
|
|
|
history.removeOne(cmd);
|
|
|
|
|
// Append command to history
|
|
|
|
|
history.append(cmd);
|
|
|
|
|
// Enforce maximum history size
|
|
|
|
|
while (history.size() > CONSOLE_HISTORY) {
|
|
|
|
|
history.removeFirst();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
2021-03-20 04:59:14 +02:00
|
|
|
|
// Set pointer to end of history
|
|
|
|
|
historyPtr = history.size();
|
|
|
|
|
|
|
|
|
|
// Scroll console view to end
|
|
|
|
|
scrollToEnd();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::browseHistory(int offset)
|
|
|
|
|
{
|
2015-03-13 21:51:27 +01:00
|
|
|
|
// store current text when start browsing through the history
|
|
|
|
|
if (historyPtr == history.size()) {
|
|
|
|
|
cmdBeforeBrowsing = ui->lineEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
historyPtr += offset;
|
|
|
|
|
if(historyPtr < 0)
|
|
|
|
|
historyPtr = 0;
|
|
|
|
|
if(historyPtr > history.size())
|
|
|
|
|
historyPtr = history.size();
|
|
|
|
|
QString cmd;
|
|
|
|
|
if(historyPtr < history.size())
|
|
|
|
|
cmd = history.at(historyPtr);
|
2015-03-13 21:51:27 +01:00
|
|
|
|
else if (!cmdBeforeBrowsing.isNull()) {
|
|
|
|
|
cmd = cmdBeforeBrowsing;
|
|
|
|
|
}
|
2012-04-09 21:07:25 +02:00
|
|
|
|
ui->lineEdit->setText(cmd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::startExecutor()
|
|
|
|
|
{
|
2017-04-17 16:38:51 -04:00
|
|
|
|
RPCExecutor *executor = new RPCExecutor(m_node);
|
2016-11-18 16:35:14 +01:00
|
|
|
|
executor->moveToThread(&thread);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
|
|
|
|
// Replies from executor object must go to this object
|
2021-03-20 04:58:04 +02:00
|
|
|
|
connect(executor, &RPCExecutor::reply, this, [this](int category, const QString& command) {
|
|
|
|
|
// Remove "Executing…" message.
|
|
|
|
|
ui->messagesWidget->undo();
|
|
|
|
|
message(category, command);
|
|
|
|
|
scrollToEnd();
|
2021-03-20 05:01:27 +02:00
|
|
|
|
m_is_executing = false;
|
2021-03-20 04:58:04 +02:00
|
|
|
|
});
|
2018-06-24 16:18:22 +01:00
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
|
// Requests from this object must go to executor
|
2018-06-24 16:18:22 +01:00
|
|
|
|
connect(this, &RPCConsole::cmdRequest, executor, &RPCExecutor::request);
|
2013-04-02 11:24:10 +02:00
|
|
|
|
|
2018-10-21 15:10:16 +03:00
|
|
|
|
// Make sure executor object is deleted in its own thread
|
|
|
|
|
connect(&thread, &QThread::finished, executor, &RPCExecutor::deleteLater);
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
|
|
|
|
// Default implementation of QThread::run() simply spins up an event loop in the thread,
|
|
|
|
|
// which is what we want.
|
2016-11-18 16:35:14 +01:00
|
|
|
|
thread.start();
|
2020-04-27 19:47:43 +03:00
|
|
|
|
QTimer::singleShot(0, executor, []() {
|
|
|
|
|
util::ThreadRename("qt-rpcconsole");
|
|
|
|
|
});
|
2012-04-09 21:07:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-09 17:12:05 +02:00
|
|
|
|
void RPCConsole::on_tabWidget_currentChanged(int index)
|
|
|
|
|
{
|
2019-01-09 22:30:25 +02:00
|
|
|
|
if (ui->tabWidget->widget(index) == ui->tab_console) {
|
2012-05-09 17:12:05 +02:00
|
|
|
|
ui->lineEdit->setFocus();
|
2019-01-09 22:30:25 +02:00
|
|
|
|
}
|
2012-05-09 17:12:05 +02:00
|
|
|
|
}
|
2012-05-09 22:07:00 +02:00
|
|
|
|
|
|
|
|
|
void RPCConsole::on_openDebugLogfileButton_clicked()
|
|
|
|
|
{
|
|
|
|
|
GUIUtil::openDebugLogfile();
|
|
|
|
|
}
|
2012-05-14 18:17:12 +02:00
|
|
|
|
|
|
|
|
|
void RPCConsole::scrollToEnd()
|
|
|
|
|
{
|
|
|
|
|
QScrollBar *scrollbar = ui->messagesWidget->verticalScrollBar();
|
|
|
|
|
scrollbar->setValue(scrollbar->maximum());
|
|
|
|
|
}
|
2012-05-20 15:49:17 +02:00
|
|
|
|
|
2013-08-23 02:09:32 +10:00
|
|
|
|
void RPCConsole::on_sldGraphRange_valueChanged(int value)
|
|
|
|
|
{
|
|
|
|
|
const int multiplier = 5; // each position on the slider represents 5 min
|
|
|
|
|
int mins = value * multiplier;
|
|
|
|
|
setTrafficGraphRange(mins);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::setTrafficGraphRange(int mins)
|
|
|
|
|
{
|
|
|
|
|
ui->trafficGraph->setGraphRangeMins(mins);
|
2020-07-10 18:19:11 +02:00
|
|
|
|
ui->lblGraphRange->setText(GUIUtil::formatDurationStr(std::chrono::minutes{mins}));
|
2013-08-23 02:09:32 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut)
|
|
|
|
|
{
|
2017-10-14 16:06:21 -07:00
|
|
|
|
ui->lblBytesIn->setText(GUIUtil::formatBytes(totalBytesIn));
|
|
|
|
|
ui->lblBytesOut->setText(GUIUtil::formatBytes(totalBytesOut));
|
2013-08-23 02:09:32 +10:00
|
|
|
|
}
|
2014-05-23 12:09:59 -05:00
|
|
|
|
|
2020-06-27 11:41:17 +01:00
|
|
|
|
void RPCConsole::updateDetailWidget()
|
2014-05-23 12:09:59 -05:00
|
|
|
|
{
|
2020-12-24 11:51:33 +02:00
|
|
|
|
const QList<QModelIndex> selected_peers = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId);
|
|
|
|
|
if (!clientModel || !clientModel->getPeerTableModel() || selected_peers.size() != 1) {
|
2021-01-28 20:37:20 -05:00
|
|
|
|
ui->peersTabRightPanel->hide();
|
2020-06-27 11:41:17 +01:00
|
|
|
|
ui->peerHeading->setText(tr("Select a peer to view detailed information."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-12-24 11:51:33 +02:00
|
|
|
|
const auto stats = selected_peers.first().data(PeerTableModel::StatsRole).value<CNodeCombinedStats*>();
|
2014-05-23 12:09:59 -05:00
|
|
|
|
// update the detail ui with latest node information
|
2021-08-26 10:39:10 +02:00
|
|
|
|
QString peerAddrDetails(QString::fromStdString(stats->nodeStats.m_addr_name) + " ");
|
2021-04-23 15:08:37 +02:00
|
|
|
|
peerAddrDetails += tr("(peer: %1)").arg(QString::number(stats->nodeStats.nodeid));
|
2014-06-04 12:06:18 +02:00
|
|
|
|
if (!stats->nodeStats.addrLocal.empty())
|
|
|
|
|
peerAddrDetails += "<br />" + tr("via %1").arg(QString::fromStdString(stats->nodeStats.addrLocal));
|
|
|
|
|
ui->peerHeading->setText(peerAddrDetails);
|
|
|
|
|
ui->peerServices->setText(GUIUtil::formatServicesStr(stats->nodeStats.nServices));
|
2021-02-23 18:11:42 +01:00
|
|
|
|
ui->peerRelayTxes->setText(stats->nodeStats.fRelayTxes ? ts.yes : ts.no);
|
2021-01-30 23:54:12 +01:00
|
|
|
|
QString bip152_hb_settings;
|
2021-02-23 18:11:42 +01:00
|
|
|
|
if (stats->nodeStats.m_bip152_highbandwidth_to) bip152_hb_settings = ts.to;
|
|
|
|
|
if (stats->nodeStats.m_bip152_highbandwidth_from) bip152_hb_settings += (bip152_hb_settings.isEmpty() ? ts.from : QLatin1Char('/') + ts.from);
|
|
|
|
|
if (bip152_hb_settings.isEmpty()) bip152_hb_settings = ts.no;
|
2021-01-30 23:54:12 +01:00
|
|
|
|
ui->peerHighBandwidth->setText(bip152_hb_settings);
|
2020-07-10 18:19:11 +02:00
|
|
|
|
const auto time_now{GetTime<std::chrono::seconds>()};
|
|
|
|
|
ui->peerConnTime->setText(GUIUtil::formatDurationStr(time_now - std::chrono::seconds{stats->nodeStats.nTimeConnected}));
|
|
|
|
|
ui->peerLastBlock->setText(TimeDurationField(time_now, std::chrono::seconds{stats->nodeStats.nLastBlockTime}));
|
|
|
|
|
ui->peerLastTx->setText(TimeDurationField(time_now, std::chrono::seconds{stats->nodeStats.nLastTXTime}));
|
2021-10-22 11:06:23 +02:00
|
|
|
|
ui->peerLastSend->setText(TimeDurationField(time_now, stats->nodeStats.m_last_send));
|
|
|
|
|
ui->peerLastRecv->setText(TimeDurationField(time_now, stats->nodeStats.m_last_recv));
|
2017-10-14 16:06:21 -07:00
|
|
|
|
ui->peerBytesSent->setText(GUIUtil::formatBytes(stats->nodeStats.nSendBytes));
|
|
|
|
|
ui->peerBytesRecv->setText(GUIUtil::formatBytes(stats->nodeStats.nRecvBytes));
|
2020-09-29 19:11:53 -07:00
|
|
|
|
ui->peerPingTime->setText(GUIUtil::formatPingTime(stats->nodeStats.m_last_ping_time));
|
|
|
|
|
ui->peerMinPing->setText(GUIUtil::formatPingTime(stats->nodeStats.m_min_ping_time));
|
2014-12-15 11:07:55 +01:00
|
|
|
|
ui->timeoffset->setText(GUIUtil::formatTimeOffset(stats->nodeStats.nTimeOffset));
|
2020-03-22 12:27:46 +01:00
|
|
|
|
ui->peerVersion->setText(QString::number(stats->nodeStats.nVersion));
|
2014-06-04 12:06:18 +02:00
|
|
|
|
ui->peerSubversion->setText(QString::fromStdString(stats->nodeStats.cleanSubVer));
|
2021-01-09 20:21:00 +01:00
|
|
|
|
ui->peerConnectionType->setText(GUIUtil::ConnectionTypeToQString(stats->nodeStats.m_conn_type, /* prepend_direction */ true));
|
2020-12-24 11:05:10 +01:00
|
|
|
|
ui->peerNetwork->setText(GUIUtil::NetworkToQString(stats->nodeStats.m_network));
|
2021-03-21 22:46:50 +01:00
|
|
|
|
if (stats->nodeStats.m_permissionFlags == NetPermissionFlags::None) {
|
2021-02-23 18:11:42 +01:00
|
|
|
|
ui->peerPermissions->setText(ts.na);
|
2020-07-15 22:43:47 +02:00
|
|
|
|
} else {
|
|
|
|
|
QStringList permissions;
|
|
|
|
|
for (const auto& permission : NetPermissions::ToStrings(stats->nodeStats.m_permissionFlags)) {
|
|
|
|
|
permissions.append(QString::fromStdString(permission));
|
|
|
|
|
}
|
|
|
|
|
ui->peerPermissions->setText(permissions.join(" & "));
|
|
|
|
|
}
|
2021-02-23 18:11:42 +01:00
|
|
|
|
ui->peerMappedAS->setText(stats->nodeStats.m_mapped_as != 0 ? QString::number(stats->nodeStats.m_mapped_as) : ts.na);
|
2014-06-04 12:06:18 +02:00
|
|
|
|
|
|
|
|
|
// This check fails for example if the lock was busy and
|
|
|
|
|
// nodeStateStats couldn't be fetched.
|
|
|
|
|
if (stats->fNodeStateStatsAvailable) {
|
|
|
|
|
// Sync height is init to -1
|
2021-02-23 18:11:42 +01:00
|
|
|
|
if (stats->nodeStateStats.nSyncHeight > -1) {
|
2014-06-04 12:06:18 +02:00
|
|
|
|
ui->peerSyncHeight->setText(QString("%1").arg(stats->nodeStateStats.nSyncHeight));
|
2021-02-23 18:11:42 +01:00
|
|
|
|
} else {
|
|
|
|
|
ui->peerSyncHeight->setText(ts.unknown);
|
|
|
|
|
}
|
2015-06-01 09:09:51 +02:00
|
|
|
|
// Common height is init to -1
|
2021-02-23 18:11:42 +01:00
|
|
|
|
if (stats->nodeStateStats.nCommonHeight > -1) {
|
2015-06-01 09:09:51 +02:00
|
|
|
|
ui->peerCommonHeight->setText(QString("%1").arg(stats->nodeStateStats.nCommonHeight));
|
2021-02-23 18:11:42 +01:00
|
|
|
|
} else {
|
|
|
|
|
ui->peerCommonHeight->setText(ts.unknown);
|
|
|
|
|
}
|
2020-06-16 16:27:34 -04:00
|
|
|
|
ui->peerHeight->setText(QString::number(stats->nodeStateStats.m_starting_height));
|
2020-09-29 19:11:53 -07:00
|
|
|
|
ui->peerPingWait->setText(GUIUtil::formatPingTime(stats->nodeStateStats.m_ping_wait));
|
2014-06-04 12:06:18 +02:00
|
|
|
|
}
|
2014-07-13 06:27:29 +02:00
|
|
|
|
|
2021-01-28 20:37:20 -05:00
|
|
|
|
ui->peersTabRightPanel->show();
|
2014-07-13 06:27:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
|
void RPCConsole::resizeEvent(QResizeEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QWidget::resizeEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::showEvent(QShowEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QWidget::showEvent(event);
|
|
|
|
|
|
2015-06-26 14:55:52 +02:00
|
|
|
|
if (!clientModel || !clientModel->getPeerTableModel())
|
2014-06-04 12:06:18 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// start PeerTableModel auto refresh
|
|
|
|
|
clientModel->getPeerTableModel()->startAutoRefresh();
|
2014-05-23 12:09:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::hideEvent(QHideEvent *event)
|
|
|
|
|
{
|
2021-03-23 23:49:41 +02:00
|
|
|
|
// It is too late to call QHeaderView::saveState() in ~RPCConsole(), as all of
|
|
|
|
|
// the columns of QTableView child widgets will have zero width at that moment.
|
|
|
|
|
m_peer_widget_header_state = ui->peerWidget->horizontalHeader()->saveState();
|
|
|
|
|
m_banlist_widget_header_state = ui->banlistWidget->horizontalHeader()->saveState();
|
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
|
QWidget::hideEvent(event);
|
|
|
|
|
|
2015-06-26 14:55:52 +02:00
|
|
|
|
if (!clientModel || !clientModel->getPeerTableModel())
|
2014-07-13 06:27:29 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2014-05-23 12:09:59 -05:00
|
|
|
|
// stop PeerTableModel auto refresh
|
|
|
|
|
clientModel->getPeerTableModel()->stopAutoRefresh();
|
|
|
|
|
}
|
2015-06-01 15:32:25 +02:00
|
|
|
|
|
2015-06-20 20:55:21 +02:00
|
|
|
|
void RPCConsole::showPeersTableContextMenu(const QPoint& point)
|
2015-06-01 15:32:25 +02:00
|
|
|
|
{
|
|
|
|
|
QModelIndex index = ui->peerWidget->indexAt(point);
|
|
|
|
|
if (index.isValid())
|
2015-06-20 20:55:21 +02:00
|
|
|
|
peersTableContextMenu->exec(QCursor::pos());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::showBanTableContextMenu(const QPoint& point)
|
|
|
|
|
{
|
|
|
|
|
QModelIndex index = ui->banlistWidget->indexAt(point);
|
|
|
|
|
if (index.isValid())
|
|
|
|
|
banTableContextMenu->exec(QCursor::pos());
|
2015-06-01 15:32:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RPCConsole::disconnectSelectedNode()
|
|
|
|
|
{
|
2016-10-03 19:40:40 -04:00
|
|
|
|
// Get selected peer addresses
|
2016-12-02 13:48:33 +00:00
|
|
|
|
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId);
|
2016-10-03 19:40:40 -04:00
|
|
|
|
for(int i = 0; i < nodes.count(); i++)
|
|
|
|
|
{
|
|
|
|
|
// Get currently selected peer address
|
2017-04-10 15:00:23 -04:00
|
|
|
|
NodeId id = nodes.at(i).data().toLongLong();
|
2016-10-03 19:40:40 -04:00
|
|
|
|
// Find the node, disconnect it and clear the selected node
|
2017-12-05 15:57:12 -05:00
|
|
|
|
if(m_node.disconnectById(id))
|
2016-10-03 19:40:40 -04:00
|
|
|
|
clearSelectedNode();
|
|
|
|
|
}
|
2015-06-01 15:32:25 +02:00
|
|
|
|
}
|
2015-06-06 10:38:15 +02:00
|
|
|
|
|
2015-06-19 13:24:34 +02:00
|
|
|
|
void RPCConsole::banSelectedNode(int bantime)
|
|
|
|
|
{
|
2017-04-17 16:38:51 -04:00
|
|
|
|
if (!clientModel)
|
2015-06-26 10:23:51 +02:00
|
|
|
|
return;
|
2017-06-12 12:23:02 -07:00
|
|
|
|
|
2020-12-24 11:51:33 +02:00
|
|
|
|
for (const QModelIndex& peer : GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId)) {
|
2017-10-04 18:25:34 -04:00
|
|
|
|
// Find possible nodes, ban it and clear the selected node
|
2020-12-24 11:51:33 +02:00
|
|
|
|
const auto stats = peer.data(PeerTableModel::StatsRole).value<CNodeCombinedStats*>();
|
2017-10-04 18:25:34 -04:00
|
|
|
|
if (stats) {
|
2020-06-10 17:11:38 -07:00
|
|
|
|
m_node.ban(stats->nodeStats.addr, bantime);
|
2017-12-05 15:57:12 -05:00
|
|
|
|
m_node.disconnectByAddress(stats->nodeStats.addr);
|
2017-10-04 18:25:34 -04:00
|
|
|
|
}
|
2016-10-04 19:27:11 -04:00
|
|
|
|
}
|
2016-10-03 19:40:40 -04:00
|
|
|
|
clearSelectedNode();
|
|
|
|
|
clientModel->getBanTableModel()->refresh();
|
2015-06-19 13:24:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-20 20:55:21 +02:00
|
|
|
|
void RPCConsole::unbanSelectedNode()
|
|
|
|
|
{
|
2015-06-26 10:23:51 +02:00
|
|
|
|
if (!clientModel)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-10-03 19:40:40 -04:00
|
|
|
|
// Get selected ban addresses
|
2016-12-02 13:48:33 +00:00
|
|
|
|
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->banlistWidget, BanTableModel::Address);
|
2016-10-03 19:40:40 -04:00
|
|
|
|
for(int i = 0; i < nodes.count(); i++)
|
2015-06-20 20:55:21 +02:00
|
|
|
|
{
|
2016-10-03 19:40:40 -04:00
|
|
|
|
// Get currently selected ban address
|
2016-12-02 13:48:33 +00:00
|
|
|
|
QString strNode = nodes.at(i).data().toString();
|
2016-10-03 19:40:40 -04:00
|
|
|
|
CSubNet possibleSubnet;
|
|
|
|
|
|
2019-12-11 16:39:29 +00:00
|
|
|
|
LookupSubNet(strNode.toStdString(), possibleSubnet);
|
2017-04-17 16:38:51 -04:00
|
|
|
|
if (possibleSubnet.IsValid() && m_node.unban(possibleSubnet))
|
2016-10-03 19:40:40 -04:00
|
|
|
|
{
|
|
|
|
|
clientModel->getBanTableModel()->refresh();
|
|
|
|
|
}
|
2015-06-20 20:55:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-06 10:38:15 +02:00
|
|
|
|
void RPCConsole::clearSelectedNode()
|
|
|
|
|
{
|
|
|
|
|
ui->peerWidget->selectionModel()->clearSelection();
|
2016-11-08 10:41:23 -05:00
|
|
|
|
cachedNodeids.clear();
|
2020-06-27 11:41:17 +01:00
|
|
|
|
updateDetailWidget();
|
2015-06-06 10:38:15 +02:00
|
|
|
|
}
|
2015-06-20 21:48:10 +02:00
|
|
|
|
|
|
|
|
|
void RPCConsole::showOrHideBanTableIfRequired()
|
|
|
|
|
{
|
2015-06-21 10:44:48 +02:00
|
|
|
|
if (!clientModel)
|
|
|
|
|
return;
|
2015-06-23 21:10:42 +02:00
|
|
|
|
|
2015-06-20 21:48:10 +02:00
|
|
|
|
bool visible = clientModel->getBanTableModel()->shouldShow();
|
|
|
|
|
ui->banlistWidget->setVisible(visible);
|
|
|
|
|
ui->banHeading->setVisible(visible);
|
2015-10-22 13:33:58 +02:00
|
|
|
|
}
|
2015-11-12 12:59:26 +01:00
|
|
|
|
|
|
|
|
|
void RPCConsole::setTabFocus(enum TabTypes tabType)
|
|
|
|
|
{
|
2019-10-11 01:50:49 +01:00
|
|
|
|
ui->tabWidget->setCurrentIndex(int(tabType));
|
2015-11-12 12:59:26 +01:00
|
|
|
|
}
|
2018-12-11 13:13:48 +00:00
|
|
|
|
|
|
|
|
|
QString RPCConsole::tabTitle(TabTypes tab_type) const
|
|
|
|
|
{
|
2019-10-11 01:50:49 +01:00
|
|
|
|
return ui->tabWidget->tabText(int(tab_type));
|
2018-12-11 13:13:48 +00:00
|
|
|
|
}
|
2018-12-05 22:51:49 +02:00
|
|
|
|
|
2019-04-05 16:20:57 +01:00
|
|
|
|
QKeySequence RPCConsole::tabShortcut(TabTypes tab_type) const
|
|
|
|
|
{
|
|
|
|
|
switch (tab_type) {
|
2019-10-11 01:50:49 +01:00
|
|
|
|
case TabTypes::INFO: return QKeySequence(Qt::CTRL + Qt::Key_I);
|
|
|
|
|
case TabTypes::CONSOLE: return QKeySequence(Qt::CTRL + Qt::Key_T);
|
|
|
|
|
case TabTypes::GRAPH: return QKeySequence(Qt::CTRL + Qt::Key_N);
|
|
|
|
|
case TabTypes::PEERS: return QKeySequence(Qt::CTRL + Qt::Key_P);
|
|
|
|
|
} // no default case, so the compiler can warn about missing cases
|
|
|
|
|
|
|
|
|
|
assert(false);
|
2019-04-05 16:20:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 22:51:49 +02:00
|
|
|
|
void RPCConsole::updateAlerts(const QString& warnings)
|
|
|
|
|
{
|
|
|
|
|
this->ui->label_alerts->setVisible(!warnings.isEmpty());
|
|
|
|
|
this->ui->label_alerts->setText(warnings);
|
|
|
|
|
}
|