2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2015-06-10 21:27:11 +00:00
|
|
|
* This file Copyright (C) 2010-2015 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
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>
|
2020-06-23 21:11:16 +00:00
|
|
|
#include <QVector>
|
2019-11-12 01:37:05 +00:00
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "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"
|
|
|
|
{
|
2017-04-19 12:04:45 +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
|
|
|
|
2019-11-12 01:37:05 +00:00
|
|
|
using torrents_t = QVector<Torrent*>;
|
2020-05-27 21:53:12 +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
|
|
|
};
|