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
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QSet>
|
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
class Prefs;
|
2015-06-12 22:12:12 +00:00
|
|
|
class Speed;
|
|
|
|
class Torrent;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2013-08-24 19:26:21 +00:00
|
|
|
struct tr_variant;
|
|
|
|
}
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
class TorrentModel: public QAbstractListModel
|
|
|
|
{
|
2013-09-14 22:45:04 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
public:
|
|
|
|
enum Role
|
|
|
|
{
|
|
|
|
TorrentRole = Qt::UserRole
|
|
|
|
};
|
2013-09-14 22:45:04 +00:00
|
|
|
|
|
|
|
public:
|
2015-06-12 22:12:12 +00:00
|
|
|
TorrentModel (const Prefs& prefs);
|
|
|
|
virtual ~TorrentModel ();
|
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
void clear ();
|
|
|
|
bool hasTorrent (const QString& hashString) const;
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
Torrent * getTorrentFromId (int id);
|
|
|
|
const Torrent * getTorrentFromId (int id) const;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
void getTransferSpeed (Speed& uploadSpeed, size_t& uploadPeerCount,
|
|
|
|
Speed& downloadSpeed, size_t& downloadPeerCount);
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
// QAbstractItemModel
|
|
|
|
virtual int rowCount (const QModelIndex& parent = QModelIndex ()) const;
|
|
|
|
virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void updateTorrents (tr_variant * torrentList, bool isCompleteList);
|
|
|
|
void removeTorrents (tr_variant * torrentList);
|
|
|
|
void removeTorrent (int id);
|
|
|
|
|
2015-06-12 22:41:36 +00:00
|
|
|
signals:
|
|
|
|
void torrentsAdded (QSet<int>);
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
private:
|
|
|
|
typedef QVector<Torrent*> torrents_t;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void addTorrent (Torrent *);
|
2016-04-24 07:56:41 +00:00
|
|
|
void addTorrents (torrents_t&& torrents, QSet<int>& addIds);
|
2015-06-12 22:12:12 +00:00
|
|
|
QSet<int> getIds () const;
|
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private slots:
|
|
|
|
void onTorrentChanged (int propertyId);
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
private:
|
|
|
|
const Prefs& myPrefs;
|
|
|
|
|
|
|
|
torrents_t myTorrents;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|