154 lines
4.6 KiB
C++
154 lines
4.6 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FLOWEE_QT_RPCCONSOLE_H
|
|
#define FLOWEE_QT_RPCCONSOLE_H
|
|
|
|
#include "guiutil.h"
|
|
#include "peertablemodel.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include <QWidget>
|
|
|
|
class ClientModel;
|
|
class PlatformStyle;
|
|
class RPCTimerInterface;
|
|
|
|
namespace Ui {
|
|
class RPCConsole;
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QMenu;
|
|
class QItemSelection;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Local Bitcoin RPC console. */
|
|
class RPCConsole: public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RPCConsole(const PlatformStyle *platformStyle, QWidget *parent);
|
|
~RPCConsole();
|
|
|
|
void setClientModel(ClientModel *model);
|
|
|
|
enum MessageClass {
|
|
MC_ERROR,
|
|
MC_DEBUG,
|
|
CMD_REQUEST,
|
|
CMD_REPLY,
|
|
CMD_ERROR
|
|
};
|
|
|
|
enum TabTypes {
|
|
TAB_INFO = 0,
|
|
TAB_CONSOLE = 1,
|
|
TAB_GRAPH = 2,
|
|
TAB_PEERS = 3
|
|
};
|
|
|
|
protected:
|
|
virtual bool eventFilter(QObject* obj, QEvent *event);
|
|
void keyPressEvent(QKeyEvent *);
|
|
|
|
private Q_SLOTS:
|
|
void on_lineEdit_returnPressed();
|
|
void on_tabWidget_currentChanged(int index);
|
|
/** open the hub.log from the current datadir */
|
|
void on_openDebugLogfileButton_clicked();
|
|
/** change the time range of the network traffic graph */
|
|
void on_sldGraphRange_valueChanged(int value);
|
|
/** update traffic statistics */
|
|
void updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut);
|
|
void resizeEvent(QResizeEvent *event);
|
|
void showEvent(QShowEvent *event);
|
|
void hideEvent(QHideEvent *event);
|
|
/** Show custom context menu on Peers tab */
|
|
void showPeersTableContextMenu(const QPoint& point);
|
|
/** Show custom context menu on Bans tab */
|
|
void showBanTableContextMenu(const QPoint& point);
|
|
/** Hides ban table if no bans are present */
|
|
void showOrHideBanTableIfRequired();
|
|
/** clear the selected node */
|
|
void clearSelectedNode();
|
|
|
|
public Q_SLOTS:
|
|
void clear();
|
|
/** Append the message to the message widget */
|
|
void message(int category, const QString &message, bool html = false);
|
|
/** Set number of connections shown in the UI */
|
|
void setNumConnections(int count);
|
|
/** Set number of blocks and last block date shown in the UI */
|
|
void setNumBlocks(int count, const QDateTime& blockDate, double nVerificationProgress);
|
|
/** Set size (number of transactions and memory usage) of the mempool in the UI */
|
|
void setMempoolSize(long numberOfTxs, size_t dynUsage);
|
|
/** Go forward or back in history */
|
|
void browseHistory(int offset);
|
|
/** Scroll console view to end */
|
|
void scrollToEnd();
|
|
/** Handle selection of peer in peers list */
|
|
void peerSelected(const QItemSelection &selected, const QItemSelection &deselected);
|
|
/** Handle updated peer information */
|
|
void peerLayoutChanged();
|
|
/** Disconnect a selected node on the Peers tab */
|
|
void disconnectSelectedNode();
|
|
/** Ban a selected node on the Peers tab */
|
|
void banSelectedNode(int bantime);
|
|
/** Unban a selected node on the Bans tab */
|
|
void unbanSelectedNode();
|
|
/** set which tab has the focus (is visible) */
|
|
void setTabFocus(enum TabTypes tabType);
|
|
|
|
Q_SIGNALS:
|
|
// For RPC command executor
|
|
void stopExecutor();
|
|
void cmdRequest(const QString &command);
|
|
|
|
private:
|
|
static QString FormatBytes(quint64 bytes);
|
|
void startExecutor();
|
|
void setTrafficGraphRange(int mins);
|
|
/** show detailed information on ui about selected node */
|
|
void updateNodeDetail(const CNodeCombinedStats *stats);
|
|
|
|
enum ColumnWidths
|
|
{
|
|
ADDRESS_COLUMN_WIDTH = 200,
|
|
SUBVERSION_COLUMN_WIDTH = 150,
|
|
PING_COLUMN_WIDTH = 80,
|
|
BANSUBNET_COLUMN_WIDTH = 200,
|
|
BANTIME_COLUMN_WIDTH = 250
|
|
|
|
};
|
|
|
|
Ui::RPCConsole *ui;
|
|
ClientModel *clientModel;
|
|
QStringList history;
|
|
int historyPtr;
|
|
NodeId cachedNodeid;
|
|
const PlatformStyle *platformStyle;
|
|
RPCTimerInterface *rpcTimerInterface;
|
|
QMenu *peersTableContextMenu;
|
|
QMenu *banTableContextMenu;
|
|
};
|
|
|
|
#endif
|