Browse Source
* magnet URI support should be easy to implement now Warning: Since a lot of code was rewrited, some bugs may have been introducedadaptive-webui-19844
Christophe Dumez
15 years ago
11 changed files with 1842 additions and 1619 deletions
@ -0,0 +1,339 @@
@@ -0,0 +1,339 @@
|
||||
/*
|
||||
* Bittorrent Client using Qt4 and libtorrent. |
||||
* Copyright (C) 2006 Christophe Dumez |
||||
* |
||||
* 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. |
||||
* |
||||
* Contact : chris@qbittorrent.org |
||||
*/ |
||||
|
||||
#ifndef TORRENTPERSISTENTDATA_H |
||||
#define TORRENTPERSISTENTDATA_H |
||||
|
||||
#include <QSettings> |
||||
#include <QHash> |
||||
#include <QVariant> |
||||
#include <libtorrent/magnet_uri.hpp> |
||||
|
||||
#include "qtorrenthandle.h" |
||||
#include "misc.h" |
||||
|
||||
class TorrentTempData { |
||||
public: |
||||
static bool hasTempData(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
return all_data.contains(hash); |
||||
} |
||||
|
||||
static void deleteTempData(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
if(all_data.contains(hash)) { |
||||
all_data.remove(hash); |
||||
settings.setValue("torrents-tmp", all_data); |
||||
} |
||||
} |
||||
|
||||
static void setFilesPriority(QString hash, std::vector<int> pp) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
std::vector<int>::iterator pp_it = pp.begin(); |
||||
QVariantList pieces_priority; |
||||
while(pp_it != pp.end()) { |
||||
pieces_priority << *pp_it; |
||||
pp_it++; |
||||
} |
||||
data["files_priority"] = pieces_priority; |
||||
all_data[hash] = data; |
||||
settings.setValue("torrents-tmp", all_data); |
||||
} |
||||
|
||||
static void setSavePath(QString hash, QString save_path) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
data["save_path"] = save_path; |
||||
all_data[hash] = data; |
||||
settings.setValue("torrents-tmp", all_data); |
||||
} |
||||
|
||||
static void setSequential(QString hash, bool sequential) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
data["sequential"] = sequential; |
||||
all_data[hash] = data; |
||||
settings.setValue("torrents-tmp", all_data); |
||||
} |
||||
|
||||
static bool isSequential(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
if(data.contains("sequential")) |
||||
return data["sequential"].toBool(); |
||||
return false; |
||||
|
||||
} |
||||
|
||||
static QString getSavePath(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
if(data.contains("save_path")) |
||||
return data["save_path"].toString(); |
||||
qDebug("Warning Temp::getSavePath returns null string!"); |
||||
return QString::null; |
||||
} |
||||
|
||||
static QVariantList getFilesPriority(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
if(data.contains("files_priority")) |
||||
return data["files_priority"].toList(); |
||||
return QVariantList(); |
||||
} |
||||
}; |
||||
|
||||
class TorrentPersistentData { |
||||
public: |
||||
|
||||
static bool isKnownTorrent(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
return all_data.contains(hash); |
||||
} |
||||
|
||||
static QStringList knownTorrents() { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
return all_data.keys(); |
||||
} |
||||
|
||||
static void deletePersistentData(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
if(all_data.contains(hash)) { |
||||
all_data.remove(hash); |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
} |
||||
|
||||
static void saveTorrentPersistentData(QTorrentHandle h, bool is_magnet = false) { |
||||
// First, remove temp data
|
||||
TorrentTempData::deleteTempData(h.hash()); |
||||
Q_ASSERT(!TorrentTempData::hasTempData(h.hash())); |
||||
// Save persistent data
|
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data; |
||||
data["hash"] = h.hash(); |
||||
data["is_magnet"] = is_magnet; |
||||
if(is_magnet) { |
||||
data["magnet_uri"] = misc::toQString(make_magnet_uri(h.get_torrent_handle())); |
||||
} |
||||
data["seed"] = h.is_seed(); |
||||
data["priority"] = h.queue_position(); |
||||
QVariantList files_priority; |
||||
std::vector<int> fp = h.file_priorities(); |
||||
std::vector<int>::iterator fp_it = fp.begin(); |
||||
while(fp_it != fp.end()) { |
||||
files_priority << *fp_it; |
||||
fp_it++; |
||||
} |
||||
data["files_priority"] = files_priority; |
||||
data["save_path"] = h.save_path(); |
||||
QHash<QString, QVariant> trackers; |
||||
std::vector<announce_entry> tr = h.trackers(); |
||||
std::vector<announce_entry>::iterator tr_it = tr.begin(); |
||||
while(tr_it != tr.end()) { |
||||
trackers[misc::toQString((*tr_it).url)] = (*tr_it).tier; |
||||
tr_it++; |
||||
} |
||||
data["trackers"] = trackers; |
||||
QVariantList url_seeds; |
||||
foreach(QString url_seed, h.url_seeds()) { |
||||
url_seeds << url_seed; |
||||
} |
||||
data["url_seeds"] = url_seeds; |
||||
data["sequential"] = h.is_sequential_download(); |
||||
// Save data
|
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void saveTrackers(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
QVariantList trackers; |
||||
std::vector<announce_entry> tr = h.trackers(); |
||||
std::vector<announce_entry>::iterator tr_it = tr.begin(); |
||||
while(tr_it != tr.end()) { |
||||
trackers << misc::toQString((*tr_it).url); |
||||
tr_it++; |
||||
} |
||||
data["trackers"] = trackers; |
||||
// Save data
|
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
// Setters
|
||||
|
||||
static void saveFilesPriority(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
std::vector<int> fp = h.file_priorities(); |
||||
std::vector<int>::iterator fp_it = fp.begin(); |
||||
QVariantList files_priority; |
||||
while(fp_it != fp.end()) { |
||||
files_priority << *fp_it; |
||||
fp_it++; |
||||
} |
||||
data["files_priority"] = files_priority; |
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void saveSavePath(QString hash, QString save_path) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
data["save_path"] = save_path; |
||||
all_data[hash] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void saveUrlSeeds(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
QVariantList url_seeds; |
||||
foreach(QString url_seed, h.url_seeds()) { |
||||
url_seeds << url_seed; |
||||
} |
||||
data["url_seeds"] = url_seeds; |
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void savePriority(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
data["priority"] = h.queue_position(); |
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void saveSeedStatus(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
data["seed"] = h.is_seed(); |
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
static void saveSequentialStatus(QTorrentHandle h) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[h.hash()].toHash(); |
||||
data["sequential"] = h.is_sequential_download(); |
||||
all_data[h.hash()] = data; |
||||
settings.setValue("torrents", all_data); |
||||
} |
||||
|
||||
// Getters
|
||||
static QHash<QString, QVariant> getTrackers(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["trackers"].toHash(); |
||||
} |
||||
|
||||
static QVariantList getFilesPriority(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["files_priority"].toList(); |
||||
} |
||||
|
||||
static QString getSavePath(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["save_path"].toString(); |
||||
} |
||||
|
||||
static int getPriority(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["priority"].toInt(); |
||||
} |
||||
|
||||
static QVariantList getUrlSeeds(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["url_seeds"].toList(); |
||||
} |
||||
|
||||
static bool isSeed(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["seed"].toBool(); |
||||
} |
||||
|
||||
static bool isMagnet(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["is_magnet"].toBool(); |
||||
} |
||||
|
||||
static QString getMagnetUri(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
Q_ASSERT(data["is_magnet"].toBool()); |
||||
return data["magnet_uri"].toString(); |
||||
} |
||||
|
||||
static bool isSequentialDownload(QString hash) { |
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); |
||||
QHash<QString, QVariant> all_data = settings.value("torrents", QHash<QString, QVariant>()).toHash(); |
||||
QHash<QString, QVariant> data = all_data[hash].toHash(); |
||||
return data["sequential"].toBool(); |
||||
} |
||||
|
||||
}; |
||||
#endif // TORRENTPERSISTENTDATA_H
|
Loading…
Reference in new issue