2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 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
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-09 18:55:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTR_TORRENT_MODEL_H
|
|
|
|
#define QTR_TORRENT_MODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QSet>
|
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
#include "speed.h"
|
|
|
|
#include "torrent.h"
|
|
|
|
|
|
|
|
class Prefs;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef QMap<int,int> id_to_row_t;
|
|
|
|
typedef QMap<int,Torrent*> id_to_torrent_t;
|
|
|
|
typedef QVector<Torrent*> torrents_t;
|
|
|
|
id_to_row_t myIdToRow;
|
|
|
|
id_to_torrent_t myIdToTorrent;
|
|
|
|
torrents_t myTorrents;
|
|
|
|
Prefs& myPrefs;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void clear ();
|
|
|
|
bool hasTorrent (const QString& hashString) const;
|
|
|
|
virtual int rowCount (const QModelIndex& parent = QModelIndex()) const;
|
|
|
|
virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
|
|
enum Role { TorrentRole = Qt::UserRole };
|
|
|
|
|
|
|
|
public:
|
|
|
|
Torrent* getTorrentFromId (int id);
|
|
|
|
const Torrent* getTorrentFromId (int id) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void addTorrent (Torrent *);
|
|
|
|
QSet<int> getIds () const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void getTransferSpeed (Speed & uploadSpeed,
|
|
|
|
size_t & uploadPeerCount,
|
|
|
|
Speed & downloadSpeed,
|
|
|
|
size_t & downloadPeerCount);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void torrentsAdded (QSet<int>);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void updateTorrents (tr_variant * torrentList, bool isCompleteList);
|
|
|
|
void removeTorrents (tr_variant * torrentList);
|
|
|
|
void removeTorrent (int id);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onTorrentChanged (int propertyId);
|
|
|
|
|
|
|
|
public:
|
|
|
|
TorrentModel (Prefs& prefs);
|
|
|
|
virtual ~TorrentModel ();
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|