1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 13:04:23 +00:00
qBittorrent/src/gui/transferlistsortmodel.cpp

252 lines
8.4 KiB
C++
Raw Normal View History

/*
2018-06-06 16:48:17 +03:00
* Bittorrent Client using Qt and libtorrent.
* Copyright (C) 2013 Nick Tiskov <daymansmail@gmail.com>
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
2018-06-06 16:48:17 +03:00
#include "transferlistsortmodel.h"
2021-02-04 14:22:16 +08:00
#include <type_traits>
#include <QDateTime>
#include "base/bittorrent/infohash.h"
#include "base/bittorrent/torrent.h"
#include "transferlistmodel.h"
2018-06-06 16:48:17 +03:00
2021-02-04 14:22:16 +08:00
namespace
{
template <typename T>
2021-02-18 14:32:36 +05:30
int threeWayCompare(const T &left, const T &right)
{
if (left == right)
return 0;
return (left < right) ? -1 : 1;
}
int customCompare(const QDateTime &left, const QDateTime &right)
{
const bool isLeftValid = left.isValid();
const bool isRightValid = right.isValid();
if (isLeftValid && isRightValid)
return threeWayCompare(left, right);
if (!isLeftValid && !isRightValid)
return 0;
return isLeftValid ? -1 : 1;
}
int customCompare(const TagSet &left, const TagSet &right, const Utils::Compare::NaturalCompare<Qt::CaseInsensitive> &compare)
{
for (auto leftIter = left.cbegin(), rightIter = right.cbegin();
(leftIter != left.cend()) && (rightIter != right.cend());
++leftIter, ++rightIter)
{
const int result = compare(*leftIter, *rightIter);
if (result != 0)
return result;
}
return threeWayCompare(left.size(), right.size());
}
2021-02-18 14:32:36 +05:30
template <typename T>
int customCompare(const T left, const T right)
2021-02-04 14:22:16 +08:00
{
static_assert(std::is_arithmetic_v<T>);
const bool isLeftValid = (left >= 0);
const bool isRightValid = (right >= 0);
if (isLeftValid && isRightValid)
2021-02-18 14:32:36 +05:30
return threeWayCompare(left, right);
if (!isLeftValid && !isRightValid)
return 0;
return isLeftValid ? -1 : 1;
2021-02-04 14:22:16 +08:00
}
int adjustSubSortColumn(const int column)
{
return ((column >= 0) && (column < TransferListModel::NB_COLUMNS))
? column : TransferListModel::TR_NAME;
}
2021-02-04 14:22:16 +08:00
}
TransferListSortModel::TransferListSortModel(QObject *parent)
: QSortFilterProxyModel {parent}
, m_subSortColumn {"TransferList/SubSortColumn", TransferListModel::TR_NAME, adjustSubSortColumn}
{
setSortRole(TransferListModel::UnderlyingDataRole);
}
2015-04-19 18:17:47 +03:00
void TransferListSortModel::setStatusFilter(TorrentFilter::Type filter)
{
2015-04-19 18:17:47 +03:00
if (m_filter.setType(filter))
invalidateFilter();
}
void TransferListSortModel::setCategoryFilter(const QString &category)
{
if (m_filter.setCategory(category))
invalidateFilter();
}
void TransferListSortModel::disableCategoryFilter()
{
if (m_filter.setCategory(TorrentFilter::AnyCategory))
invalidateFilter();
}
void TransferListSortModel::setTagFilter(const QString &tag)
{
if (m_filter.setTag(tag))
invalidateFilter();
}
void TransferListSortModel::disableTagFilter()
{
if (m_filter.setTag(TorrentFilter::AnyTag))
invalidateFilter();
}
void TransferListSortModel::setTrackerFilter(const QSet<BitTorrent::TorrentID> &torrentIDs)
{
if (m_filter.setTorrentIDSet(torrentIDs))
invalidateFilter();
}
void TransferListSortModel::disableTrackerFilter()
{
if (m_filter.setTorrentIDSet(TorrentFilter::AnyID))
invalidateFilter();
}
2021-02-18 14:32:36 +05:30
int TransferListSortModel::compare(const QModelIndex &left, const QModelIndex &right) const
{
2021-02-18 14:32:36 +05:30
const int compareColumn = left.column();
const QVariant leftValue = left.data(TransferListModel::UnderlyingDataRole);
const QVariant rightValue = right.data(TransferListModel::UnderlyingDataRole);
2021-02-18 14:32:36 +05:30
switch (compareColumn)
2020-11-16 10:02:11 +03:00
{
case TransferListModel::TR_CATEGORY:
case TransferListModel::TR_NAME:
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_SAVE_PATH:
case TransferListModel::TR_TRACKER:
return m_naturalCompare(leftValue.toString(), rightValue.toString());
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_TAGS:
return customCompare(leftValue.value<TagSet>(), rightValue.value<TagSet>(), m_naturalCompare);
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_AMOUNT_DOWNLOADED:
case TransferListModel::TR_AMOUNT_DOWNLOADED_SESSION:
case TransferListModel::TR_AMOUNT_LEFT:
case TransferListModel::TR_AMOUNT_UPLOADED:
case TransferListModel::TR_AMOUNT_UPLOADED_SESSION:
case TransferListModel::TR_COMPLETED:
case TransferListModel::TR_ETA:
case TransferListModel::TR_LAST_ACTIVITY:
case TransferListModel::TR_SIZE:
case TransferListModel::TR_TIME_ELAPSED:
case TransferListModel::TR_TOTAL_SIZE:
2021-02-18 14:32:36 +05:30
return customCompare(leftValue.toLongLong(), rightValue.toLongLong());
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_AVAILABILITY:
case TransferListModel::TR_PROGRESS:
case TransferListModel::TR_RATIO:
case TransferListModel::TR_RATIO_LIMIT:
2021-02-18 14:32:36 +05:30
return customCompare(leftValue.toReal(), rightValue.toReal());
case TransferListModel::TR_STATUS:
2021-02-18 14:32:36 +05:30
return threeWayCompare(leftValue.toInt(), rightValue.toInt());
case TransferListModel::TR_ADD_DATE:
case TransferListModel::TR_SEED_DATE:
2020-11-16 10:02:11 +03:00
case TransferListModel::TR_SEEN_COMPLETE_DATE:
return customCompare(leftValue.toDateTime(), rightValue.toDateTime());
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_DLLIMIT:
case TransferListModel::TR_DLSPEED:
2020-11-16 10:02:11 +03:00
case TransferListModel::TR_QUEUE_POSITION:
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_UPLIMIT:
case TransferListModel::TR_UPSPEED:
2021-02-18 14:32:36 +05:30
return customCompare(leftValue.toInt(), rightValue.toInt());
2020-11-16 10:02:11 +03:00
case TransferListModel::TR_PEERS:
2021-02-04 14:22:16 +08:00
case TransferListModel::TR_SEEDS:
{
// Active peers/seeds take precedence over total peers/seeds
const auto activeL = leftValue.toInt();
const auto activeR = rightValue.toInt();
if (activeL != activeR)
2021-02-18 14:32:36 +05:30
return threeWayCompare(activeL, activeR);
const auto totalL = left.data(TransferListModel::AdditionalUnderlyingDataRole).toInt();
const auto totalR = right.data(TransferListModel::AdditionalUnderlyingDataRole).toInt();
2021-02-18 14:32:36 +05:30
return threeWayCompare(totalL, totalR);
}
2021-02-04 14:22:16 +08:00
default:
Q_ASSERT_X(false, Q_FUNC_INFO, "Missing comparsion case");
break;
}
2021-02-18 14:32:36 +05:30
return 0;
}
bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
Q_ASSERT(left.column() == right.column());
if (m_lastSortColumn != left.column())
2021-02-18 14:32:36 +05:30
{
if (m_lastSortColumn != -1)
m_subSortColumn = m_lastSortColumn;
m_lastSortColumn = left.column();
2021-02-18 14:32:36 +05:30
}
const int result = compare(left, right);
if (result == 0)
2021-02-18 14:32:36 +05:30
return compare(left.sibling(left.row(), m_subSortColumn), right.sibling(right.row(), m_subSortColumn)) < 0;
return result < 0;
}
2019-08-07 14:26:36 +08:00
bool TransferListSortModel::filterAcceptsRow(const int sourceRow, const QModelIndex &sourceParent) const
{
2015-04-19 18:17:47 +03:00
return matchFilter(sourceRow, sourceParent)
&& QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);
}
2019-08-07 14:26:36 +08:00
bool TransferListSortModel::matchFilter(const int sourceRow, const QModelIndex &sourceParent) const
{
2019-08-07 14:26:36 +08:00
const auto *model = qobject_cast<TransferListModel *>(sourceModel());
if (!model) return false;
const BitTorrent::Torrent *torrent = model->torrentHandle(model->index(sourceRow, 0, sourceParent));
2015-04-19 18:17:47 +03:00
if (!torrent) return false;
2015-04-19 18:17:47 +03:00
return m_filter.match(torrent);
}