2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2010-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2019-11-09 14:44:40 +00:00
|
|
|
#include <optional>
|
2019-11-12 01:37:05 +00:00
|
|
|
#include <vector>
|
2019-11-09 14:44:40 +00:00
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QAbstractListModel>
|
2019-11-12 01:37:05 +00:00
|
|
|
|
2021-12-14 08:43:27 +00:00
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
|
2020-06-23 21:11:16 +00:00
|
|
|
#include "Torrent.h"
|
|
|
|
#include "Typedefs.h"
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
class Prefs;
|
2015-06-12 22:12:12 +00:00
|
|
|
class Speed;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
struct tr_variant;
|
2013-08-24 19:26:21 +00:00
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class TorrentModel : public QAbstractListModel
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2013-09-14 22:45:04 +00:00
|
|
|
Q_OBJECT
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(TorrentModel)
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
2015-06-12 22:12:12 +00:00
|
|
|
enum Role
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TorrentRole = Qt::UserRole
|
2015-06-12 22:12:12 +00:00
|
|
|
};
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2019-11-09 14:44:40 +00:00
|
|
|
explicit TorrentModel(Prefs const& prefs);
|
2020-09-09 14:24:39 +00:00
|
|
|
~TorrentModel() override;
|
2017-04-19 12:04:45 +00:00
|
|
|
void clear();
|
2019-11-09 14:44:40 +00:00
|
|
|
|
2020-09-07 21:19:10 +00:00
|
|
|
bool hasTorrent(TorrentHash const& hash) const;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
Torrent* getTorrentFromId(int id);
|
2017-04-20 16:02:19 +00:00
|
|
|
Torrent const* getTorrentFromId(int id) const;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
using torrents_t = std::vector<Torrent*>;
|
2021-08-15 09:41:48 +00:00
|
|
|
|
|
|
|
torrents_t const& torrents() const
|
|
|
|
{
|
|
|
|
return torrents_;
|
|
|
|
}
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
// QAbstractItemModel
|
2019-11-09 14:44:40 +00:00
|
|
|
int rowCount(QModelIndex const& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(QModelIndex const& index, int role = Qt::DisplayRole) const override;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public slots:
|
2020-05-27 21:53:12 +00:00
|
|
|
void updateTorrents(tr_variant* torrent_list, bool is_complete_list);
|
|
|
|
void removeTorrents(tr_variant* torrent_list);
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
signals:
|
2019-11-12 01:37:05 +00:00
|
|
|
void torrentsAdded(torrent_ids_t const&);
|
2020-06-23 21:11:16 +00:00
|
|
|
void torrentsChanged(torrent_ids_t const&, Torrent::fields_t const& fields);
|
2019-11-12 01:37:05 +00:00
|
|
|
void torrentsCompleted(torrent_ids_t const&);
|
2019-11-12 23:13:42 +00:00
|
|
|
void torrentsEdited(torrent_ids_t const&);
|
2019-11-12 01:37:05 +00:00
|
|
|
void torrentsNeedInfo(torrent_ids_t const&);
|
2015-06-12 22:41:36 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private:
|
2019-11-09 14:44:40 +00:00
|
|
|
void rowsAdd(torrents_t const& torrents);
|
2019-11-12 01:37:05 +00:00
|
|
|
void rowsRemove(torrents_t const& torrents);
|
|
|
|
void rowsEmitChanged(torrent_ids_t const& ids);
|
2015-06-12 22:12:12 +00:00
|
|
|
|
2019-11-09 14:44:40 +00:00
|
|
|
std::optional<int> getRow(int id) const;
|
|
|
|
using span_t = std::pair<int, int>;
|
2019-11-12 01:37:05 +00:00
|
|
|
std::vector<span_t> getSpans(torrent_ids_t const& ids) const;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
Prefs const& prefs_;
|
|
|
|
torrent_ids_t already_added_;
|
|
|
|
torrents_t torrents_;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|