2068f089c8
-BEGIN VERIFY SCRIPT- mkdir -p src/util git mv src/util.h src/util/system.h git mv src/util.cpp src/util/system.cpp git mv src/utilmemory.h src/util/memory.h git mv src/utilmoneystr.h src/util/moneystr.h git mv src/utilmoneystr.cpp src/util/moneystr.cpp git mv src/utilstrencodings.h src/util/strencodings.h git mv src/utilstrencodings.cpp src/util/strencodings.cpp git mv src/utiltime.h src/util/time.h git mv src/utiltime.cpp src/util/time.cpp sed -i 's/<util\.h>/<util\/system\.h>/g' $(git ls-files 'src/*.h' 'src/*.cpp') sed -i 's/<utilmemory\.h>/<util\/memory\.h>/g' $(git ls-files 'src/*.h' 'src/*.cpp') sed -i 's/<utilmoneystr\.h>/<util\/moneystr\.h>/g' $(git ls-files 'src/*.h' 'src/*.cpp') sed -i 's/<utilstrencodings\.h>/<util\/strencodings\.h>/g' $(git ls-files 'src/*.h' 'src/*.cpp') sed -i 's/<utiltime\.h>/<util\/time\.h>/g' $(git ls-files 'src/*.h' 'src/*.cpp') sed -i 's/BITCOIN_UTIL_H/BITCOIN_UTIL_SYSTEM_H/g' src/util/system.h sed -i 's/BITCOIN_UTILMEMORY_H/BITCOIN_UTIL_MEMORY_H/g' src/util/memory.h sed -i 's/BITCOIN_UTILMONEYSTR_H/BITCOIN_UTIL_MONEYSTR_H/g' src/util/moneystr.h sed -i 's/BITCOIN_UTILSTRENCODINGS_H/BITCOIN_UTIL_STRENCODINGS_H/g' src/util/strencodings.h sed -i 's/BITCOIN_UTILTIME_H/BITCOIN_UTIL_TIME_H/g' src/util/time.h sed -i 's/ util\.\(h\|cpp\)/ util\/system\.\1/g' src/Makefile.am sed -i 's/utilmemory\.\(h\|cpp\)/util\/memory\.\1/g' src/Makefile.am sed -i 's/utilmoneystr\.\(h\|cpp\)/util\/moneystr\.\1/g' src/Makefile.am sed -i 's/utilstrencodings\.\(h\|cpp\)/util\/strencodings\.\1/g' src/Makefile.am sed -i 's/utiltime\.\(h\|cpp\)/util\/time\.\1/g' src/Makefile.am sed -i 's/-> util ->/-> util\/system ->/' test/lint/lint-circular-dependencies.sh sed -i 's/src\/util\.cpp/src\/util\/system\.cpp/g' test/lint/lint-format-strings.py test/lint/lint-locale-dependence.sh sed -i 's/src\/utilmoneystr\.cpp/src\/util\/moneystr\.cpp/g' test/lint/lint-locale-dependence.sh sed -i 's/src\/utilstrencodings\.\(h\|cpp\)/src\/util\/strencodings\.\1/g' test/lint/lint-locale-dependence.sh sed -i 's/src\\utilstrencodings\.cpp/src\\util\\strencodings\.cpp/' build_msvc/libbitcoinconsensus/libbitcoinconsensus.vcxproj -END VERIFY SCRIPT-
184 lines
4.4 KiB
C++
184 lines
4.4 KiB
C++
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <qt/bantablemodel.h>
|
|
|
|
#include <qt/clientmodel.h>
|
|
#include <qt/guiconstants.h>
|
|
#include <qt/guiutil.h>
|
|
|
|
#include <interfaces/node.h>
|
|
#include <sync.h>
|
|
#include <util/time.h>
|
|
|
|
#include <QDebug>
|
|
#include <QList>
|
|
|
|
bool BannedNodeLessThan::operator()(const CCombinedBan& left, const CCombinedBan& right) const
|
|
{
|
|
const CCombinedBan* pLeft = &left;
|
|
const CCombinedBan* pRight = &right;
|
|
|
|
if (order == Qt::DescendingOrder)
|
|
std::swap(pLeft, pRight);
|
|
|
|
switch(column)
|
|
{
|
|
case BanTableModel::Address:
|
|
return pLeft->subnet.ToString().compare(pRight->subnet.ToString()) < 0;
|
|
case BanTableModel::Bantime:
|
|
return pLeft->banEntry.nBanUntil < pRight->banEntry.nBanUntil;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// private implementation
|
|
class BanTablePriv
|
|
{
|
|
public:
|
|
/** Local cache of peer information */
|
|
QList<CCombinedBan> cachedBanlist;
|
|
/** Column to sort nodes by */
|
|
int sortColumn;
|
|
/** Order (ascending or descending) to sort nodes by */
|
|
Qt::SortOrder sortOrder;
|
|
|
|
/** Pull a full list of banned nodes from CNode into our cache */
|
|
void refreshBanlist(interfaces::Node& node)
|
|
{
|
|
banmap_t banMap;
|
|
node.getBanned(banMap);
|
|
|
|
cachedBanlist.clear();
|
|
cachedBanlist.reserve(banMap.size());
|
|
for (const auto& entry : banMap)
|
|
{
|
|
CCombinedBan banEntry;
|
|
banEntry.subnet = entry.first;
|
|
banEntry.banEntry = entry.second;
|
|
cachedBanlist.append(banEntry);
|
|
}
|
|
|
|
if (sortColumn >= 0)
|
|
// sort cachedBanlist (use stable sort to prevent rows jumping around unnecessarily)
|
|
qStableSort(cachedBanlist.begin(), cachedBanlist.end(), BannedNodeLessThan(sortColumn, sortOrder));
|
|
}
|
|
|
|
int size() const
|
|
{
|
|
return cachedBanlist.size();
|
|
}
|
|
|
|
CCombinedBan *index(int idx)
|
|
{
|
|
if (idx >= 0 && idx < cachedBanlist.size())
|
|
return &cachedBanlist[idx];
|
|
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
BanTableModel::BanTableModel(interfaces::Node& node, ClientModel *parent) :
|
|
QAbstractTableModel(parent),
|
|
m_node(node),
|
|
clientModel(parent)
|
|
{
|
|
columns << tr("IP/Netmask") << tr("Banned Until");
|
|
priv.reset(new BanTablePriv());
|
|
// default to unsorted
|
|
priv->sortColumn = -1;
|
|
|
|
// load initial data
|
|
refresh();
|
|
}
|
|
|
|
BanTableModel::~BanTableModel()
|
|
{
|
|
// Intentionally left empty
|
|
}
|
|
|
|
int BanTableModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return priv->size();
|
|
}
|
|
|
|
int BanTableModel::columnCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return columns.length();
|
|
}
|
|
|
|
QVariant BanTableModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if(!index.isValid())
|
|
return QVariant();
|
|
|
|
CCombinedBan *rec = static_cast<CCombinedBan*>(index.internalPointer());
|
|
|
|
if (role == Qt::DisplayRole) {
|
|
switch(index.column())
|
|
{
|
|
case Address:
|
|
return QString::fromStdString(rec->subnet.ToString());
|
|
case Bantime:
|
|
QDateTime date = QDateTime::fromMSecsSinceEpoch(0);
|
|
date = date.addSecs(rec->banEntry.nBanUntil);
|
|
return date.toString(Qt::SystemLocaleLongDate);
|
|
}
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
QVariant BanTableModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
if(orientation == Qt::Horizontal)
|
|
{
|
|
if(role == Qt::DisplayRole && section < columns.size())
|
|
{
|
|
return columns[section];
|
|
}
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
Qt::ItemFlags BanTableModel::flags(const QModelIndex &index) const
|
|
{
|
|
if(!index.isValid())
|
|
return 0;
|
|
|
|
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
|
return retval;
|
|
}
|
|
|
|
QModelIndex BanTableModel::index(int row, int column, const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
CCombinedBan *data = priv->index(row);
|
|
|
|
if (data)
|
|
return createIndex(row, column, data);
|
|
return QModelIndex();
|
|
}
|
|
|
|
void BanTableModel::refresh()
|
|
{
|
|
Q_EMIT layoutAboutToBeChanged();
|
|
priv->refreshBanlist(m_node);
|
|
Q_EMIT layoutChanged();
|
|
}
|
|
|
|
void BanTableModel::sort(int column, Qt::SortOrder order)
|
|
{
|
|
priv->sortColumn = column;
|
|
priv->sortOrder = order;
|
|
refresh();
|
|
}
|
|
|
|
bool BanTableModel::shouldShow()
|
|
{
|
|
return priv->size() > 0;
|
|
}
|