2007-08-20 10:29:18 +04:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2009-04-05 21:00:55 +04:00
|
|
|
* 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.
|
|
|
|
*
|
2007-08-20 10:29:18 +04:00
|
|
|
* Contact : chris@qbittorrent.org
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QString>
|
2007-08-23 18:04:53 +04:00
|
|
|
#include <QStringList>
|
2007-08-20 10:29:18 +04:00
|
|
|
#include <QFile>
|
2007-08-23 18:04:53 +04:00
|
|
|
#include <QDir>
|
2007-08-20 10:29:18 +04:00
|
|
|
#include <QByteArray>
|
2009-11-21 15:35:26 +03:00
|
|
|
#include <math.h>
|
2012-05-16 22:19:05 +04:00
|
|
|
#include "fs_utils.h"
|
2007-08-20 10:29:18 +04:00
|
|
|
#include "misc.h"
|
2010-07-25 18:55:30 +04:00
|
|
|
#include "preferences.h"
|
2007-08-20 10:29:18 +04:00
|
|
|
#include "qtorrenthandle.h"
|
2010-01-01 16:25:59 +03:00
|
|
|
#include "torrentpersistentdata.h"
|
2010-06-07 12:32:41 +04:00
|
|
|
#include <libtorrent/version.hpp>
|
2009-08-17 09:14:03 +04:00
|
|
|
#include <libtorrent/magnet_uri.hpp>
|
2009-11-21 15:35:26 +03:00
|
|
|
#include <libtorrent/torrent_info.hpp>
|
2010-01-20 00:47:53 +03:00
|
|
|
#include <libtorrent/bencode.hpp>
|
|
|
|
#include <libtorrent/entry.hpp>
|
2007-08-20 10:29:18 +04:00
|
|
|
|
2013-09-21 11:59:58 +04:00
|
|
|
#ifdef Q_OS_WIN
|
2011-01-06 16:57:11 +03:00
|
|
|
#include <Windows.h>
|
2011-01-06 15:26:14 +03:00
|
|
|
#endif
|
|
|
|
|
2010-11-23 00:55:32 +03:00
|
|
|
using namespace libtorrent;
|
2011-01-06 15:12:07 +03:00
|
|
|
using namespace std;
|
2010-11-23 00:55:32 +03:00
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
static QPair<int, int> get_file_extremity_pieces(const torrent_info& t, int file_index)
|
|
|
|
{
|
|
|
|
const int num_pieces = t.num_pieces();
|
|
|
|
const int piece_size = t.piece_length();
|
|
|
|
const file_entry& file = t.file_at(file_index);
|
|
|
|
|
|
|
|
// Determine the first and last piece of the file
|
|
|
|
int first_piece = floor((file.offset + 1) / (float) piece_size);
|
|
|
|
Q_ASSERT(first_piece >= 0 && first_piece < num_pieces);
|
|
|
|
qDebug("First piece of the file is %d/%d", first_piece, num_pieces - 1);
|
|
|
|
|
|
|
|
int num_pieces_in_file = ceil(file.size / (float) piece_size);
|
|
|
|
int last_piece = first_piece + num_pieces_in_file - 1;
|
|
|
|
Q_ASSERT(last_piece >= 0 && last_piece < num_pieces);
|
|
|
|
qDebug("last piece of the file is %d/%d", last_piece, num_pieces - 1);
|
|
|
|
|
|
|
|
return qMakePair(first_piece, last_piece);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTorrentHandle::QTorrentHandle(const torrent_handle& h): torrent_handle(h) {}
|
2007-08-20 10:29:18 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Getters
|
|
|
|
//
|
|
|
|
|
|
|
|
QString QTorrentHandle::hash() const {
|
2010-10-20 00:00:50 +04:00
|
|
|
return misc::toQString(torrent_handle::info_hash());
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString QTorrentHandle::name() const {
|
2010-01-01 16:25:59 +03:00
|
|
|
QString name = TorrentPersistentData::getName(hash());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (name.isEmpty()) {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
name = misc::toQStringU(torrent_handle::name());
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
2014-05-14 02:09:45 +04:00
|
|
|
name = misc::toQStringU(status(query_name).name);
|
2014-01-01 04:49:16 +04:00
|
|
|
#endif
|
2010-01-01 16:25:59 +03:00
|
|
|
}
|
|
|
|
return name;
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2009-11-12 10:42:21 +03:00
|
|
|
QString QTorrentHandle::creation_date() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-11-28 13:29:59 +03:00
|
|
|
boost::optional<time_t> t = torrent_handle::get_torrent_info().creation_date();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
boost::optional<time_t> t = torrent_handle::torrent_file()->creation_date();
|
|
|
|
#endif
|
2012-05-15 20:57:31 +04:00
|
|
|
return t ? misc::toQString(*t) : "";
|
2009-11-12 10:42:21 +03:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
QString QTorrentHandle::current_tracker() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return misc::toQString(status(0x0).current_tracker);
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QTorrentHandle::is_paused() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return is_paused(status(0x0));
|
2008-11-02 14:43:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QTorrentHandle::is_queued() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return is_queued(status(0x0));
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2007-11-18 21:06:44 +03:00
|
|
|
size_type QTorrentHandle::total_size() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::get_torrent_info().total_size();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return torrent_handle::torrent_file()->total_size();
|
|
|
|
#endif
|
2007-11-18 21:06:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
size_type QTorrentHandle::piece_length() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::get_torrent_info().piece_length();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return torrent_handle::torrent_file()->piece_length();
|
|
|
|
#endif
|
2007-11-18 21:06:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int QTorrentHandle::num_pieces() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::get_torrent_info().num_pieces();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return torrent_handle::torrent_file()->num_pieces();
|
|
|
|
#endif
|
2009-11-14 13:37:45 +03:00
|
|
|
}
|
|
|
|
|
2009-11-21 13:17:57 +03:00
|
|
|
bool QTorrentHandle::first_last_piece_first() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
|
|
|
torrent_info const* t = &get_torrent_info();
|
|
|
|
#else
|
|
|
|
boost::intrusive_ptr<torrent_info const> t = torrent_file();
|
|
|
|
#endif
|
2012-02-21 21:49:43 +04:00
|
|
|
|
|
|
|
// Get int first media file
|
2010-12-04 23:47:20 +03:00
|
|
|
int index = 0;
|
2014-01-01 04:49:16 +04:00
|
|
|
for (index = 0; index < t->num_files(); ++index) {
|
|
|
|
QString path = misc::toQStringU(t->file_at(index).path);
|
2012-05-16 22:19:05 +04:00
|
|
|
const QString ext = fsutils::fileExtension(path);
|
2012-02-21 21:49:43 +04:00
|
|
|
if (misc::isPreviewable(ext) && torrent_handle::file_priority(index) > 0)
|
2010-12-04 23:47:20 +03:00
|
|
|
break;
|
2009-11-21 15:35:26 +03:00
|
|
|
}
|
2012-02-21 21:49:43 +04:00
|
|
|
|
2014-01-01 04:49:16 +04:00
|
|
|
if (index >= t->num_files()) // No media file
|
2012-02-21 21:49:43 +04:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
2014-01-01 04:49:16 +04:00
|
|
|
QPair<int, int> extremities = get_file_extremity_pieces(*t, index);
|
2012-02-21 21:49:43 +04:00
|
|
|
|
|
|
|
return (torrent_handle::piece_priority(extremities.first) == 7)
|
|
|
|
&& (torrent_handle::piece_priority(extremities.second) == 7);
|
2009-11-21 13:17:57 +03:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
QString QTorrentHandle::save_path() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(torrent_handle::save_path()));
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(status(torrent_handle::query_save_path).save_path));
|
2014-01-01 04:49:16 +04:00
|
|
|
#endif
|
2009-10-22 00:47:46 +04:00
|
|
|
}
|
|
|
|
|
2013-05-01 09:52:06 +04:00
|
|
|
QString QTorrentHandle::save_path_parsed() const {
|
|
|
|
QString p;
|
|
|
|
if (has_metadata() && num_files() == 1) {
|
|
|
|
p = firstFileSavePath();
|
|
|
|
} else {
|
2013-11-10 00:28:18 +04:00
|
|
|
p = fsutils::fromNativePath(TorrentPersistentData::getSavePath(hash()));
|
2013-05-01 09:52:06 +04:00
|
|
|
if (p.isEmpty())
|
|
|
|
p = save_path();
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
QStringList QTorrentHandle::url_seeds() const {
|
|
|
|
QStringList res;
|
2009-08-17 09:14:03 +04:00
|
|
|
try {
|
2010-10-20 00:00:50 +04:00
|
|
|
const std::set<std::string> existing_seeds = torrent_handle::url_seeds();
|
2012-07-14 02:28:23 +04:00
|
|
|
|
|
|
|
std::set<std::string>::const_iterator it = existing_seeds.begin();
|
|
|
|
std::set<std::string>::const_iterator itend = existing_seeds.end();
|
|
|
|
for ( ; it != itend; ++it) {
|
2010-10-10 19:39:08 +04:00
|
|
|
qDebug("URL Seed: %s", it->c_str());
|
|
|
|
res << misc::toQString(*it);
|
2009-08-17 09:14:03 +04:00
|
|
|
}
|
2014-01-03 21:19:30 +04:00
|
|
|
} catch(std::exception &e) {
|
2010-10-10 19:39:08 +04:00
|
|
|
std::cout << "ERROR: Failed to convert the URL seed" << std::endl;
|
|
|
|
}
|
2007-08-20 10:29:18 +04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the size of the torrent without the filtered files
|
2011-04-17 14:29:44 +04:00
|
|
|
size_type QTorrentHandle::actual_size() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status(query_accurate_download_counters).total_wanted;
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2007-08-29 18:30:30 +04:00
|
|
|
bool QTorrentHandle::has_filtered_pieces() const {
|
2012-02-21 21:49:43 +04:00
|
|
|
const std::vector<int> piece_priorities = torrent_handle::piece_priorities();
|
|
|
|
foreach (const int priority, piece_priorities) {
|
|
|
|
if (priority == 0)
|
|
|
|
return true;
|
2007-08-29 18:30:30 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
int QTorrentHandle::num_files() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::get_torrent_info().num_files();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return torrent_handle::torrent_file()->num_files();
|
|
|
|
#endif
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2010-10-23 20:21:56 +04:00
|
|
|
QString QTorrentHandle::filename_at(unsigned int index) const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
Q_ASSERT(index < (unsigned int)torrent_handle::get_torrent_info().num_files());
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
Q_ASSERT(index < (unsigned int)torrent_handle::torrent_file()->num_files());
|
|
|
|
#endif
|
2012-05-16 22:19:05 +04:00
|
|
|
return fsutils::fileName(filepath_at(index));
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2007-08-29 20:07:37 +04:00
|
|
|
size_type QTorrentHandle::filesize_at(unsigned int index) const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
Q_ASSERT(index < (unsigned int)torrent_handle::get_torrent_info().num_files());
|
2014-01-01 04:49:16 +04:00
|
|
|
return torrent_handle::get_torrent_info().files().file_size(index);
|
|
|
|
#else
|
|
|
|
Q_ASSERT(index < (unsigned int)torrent_handle::torrent_file()->num_files());
|
|
|
|
return torrent_handle::torrent_file()->files().file_size(index);
|
|
|
|
#endif
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2010-11-28 13:29:59 +03:00
|
|
|
QString QTorrentHandle::filepath_at(unsigned int index) const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(torrent_handle::get_torrent_info().files().file_path(index)));
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(torrent_handle::torrent_file()->files().file_path(index)));
|
2014-01-01 04:49:16 +04:00
|
|
|
#endif
|
2010-11-28 13:29:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QString QTorrentHandle::orig_filepath_at(unsigned int index) const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(torrent_handle::get_torrent_info().orig_files().file_path(index)));
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
2013-11-10 00:28:18 +04:00
|
|
|
return fsutils::fromNativePath(misc::toQStringU(torrent_handle::torrent_file()->orig_files().file_path(index)));
|
2014-01-01 04:49:16 +04:00
|
|
|
#endif
|
2013-11-10 00:28:18 +04:00
|
|
|
|
2010-11-28 13:29:59 +03:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
torrent_status::state_t QTorrentHandle::state() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status(0x0).state;
|
2009-08-16 07:09:20 +04:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
QString QTorrentHandle::creator() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return misc::toQStringU(torrent_handle::get_torrent_info().creator());
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return misc::toQStringU(torrent_handle::torrent_file()->creator());
|
|
|
|
#endif
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString QTorrentHandle::comment() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return misc::toQStringU(torrent_handle::get_torrent_info().comment());
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return misc::toQStringU(torrent_handle::torrent_file()->comment());
|
|
|
|
#endif
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2009-11-17 14:46:43 +03:00
|
|
|
bool QTorrentHandle::is_checking() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return is_checking(status(0x0));
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2007-08-23 18:04:53 +04:00
|
|
|
// Return a list of absolute paths corresponding
|
|
|
|
// to all files in a torrent
|
2011-04-17 14:29:44 +04:00
|
|
|
QStringList QTorrentHandle::absolute_files_path() const {
|
2010-10-18 21:44:37 +04:00
|
|
|
QDir saveDir(save_path());
|
2007-08-23 18:04:53 +04:00
|
|
|
QStringList res;
|
2012-02-20 21:30:53 +04:00
|
|
|
for (int i = 0; i<num_files(); ++i) {
|
2013-11-10 00:28:18 +04:00
|
|
|
res << fsutils::expandPathAbs(saveDir.absoluteFilePath(filepath_at(i)));
|
2007-08-23 18:04:53 +04:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-04-17 14:29:44 +04:00
|
|
|
QStringList QTorrentHandle::absolute_files_path_uneeded() const {
|
2010-10-18 21:44:37 +04:00
|
|
|
QDir saveDir(save_path());
|
|
|
|
QStringList res;
|
2010-10-20 00:00:50 +04:00
|
|
|
std::vector<int> fp = torrent_handle::file_priorities();
|
2012-02-20 21:30:53 +04:00
|
|
|
for (uint i = 0; i < fp.size(); ++i) {
|
|
|
|
if (fp[i] == 0) {
|
2013-11-10 00:28:18 +04:00
|
|
|
const QString file_path = fsutils::expandPathAbs(saveDir.absoluteFilePath(filepath_at(i)));
|
2012-02-20 21:30:53 +04:00
|
|
|
if (file_path.contains(".unwanted"))
|
2011-04-10 19:00:27 +04:00
|
|
|
res << file_path;
|
|
|
|
}
|
2010-10-18 21:44:37 +04:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2010-08-22 00:22:59 +04:00
|
|
|
bool QTorrentHandle::has_missing_files() const {
|
2011-04-17 14:29:44 +04:00
|
|
|
const QStringList paths = absolute_files_path();
|
2012-02-20 21:30:53 +04:00
|
|
|
foreach (const QString &path, paths) {
|
|
|
|
if (!QFile::exists(path)) return true;
|
2010-08-22 00:22:59 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-11-02 13:47:59 +03:00
|
|
|
int QTorrentHandle::queue_position() const {
|
2012-02-20 21:30:53 +04:00
|
|
|
if (torrent_handle::queue_position() < 0)
|
2010-05-21 15:58:14 +04:00
|
|
|
return -1;
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::queue_position()+1;
|
2008-11-02 13:47:59 +03:00
|
|
|
}
|
|
|
|
|
2008-09-03 22:19:17 +04:00
|
|
|
bool QTorrentHandle::is_seed() const {
|
2008-12-26 22:14:19 +03:00
|
|
|
// Affected by bug http://code.rasterbar.com/libtorrent/ticket/402
|
2010-10-20 00:00:50 +04:00
|
|
|
//return torrent_handle::is_seed();
|
2008-12-27 12:10:07 +03:00
|
|
|
// May suffer from approximation problems
|
|
|
|
//return (progress() == 1.);
|
|
|
|
// This looks safe
|
2014-05-14 02:09:45 +04:00
|
|
|
return is_seed(status(0x0));
|
2008-11-02 14:43:20 +03:00
|
|
|
}
|
|
|
|
|
2011-04-17 14:36:50 +04:00
|
|
|
bool QTorrentHandle::is_sequential_download() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status(0x0).sequential_download;
|
2009-11-15 13:59:11 +03:00
|
|
|
}
|
|
|
|
|
2009-11-19 18:43:00 +03:00
|
|
|
bool QTorrentHandle::priv() const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2010-10-20 00:00:50 +04:00
|
|
|
return torrent_handle::get_torrent_info().priv();
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
return torrent_handle::torrent_file()->priv();
|
|
|
|
#endif
|
2009-11-19 18:43:00 +03:00
|
|
|
}
|
|
|
|
|
2010-06-27 21:58:08 +04:00
|
|
|
QString QTorrentHandle::firstFileSavePath() const {
|
|
|
|
Q_ASSERT(has_metadata());
|
2013-11-10 00:28:18 +04:00
|
|
|
QString fsave_path = fsutils::fromNativePath(TorrentPersistentData::getSavePath(hash()));
|
2012-02-20 21:30:53 +04:00
|
|
|
if (fsave_path.isEmpty())
|
2010-06-27 21:58:08 +04:00
|
|
|
fsave_path = save_path();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!fsave_path.endsWith("/"))
|
2010-06-27 21:58:08 +04:00
|
|
|
fsave_path += "/";
|
2010-11-28 13:29:59 +03:00
|
|
|
fsave_path += filepath_at(0);
|
2010-07-25 18:00:35 +04:00
|
|
|
// Remove .!qB extension
|
2012-02-20 21:30:53 +04:00
|
|
|
if (fsave_path.endsWith(".!qB", Qt::CaseInsensitive))
|
2010-07-25 18:00:35 +04:00
|
|
|
fsave_path.chop(4);
|
2010-06-27 21:58:08 +04:00
|
|
|
return fsave_path;
|
|
|
|
}
|
|
|
|
|
2012-07-02 20:51:26 +04:00
|
|
|
QString QTorrentHandle::root_path() const
|
|
|
|
{
|
|
|
|
if (num_files() < 2)
|
|
|
|
return save_path();
|
2014-01-01 04:49:16 +04:00
|
|
|
QString first_filepath = filepath_at(0);
|
2013-11-10 00:28:18 +04:00
|
|
|
const int slashIndex = first_filepath.indexOf("/");
|
2014-01-01 04:49:16 +04:00
|
|
|
if (slashIndex >= 0)
|
|
|
|
return QDir(save_path()).absoluteFilePath(first_filepath.left(slashIndex));
|
|
|
|
return save_path();
|
2012-07-02 20:51:26 +04:00
|
|
|
}
|
|
|
|
|
2010-01-31 22:03:34 +03:00
|
|
|
bool QTorrentHandle::has_error() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return has_error(status(0x0));
|
2010-05-24 18:19:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString QTorrentHandle::error() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return misc::toQString(status(0x0).error);
|
2010-01-31 22:03:34 +03:00
|
|
|
}
|
|
|
|
|
2010-03-19 01:58:32 +03:00
|
|
|
void QTorrentHandle::downloading_pieces(bitfield &bf) const {
|
|
|
|
std::vector<partial_piece_info> queue;
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::get_download_queue(queue);
|
2012-07-14 02:28:23 +04:00
|
|
|
|
|
|
|
std::vector<partial_piece_info>::const_iterator it = queue.begin();
|
|
|
|
std::vector<partial_piece_info>::const_iterator itend = queue.end();
|
|
|
|
for ( ; it!= itend; ++it) {
|
2010-03-19 01:58:32 +03:00
|
|
|
bf.set_bit(it->piece_index);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-17 00:08:32 +04:00
|
|
|
bool QTorrentHandle::has_metadata() const {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status(0x0).has_metadata;
|
2011-04-17 19:00:48 +04:00
|
|
|
}
|
|
|
|
|
2011-06-05 20:08:30 +04:00
|
|
|
void QTorrentHandle::file_progress(std::vector<size_type>& fp) const {
|
2012-02-18 18:44:20 +04:00
|
|
|
torrent_handle::file_progress(fp, torrent_handle::piece_granularity);
|
2011-06-05 20:08:30 +04:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
//
|
|
|
|
// Setters
|
|
|
|
//
|
|
|
|
|
2010-11-24 23:31:14 +03:00
|
|
|
void QTorrentHandle::pause() const {
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::auto_managed(false);
|
|
|
|
torrent_handle::pause();
|
|
|
|
torrent_handle::save_resume_data();
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2010-11-24 23:31:14 +03:00
|
|
|
void QTorrentHandle::resume() const {
|
2012-02-21 21:49:43 +04:00
|
|
|
if (has_error())
|
|
|
|
torrent_handle::clear_error();
|
|
|
|
|
2010-07-25 18:55:30 +04:00
|
|
|
const QString torrent_hash = hash();
|
|
|
|
bool has_persistant_error = TorrentPersistentData::hasError(torrent_hash);
|
|
|
|
TorrentPersistentData::setErrorState(torrent_hash, false);
|
2010-11-16 23:34:31 +03:00
|
|
|
bool temp_path_enabled = Preferences().isTempPathEnabled();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (has_persistant_error && temp_path_enabled) {
|
2010-07-25 18:55:30 +04:00
|
|
|
// Torrent was supposed to be seeding, checking again in final destination
|
|
|
|
qDebug("Resuming a torrent with error...");
|
|
|
|
const QString final_save_path = TorrentPersistentData::getSavePath(torrent_hash);
|
|
|
|
qDebug("Torrent final path is: %s", qPrintable(final_save_path));
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!final_save_path.isEmpty())
|
2010-07-25 18:55:30 +04:00
|
|
|
move_storage(final_save_path);
|
|
|
|
}
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::auto_managed(true);
|
|
|
|
torrent_handle::resume();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (has_persistant_error && temp_path_enabled) {
|
2010-07-25 18:55:30 +04:00
|
|
|
// Force recheck
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::force_recheck();
|
2010-07-25 18:55:30 +04:00
|
|
|
}
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
void QTorrentHandle::remove_url_seed(const QString& seed) const {
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::remove_url_seed(seed.toStdString());
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
void QTorrentHandle::add_url_seed(const QString& seed) const {
|
2010-10-10 19:39:08 +04:00
|
|
|
const std::string str_seed = seed.toStdString();
|
2010-10-20 00:00:50 +04:00
|
|
|
qDebug("calling torrent_handle::add_url_seed(%s)", str_seed.c_str());
|
|
|
|
torrent_handle::add_url_seed(str_seed);
|
2007-09-09 11:44:22 +04:00
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
void QTorrentHandle::set_tracker_login(const QString& username, const QString& password) const {
|
2010-10-20 00:00:50 +04:00
|
|
|
torrent_handle::set_tracker_login(std::string(username.toLocal8Bit().constData()), std::string(password.toLocal8Bit().constData()));
|
2008-11-02 16:53:45 +03:00
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
void QTorrentHandle::move_storage(const QString& new_path) const {
|
|
|
|
if (QDir(save_path()) == QDir(new_path))
|
|
|
|
return;
|
|
|
|
|
2010-07-18 01:35:00 +04:00
|
|
|
TorrentPersistentData::setPreviousSavePath(hash(), save_path());
|
2010-10-17 19:17:39 +04:00
|
|
|
// Create destination directory if necessary
|
|
|
|
// or move_storage() will fail...
|
|
|
|
QDir().mkpath(new_path);
|
|
|
|
// Actually move the storage
|
2013-11-10 00:28:18 +04:00
|
|
|
torrent_handle::move_storage(fsutils::toNativePath(new_path).toUtf8().constData());
|
2008-11-02 22:55:55 +03:00
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
bool QTorrentHandle::save_torrent_file(const QString& path) const {
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!has_metadata()) return false;
|
2011-10-25 21:56:54 +04:00
|
|
|
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
|
|
|
torrent_info const* t = &get_torrent_info();
|
|
|
|
#else
|
|
|
|
boost::intrusive_ptr<torrent_info const> t = torrent_file();
|
|
|
|
#endif
|
2012-02-21 21:49:43 +04:00
|
|
|
|
2014-01-01 04:49:16 +04:00
|
|
|
entry meta = bdecode(t->metadata().get(),
|
|
|
|
t->metadata().get() + t->metadata_size());
|
2011-10-25 21:56:54 +04:00
|
|
|
entry torrent_entry(entry::dictionary_t);
|
|
|
|
torrent_entry["info"] = meta;
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!torrent_handle::trackers().empty())
|
2011-10-25 21:56:54 +04:00
|
|
|
torrent_entry["announce"] = torrent_handle::trackers().front().url;
|
|
|
|
|
|
|
|
vector<char> out;
|
|
|
|
bencode(back_inserter(out), torrent_entry);
|
|
|
|
QFile torrent_file(path);
|
|
|
|
if (!out.empty() && torrent_file.open(QIODevice::WriteOnly)) {
|
|
|
|
torrent_file.write(&out[0], out.size());
|
|
|
|
torrent_file.close();
|
2010-01-20 00:47:53 +03:00
|
|
|
return true;
|
|
|
|
}
|
2011-10-25 21:56:54 +04:00
|
|
|
|
2010-01-20 00:47:53 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-06 15:12:07 +03:00
|
|
|
void QTorrentHandle::file_priority(int index, int priority) const {
|
|
|
|
vector<int> priorities = torrent_handle::file_priorities();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (priorities[index] != priority) {
|
2011-01-06 15:12:07 +03:00
|
|
|
priorities[index] = priority;
|
|
|
|
prioritize_files(priorities);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTorrentHandle::prioritize_files(const vector<int> &files) const {
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
2012-02-20 21:30:53 +04:00
|
|
|
if ((int)files.size() != torrent_handle::get_torrent_info().num_files()) return;
|
2014-01-01 04:49:16 +04:00
|
|
|
#else
|
|
|
|
if ((int)files.size() != torrent_handle::torrent_file()->num_files()) return;
|
|
|
|
#endif
|
2011-01-08 16:31:57 +03:00
|
|
|
qDebug() << Q_FUNC_INFO;
|
2011-01-06 15:12:07 +03:00
|
|
|
bool was_seed = is_seed();
|
2011-01-08 16:48:29 +03:00
|
|
|
vector<size_type> progress;
|
2011-06-05 20:08:30 +04:00
|
|
|
file_progress(progress);
|
2012-02-15 23:13:42 +04:00
|
|
|
qDebug() << Q_FUNC_INFO << "Changing files priorities...";
|
2011-01-06 15:12:07 +03:00
|
|
|
torrent_handle::prioritize_files(files);
|
2013-06-21 01:12:13 +04:00
|
|
|
qDebug() << Q_FUNC_INFO << "Moving unwanted files to .unwanted folder and conversely...";
|
2014-01-01 04:49:16 +04:00
|
|
|
|
|
|
|
QString spath = save_path();
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
for (uint i = 0; i < files.size(); ++i) {
|
2011-01-06 15:12:07 +03:00
|
|
|
// Move unwanted files to a .unwanted subfolder
|
2013-06-21 01:12:13 +04:00
|
|
|
if (files[i] == 0) {
|
2014-01-01 04:49:16 +04:00
|
|
|
QString old_abspath = QDir(spath).absoluteFilePath(filepath_at(i));
|
2013-06-21 01:12:13 +04:00
|
|
|
QString parent_abspath = fsutils::branchPath(old_abspath);
|
2011-04-10 19:00:27 +04:00
|
|
|
// Make sure the file does not already exists
|
2013-06-21 01:12:13 +04:00
|
|
|
if (QDir(parent_abspath).dirName() != ".unwanted") {
|
|
|
|
QString unwanted_abspath = parent_abspath+"/.unwanted";
|
|
|
|
QString new_abspath = unwanted_abspath+"/"+filename_at(i);
|
2011-01-06 16:57:11 +03:00
|
|
|
qDebug() << "Unwanted path is" << unwanted_abspath;
|
2013-06-21 01:12:13 +04:00
|
|
|
if (QFile::exists(new_abspath)) {
|
|
|
|
qWarning() << "File" << new_abspath << "already exists at destination.";
|
|
|
|
continue;
|
|
|
|
}
|
2011-01-06 16:57:11 +03:00
|
|
|
bool created = QDir().mkpath(unwanted_abspath);
|
2013-09-21 11:59:58 +04:00
|
|
|
#ifdef Q_OS_WIN
|
2011-01-06 16:57:11 +03:00
|
|
|
qDebug() << "unwanted folder was created:" << created;
|
2012-02-20 21:30:53 +04:00
|
|
|
if (created) {
|
2011-01-06 16:57:11 +03:00
|
|
|
// Hide the folder on Windows
|
|
|
|
qDebug() << "Hiding folder (Windows)";
|
2013-11-10 00:28:18 +04:00
|
|
|
wstring win_path = fsutils::toNativePath(unwanted_abspath).toStdWString();
|
2011-01-06 16:57:11 +03:00
|
|
|
DWORD dwAttrs = GetFileAttributesW(win_path.c_str());
|
|
|
|
bool ret = SetFileAttributesW(win_path.c_str(), dwAttrs|FILE_ATTRIBUTE_HIDDEN);
|
|
|
|
Q_ASSERT(ret != 0); Q_UNUSED(ret);
|
|
|
|
}
|
2011-01-06 15:26:14 +03:00
|
|
|
#else
|
|
|
|
Q_UNUSED(created);
|
|
|
|
#endif
|
2013-06-21 01:12:13 +04:00
|
|
|
QString parent_path = fsutils::branchPath(filepath_at(i));
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!parent_path.isEmpty() && !parent_path.endsWith("/"))
|
2011-01-06 16:57:11 +03:00
|
|
|
parent_path += "/";
|
2013-06-21 01:12:13 +04:00
|
|
|
rename_file(i, parent_path+".unwanted/"+filename_at(i));
|
2011-01-06 15:12:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Move wanted files back to their original folder
|
2012-02-20 21:30:53 +04:00
|
|
|
if (files[i] > 0) {
|
2012-05-16 22:19:05 +04:00
|
|
|
QString parent_relpath = fsutils::branchPath(filepath_at(i));
|
2012-02-20 21:30:53 +04:00
|
|
|
if (QDir(parent_relpath).dirName() == ".unwanted") {
|
2012-02-15 23:13:42 +04:00
|
|
|
QString old_name = filename_at(i);
|
2012-05-16 22:19:05 +04:00
|
|
|
QString new_relpath = fsutils::branchPath(parent_relpath);
|
2012-02-15 23:13:42 +04:00
|
|
|
if (new_relpath.isEmpty())
|
|
|
|
rename_file(i, old_name);
|
|
|
|
else
|
|
|
|
rename_file(i, QDir(new_relpath).filePath(old_name));
|
2011-01-06 15:12:07 +03:00
|
|
|
// Remove .unwanted directory if empty
|
2013-11-10 00:28:18 +04:00
|
|
|
qDebug() << "Attempting to remove .unwanted folder at " << QDir(spath + "/" + new_relpath).absoluteFilePath(".unwanted");
|
|
|
|
QDir(spath + "/" + new_relpath).rmdir(".unwanted");
|
2011-01-06 15:12:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 23:13:42 +04:00
|
|
|
|
2012-02-20 21:30:53 +04:00
|
|
|
if (was_seed && !is_seed()) {
|
2012-02-15 23:13:42 +04:00
|
|
|
qDebug() << "Torrent is no longer SEEDING";
|
2011-01-06 15:12:07 +03:00
|
|
|
// Save seed status
|
|
|
|
TorrentPersistentData::saveSeedStatus(*this);
|
|
|
|
// Move to temp folder if necessary
|
|
|
|
const Preferences pref;
|
2012-02-20 21:30:53 +04:00
|
|
|
if (pref.isTempPathEnabled()) {
|
2011-01-06 15:12:07 +03:00
|
|
|
QString tmp_path = pref.getTempPath();
|
2014-01-01 04:49:16 +04:00
|
|
|
qDebug() << "tmp folder is enabled, move torrent to " << tmp_path << " from " << spath;
|
2011-01-06 15:12:07 +03:00
|
|
|
move_storage(tmp_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-04 23:47:20 +03:00
|
|
|
void QTorrentHandle::prioritize_first_last_piece(int file_index, bool b) const {
|
2009-11-21 15:35:26 +03:00
|
|
|
// Determine the priority to set
|
2012-02-21 21:49:43 +04:00
|
|
|
int prio = b ? 7 : torrent_handle::file_priority(file_index);
|
|
|
|
|
2014-01-01 04:49:16 +04:00
|
|
|
#if LIBTORRENT_VERSION_NUM < 10000
|
|
|
|
torrent_info const* tf = &get_torrent_info();
|
|
|
|
#else
|
|
|
|
boost::intrusive_ptr<torrent_info const> tf = torrent_file();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QPair<int, int> extremities = get_file_extremity_pieces(*tf, file_index);
|
2012-02-21 21:49:43 +04:00
|
|
|
piece_priority(extremities.first, prio);
|
|
|
|
piece_priority(extremities.second, prio);
|
2009-11-21 13:17:57 +03:00
|
|
|
}
|
|
|
|
|
2010-12-04 23:47:20 +03:00
|
|
|
void QTorrentHandle::prioritize_first_last_piece(bool b) const {
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!has_metadata()) return;
|
2010-12-04 23:47:20 +03:00
|
|
|
// Download first and last pieces first for all media files in the torrent
|
2012-02-21 21:49:43 +04:00
|
|
|
const uint nbfiles = num_files();
|
|
|
|
for (uint index = 0; index < nbfiles; ++index) {
|
2011-04-17 14:29:44 +04:00
|
|
|
const QString path = filepath_at(index);
|
2012-05-16 22:19:05 +04:00
|
|
|
const QString ext = fsutils::fileExtension(path);
|
2012-02-20 21:30:53 +04:00
|
|
|
if (misc::isPreviewable(ext) && torrent_handle::file_priority(index) > 0) {
|
2011-04-17 14:29:44 +04:00
|
|
|
qDebug() << "File" << path << "is previewable, toggle downloading of first/last pieces first";
|
2010-12-04 23:47:20 +03:00
|
|
|
prioritize_first_last_piece(index, b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-21 21:49:43 +04:00
|
|
|
void QTorrentHandle::rename_file(int index, const QString& name) const {
|
2011-01-06 16:57:11 +03:00
|
|
|
qDebug() << Q_FUNC_INFO << index << name;
|
2013-11-10 00:28:18 +04:00
|
|
|
torrent_handle::rename_file(index, std::string(fsutils::toNativePath(name).toUtf8().constData()));
|
2009-12-18 16:36:47 +03:00
|
|
|
}
|
|
|
|
|
2007-08-20 10:29:18 +04:00
|
|
|
//
|
|
|
|
// Operators
|
|
|
|
//
|
|
|
|
|
2012-02-20 23:32:58 +04:00
|
|
|
bool QTorrentHandle::operator ==(const QTorrentHandle& new_h) const {
|
2012-02-21 21:49:43 +04:00
|
|
|
return info_hash() == new_h.info_hash();
|
2007-08-20 10:29:18 +04:00
|
|
|
}
|
2014-05-14 02:09:45 +04:00
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
bool QTorrentHandle::is_paused(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status.paused && !status.auto_managed;
|
|
|
|
}
|
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
bool QTorrentHandle::is_queued(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status.paused && status.auto_managed;
|
|
|
|
}
|
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
bool QTorrentHandle::is_seed(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status.state == torrent_status::finished
|
|
|
|
|| status.state == torrent_status::seeding;
|
|
|
|
}
|
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
bool QTorrentHandle::is_checking(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status.state == torrent_status::checking_files
|
|
|
|
|| status.state == torrent_status::checking_resume_data;
|
|
|
|
}
|
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
bool QTorrentHandle::has_error(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
return status.paused && !status.error.empty();
|
|
|
|
}
|
|
|
|
|
2014-06-03 21:35:50 +04:00
|
|
|
float QTorrentHandle::progress(const libtorrent::torrent_status &status) {
|
2014-05-14 02:09:45 +04:00
|
|
|
if (!status.total_wanted)
|
|
|
|
return 0.;
|
|
|
|
if (status.total_wanted_done == status.total_wanted)
|
|
|
|
return 1.;
|
|
|
|
float progress = (float) status.total_wanted_done / (float) status.total_wanted;
|
|
|
|
Q_ASSERT(progress >= 0.f && progress <= 1.f);
|
|
|
|
return progress;
|
|
|
|
}
|