mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-09 14:27:56 +00:00
9cbab8d63e
- Broke compatibility with Qt4.2. Will fix this a bit later (in the meantime, edit properties.ui)
539 lines
19 KiB
C++
539 lines
19 KiB
C++
/*
|
|
* 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.
|
|
*
|
|
* Contact : chris@qbittorrent.org
|
|
*/
|
|
|
|
#include "properties_imp.h"
|
|
#include "misc.h"
|
|
#include "PropListDelegate.h"
|
|
#include "bittorrent.h"
|
|
|
|
#include <QInputDialog>
|
|
#include <QMessageBox>
|
|
#include <QMenu>
|
|
#include <QTimer>
|
|
#include <QStandardItemModel>
|
|
|
|
// Constructor
|
|
properties::properties(QWidget *parent, bittorrent *BTSession, torrent_handle &h, QStringList trackerErrors): QDialog(parent), h(h){
|
|
setupUi(this);
|
|
this->BTSession = BTSession;
|
|
changedFilteredfiles = false;
|
|
lbl_priorities->setText(tr("Priorities:")+"<ul><li>"+tr("Ignored: file is not downloaded at all")+"</li><li>"+tr("Normal: normal priority. Download order is dependent on availability")+"</li><li>"+tr("High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability")+"</li><li>"+tr("Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority")+"</li></ul>");
|
|
// set icons
|
|
addTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
|
removeTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
|
lowerTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/downarrow.png")));
|
|
riseTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/uparrow.png")));
|
|
addWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
|
deleteWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
// Set Properties list model
|
|
PropListModel = new QStandardItemModel(0,4);
|
|
PropListModel->setHeaderData(NAME, Qt::Horizontal, tr("File name"));
|
|
PropListModel->setHeaderData(SIZE, Qt::Horizontal, tr("Size"));
|
|
PropListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress"));
|
|
PropListModel->setHeaderData(PRIORITY, Qt::Horizontal, tr("Priority"));
|
|
filesList->setModel(PropListModel);
|
|
PropDelegate = new PropListDelegate(0, &changedFilteredfiles);
|
|
filesList->setItemDelegate(PropDelegate);
|
|
connect(filesList, SIGNAL(clicked(const QModelIndex&)), filesList, SLOT(edit(const QModelIndex&)));
|
|
connect(filesList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayFilesListMenu(const QPoint&)));
|
|
connect(addTracker_button, SIGNAL(clicked()), this, SLOT(askForTracker()));
|
|
connect(removeTracker_button, SIGNAL(clicked()), this, SLOT(deleteSelectedTrackers()));
|
|
connect(riseTracker_button, SIGNAL(clicked()), this, SLOT(riseSelectedTracker()));
|
|
connect(lowerTracker_button, SIGNAL(clicked()), this, SLOT(lowerSelectedTracker()));
|
|
connect(actionIgnored, SIGNAL(triggered()), this, SLOT(ignoreSelection()));
|
|
connect(actionNormal, SIGNAL(triggered()), this, SLOT(normalSelection()));
|
|
connect(actionHigh, SIGNAL(triggered()), this, SLOT(highSelection()));
|
|
connect(actionMaximum, SIGNAL(triggered()), this, SLOT(maximumSelection()));
|
|
connect(addWS_button, SIGNAL(clicked()), this, SLOT(askWebSeed()));
|
|
connect(deleteWS_button, SIGNAL(clicked()), this, SLOT(deleteSelectedUrlSeeds()));
|
|
// get Infos from torrent handle
|
|
fileHash = QString(misc::toString(h.info_hash()).c_str());
|
|
torrent_status torrentStatus = h.status();
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
fileName->setText(torrentInfo.name().c_str());
|
|
// Torrent Infos
|
|
save_path->setText(QString(h.save_path().string().c_str()));
|
|
QString author = QString(torrentInfo.creator().c_str()).trimmed();
|
|
if(author.isEmpty())
|
|
author = tr("Unknown");
|
|
creator->setText(author);
|
|
hash_lbl->setText(fileHash);
|
|
comment_txt->setText(QString(torrentInfo.comment().c_str()));
|
|
//Trackers
|
|
loadTrackers();
|
|
// Session infos
|
|
char tmp[MAX_CHAR_TMP];
|
|
failed->setText(misc::friendlyUnit(torrentStatus.total_failed_bytes));
|
|
upTotal->setText(misc::friendlyUnit(torrentStatus.total_payload_upload));
|
|
dlTotal->setText(misc::friendlyUnit(torrentStatus.total_payload_download));
|
|
// Update ratio info
|
|
float ratio;
|
|
if(torrentStatus.total_payload_download == 0){
|
|
if(torrentStatus.total_payload_upload == 0)
|
|
ratio = 1.;
|
|
else
|
|
ratio = 10.; // Max ratio
|
|
}else{
|
|
ratio = (float)torrentStatus.total_payload_upload/(float)torrentStatus.total_payload_download;
|
|
if(ratio > 10.){
|
|
ratio = 10.;
|
|
}
|
|
}
|
|
snprintf(tmp, MAX_CHAR_TMP, "%.1f", ratio);
|
|
shareRatio->setText(tmp);
|
|
// Tracker Errors
|
|
for(int i=0; i < trackerErrors.size(); ++i){
|
|
this->trackerErrors->append(trackerErrors.at(i));
|
|
}
|
|
std::vector<float> fp;
|
|
h.file_progress(fp);
|
|
// List files in torrent
|
|
unsigned int nbFiles = torrentInfo.num_files();
|
|
for(unsigned int i=0; i<nbFiles; ++i){
|
|
unsigned int row = PropListModel->rowCount();
|
|
PropListModel->insertRow(row);
|
|
PropListModel->setData(PropListModel->index(row, NAME), QVariant(torrentInfo.file_at(i).path.leaf().c_str()));
|
|
PropListModel->setData(PropListModel->index(row, SIZE), QVariant((qlonglong)torrentInfo.file_at(i).size));
|
|
PropListModel->setData(PropListModel->index(row, PROGRESS), QVariant((double)fp[i]));
|
|
}
|
|
loadPiecesPriorities();
|
|
// List web seeds
|
|
loadWebSeedsFromFile();
|
|
loadWebSeeds();
|
|
// Incremental download
|
|
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".incremental")){
|
|
incrementalDownload->setChecked(true);
|
|
}else{
|
|
incrementalDownload->setChecked(false);
|
|
}
|
|
updateProgressTimer = new QTimer(this);
|
|
connect(updateProgressTimer, SIGNAL(timeout()), this, SLOT(updateProgress()));
|
|
updateProgressTimer->start(2000);
|
|
}
|
|
|
|
properties::~properties(){
|
|
qDebug("Properties destroyed");
|
|
delete updateProgressTimer;
|
|
delete PropDelegate;
|
|
delete PropListModel;
|
|
}
|
|
|
|
void properties::loadWebSeeds(){
|
|
QString url_seed;
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
std::vector<std::string> url_seeds = torrentInfo.url_seeds();
|
|
unsigned int nbSeeds = url_seeds.size();
|
|
// Clear url seeds list
|
|
listWebSeeds->clear();
|
|
// Add hard coded url seeds
|
|
for(unsigned int i=0; i<nbSeeds; ++i){
|
|
url_seed = QString(url_seeds[i].c_str());
|
|
if(manualUrlSeeds.indexOf(url_seed) == -1)
|
|
qDebug("Added hard-coded url seed to list: %s", (const char*)url_seed.toUtf8());
|
|
listWebSeeds->addItem(url_seed);
|
|
}
|
|
// Add manually added url seeds
|
|
foreach(url_seed, manualUrlSeeds){
|
|
listWebSeeds->addItem(url_seed);
|
|
qDebug("Added custom url seed to list: %s", (const char*)url_seed.toUtf8());
|
|
}
|
|
}
|
|
|
|
void properties::loadPiecesPriorities(){
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
unsigned int nbFiles = torrentInfo.num_files();
|
|
QString fileName = QString(torrentInfo.name().c_str());
|
|
QFile pieces_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".priorities");
|
|
has_filtered_files = false;
|
|
qDebug("Loading pieces priorities");
|
|
// Read saved file
|
|
if(!pieces_file.open(QIODevice::ReadOnly | QIODevice::Text)){
|
|
qDebug("Could not find pieces file");
|
|
setAllPiecesState(NORMAL);
|
|
return;
|
|
}
|
|
QByteArray pieces_text = pieces_file.readAll();
|
|
pieces_file.close();
|
|
QList<QByteArray> pieces_priority_list = pieces_text.split('\n');
|
|
if((unsigned int)pieces_priority_list.size() != nbFiles+1){
|
|
std::cerr << "Error: Corrupted pieces file\n";
|
|
setAllPiecesState(NORMAL);
|
|
return;
|
|
}
|
|
for(unsigned int i=0; i<nbFiles; ++i){
|
|
int priority = pieces_priority_list.at(i).toInt();
|
|
if( priority < 0 || priority > 7){
|
|
// Normal priority as default
|
|
priority = 1;
|
|
}
|
|
if(!priority){
|
|
setRowColor(i, "red");
|
|
has_filtered_files = true;
|
|
}else{
|
|
setRowColor(i, "green");
|
|
}
|
|
PropListModel->setData(PropListModel->index(i, PRIORITY), QVariant(priority));
|
|
}
|
|
}
|
|
|
|
void properties::displayFilesListMenu(const QPoint& pos){
|
|
QMenu myFilesLlistMenu(this);
|
|
QModelIndex index;
|
|
// Enable/disable pause/start action given the DL state
|
|
QModelIndexList selectedIndexes = filesList->selectionModel()->selectedIndexes();
|
|
myFilesLlistMenu.setTitle(tr("Priority"));
|
|
myFilesLlistMenu.addAction(actionIgnored);
|
|
myFilesLlistMenu.addAction(actionNormal);
|
|
myFilesLlistMenu.addAction(actionHigh);
|
|
myFilesLlistMenu.addAction(actionMaximum);
|
|
// Call menu
|
|
// XXX: why mapToGlobal() is not enough?
|
|
myFilesLlistMenu.exec(mapToGlobal(pos)+QPoint(22,95));
|
|
}
|
|
|
|
void properties::ignoreSelection(){
|
|
QModelIndexList selectedIndexes = filesList->selectionModel()->selectedIndexes();
|
|
QModelIndex index;
|
|
foreach(index, selectedIndexes){
|
|
if(index.column() == PRIORITY){
|
|
PropListModel->setData(index, QVariant(IGNORED));
|
|
}
|
|
}
|
|
}
|
|
|
|
void properties::normalSelection(){
|
|
QModelIndexList selectedIndexes = filesList->selectionModel()->selectedIndexes();
|
|
QModelIndex index;
|
|
foreach(index, selectedIndexes){
|
|
if(index.column() == PRIORITY){
|
|
PropListModel->setData(index, QVariant(NORMAL));
|
|
}
|
|
}
|
|
}
|
|
|
|
void properties::highSelection(){
|
|
QModelIndexList selectedIndexes = filesList->selectionModel()->selectedIndexes();
|
|
QModelIndex index;
|
|
foreach(index, selectedIndexes){
|
|
if(index.column() == PRIORITY){
|
|
PropListModel->setData(index, QVariant(HIGH));
|
|
}
|
|
}
|
|
}
|
|
|
|
void properties::maximumSelection(){
|
|
QModelIndexList selectedIndexes = filesList->selectionModel()->selectedIndexes();
|
|
QModelIndex index;
|
|
foreach(index, selectedIndexes){
|
|
if(index.column() == PRIORITY){
|
|
PropListModel->setData(index, QVariant(MAXIMUM));
|
|
}
|
|
}
|
|
}
|
|
|
|
void properties::loadTrackers(){
|
|
//Trackers
|
|
std::vector<announce_entry> trackers = h.trackers();
|
|
trackersURLS->clear();
|
|
for(unsigned int i=0; i<trackers.size(); ++i){
|
|
trackersURLS->addItem(QString(trackers[i].url.c_str()));
|
|
}
|
|
torrent_status torrentStatus = h.status();
|
|
QString tracker = QString(torrentStatus.current_tracker.c_str()).trimmed();
|
|
if(!tracker.isEmpty()){
|
|
trackerURL->setText(tracker);
|
|
}else{
|
|
trackerURL->setText(tr("None - Unreachable?"));
|
|
}
|
|
}
|
|
|
|
void properties::askWebSeed(){
|
|
bool ok;
|
|
// Ask user for a new url seed
|
|
QString url_seed = QInputDialog::getText(this, tr("New url seed"),
|
|
tr("New url seed:"), QLineEdit::Normal,
|
|
"http://www.", &ok);
|
|
if(!ok) return;
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
qDebug("Adding %s web seed", (const char*)url_seed.toUtf8());
|
|
if(manualUrlSeeds.indexOf(url_seed) != -1) {
|
|
QMessageBox::warning(this, tr("qBittorrent"),
|
|
tr("This url seed is already in the list."),
|
|
QMessageBox::Ok);
|
|
return;
|
|
}
|
|
manualUrlSeeds << url_seed;
|
|
torrentInfo.add_url_seed(url_seed.toStdString());
|
|
saveWebSeeds();
|
|
// Refresh the seeds list
|
|
loadWebSeeds();
|
|
}
|
|
|
|
// Ask the user for a new tracker
|
|
// and add it to the download list
|
|
// if it is not already in it
|
|
void properties::askForTracker(){
|
|
bool ok;
|
|
// Ask user for a new tracker
|
|
QString trackerUrl = QInputDialog::getText(this, tr("New tracker"),
|
|
tr("New tracker url:"), QLineEdit::Normal,
|
|
"http://www.", &ok);
|
|
if(!ok) return;
|
|
// Add the tracker to the list
|
|
std::vector<announce_entry> trackers = h.trackers();
|
|
announce_entry new_tracker(trackerUrl.toStdString());
|
|
new_tracker.tier = trackersURLS->count();
|
|
trackers.push_back(new_tracker);
|
|
h.replace_trackers(trackers);
|
|
h.force_reannounce();
|
|
// Reload Trackers
|
|
loadTrackers();
|
|
}
|
|
|
|
void properties::deleteSelectedUrlSeeds(){
|
|
QList<QListWidgetItem *> selectedItems;
|
|
selectedItems = listWebSeeds->selectedItems();
|
|
QListWidgetItem *item;
|
|
bool error = false;
|
|
foreach(item, selectedItems){
|
|
QString url_seed = item->text();
|
|
int index = manualUrlSeeds.indexOf(url_seed);
|
|
if(index != -1){
|
|
manualUrlSeeds.removeAt(index);
|
|
qDebug("Removed an url seeds from manualUrlSeeds list");
|
|
}else{
|
|
error = true;
|
|
}
|
|
}
|
|
// Save them to disk
|
|
saveWebSeeds();
|
|
// Refresh list
|
|
loadWebSeeds();
|
|
if(error){
|
|
QMessageBox::warning(this, tr("qBittorrent"),
|
|
tr("Hard-coded url seeds cannot be deleted."),
|
|
QMessageBox::Ok);
|
|
}
|
|
}
|
|
|
|
void properties::deleteSelectedTrackers(){
|
|
std::vector<announce_entry> trackers = h.trackers();
|
|
QList<QListWidgetItem *> selectedItems;
|
|
selectedItems = trackersURLS->selectedItems();
|
|
QListWidgetItem *item;
|
|
unsigned int nbTrackers = trackers.size();
|
|
if(nbTrackers == (unsigned int) selectedItems.size()){
|
|
QMessageBox::warning(this, tr("qBittorrent"),
|
|
tr("Trackers list can't be empty."),
|
|
QMessageBox::Ok);
|
|
return;
|
|
}
|
|
foreach(item, selectedItems){
|
|
QString url = item->text();
|
|
for(unsigned int i=0; i<nbTrackers; ++i){
|
|
if(QString(trackers.at(i).url.c_str()) == url){
|
|
trackers.erase(trackers.begin()+i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
h.replace_trackers(trackers);
|
|
h.force_reannounce();
|
|
// Reload Trackers
|
|
loadTrackers();
|
|
}
|
|
|
|
void properties::riseSelectedTracker(){
|
|
unsigned int i = 0;
|
|
std::vector<announce_entry> trackers = h.trackers();
|
|
QList<QListWidgetItem *> selectedItems;
|
|
selectedItems = trackersURLS->selectedItems();
|
|
QListWidgetItem *item;
|
|
bool change = false;
|
|
foreach(item, selectedItems){
|
|
QString url = item->text();
|
|
for(i=0; i<trackers.size(); ++i){
|
|
if(QString(trackers.at(i).url.c_str()) == url){
|
|
if(trackers[i].tier>0 && i != 0){
|
|
trackers[i].tier -= 1;
|
|
announce_entry tmp = trackers[i];
|
|
trackers[i] = trackers[i-1];
|
|
trackers[i-1] = tmp;
|
|
change = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(change){
|
|
h.replace_trackers(trackers);
|
|
h.force_reannounce();
|
|
// Reload Trackers
|
|
loadTrackers();
|
|
trackersURLS->item(i-1)->setSelected(true);
|
|
}
|
|
}
|
|
|
|
void properties::lowerSelectedTracker(){
|
|
unsigned int i = 0;
|
|
std::vector<announce_entry> trackers = h.trackers();
|
|
QList<QListWidgetItem *> selectedItems;
|
|
selectedItems = trackersURLS->selectedItems();
|
|
QListWidgetItem *item;
|
|
bool change = false;
|
|
foreach(item, selectedItems){
|
|
QString url = item->text();
|
|
for(i=0; i<trackers.size(); ++i){
|
|
if(QString(trackers.at(i).url.c_str()) == url){
|
|
if(i != trackers.size()-1){
|
|
trackers[i].tier += 1;
|
|
announce_entry tmp = trackers[i];
|
|
trackers[i] = trackers[i+1];
|
|
trackers[i+1] = tmp;
|
|
change = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(change){
|
|
h.replace_trackers(trackers);
|
|
h.force_reannounce();
|
|
// Reload Trackers
|
|
loadTrackers();
|
|
trackersURLS->item(i+1)->setSelected(true);
|
|
}
|
|
}
|
|
|
|
void properties::updateProgress(){
|
|
std::vector<float> fp;
|
|
try{
|
|
h.file_progress(fp);
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
for(int i=0; i<torrentInfo.num_files(); ++i){
|
|
PropListModel->setData(PropListModel->index(i, PROGRESS), QVariant((double)fp[i]));
|
|
}
|
|
}catch(invalid_handle e){
|
|
// torrent was removed, closing properties
|
|
close();
|
|
}
|
|
}
|
|
|
|
// Set the color of a row in data model
|
|
void properties::setRowColor(int row, QString color){
|
|
for(int i=0; i<PropListModel->columnCount(); ++i){
|
|
PropListModel->setData(PropListModel->index(row, i), QVariant(QColor(color)), Qt::TextColorRole);
|
|
}
|
|
}
|
|
|
|
void properties::setAllPiecesState(unsigned short priority){
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
for(int i=0; i<torrentInfo.num_files(); ++i){
|
|
if(priority){
|
|
setRowColor(i, "green");
|
|
}else{
|
|
setRowColor(i, "red");
|
|
}
|
|
PropListModel->setData(PropListModel->index(i, PRIORITY), QVariant(priority));
|
|
}
|
|
}
|
|
|
|
void properties::on_incrementalDownload_stateChanged(int){
|
|
qDebug("Incremental download toggled");
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
if(incrementalDownload->isChecked()){
|
|
// Create .incremental file
|
|
QFile incremental_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".incremental");
|
|
incremental_file.open(QIODevice::WriteOnly | QIODevice::Text);
|
|
incremental_file.close();
|
|
h.set_sequenced_download_threshold(15);
|
|
}else{
|
|
QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".incremental");
|
|
h.set_sequenced_download_threshold(100);
|
|
}
|
|
}
|
|
|
|
void properties::on_okButton_clicked(){
|
|
savePiecesPriorities();
|
|
close();
|
|
}
|
|
|
|
void properties::loadWebSeedsFromFile(){
|
|
QFile urlseeds_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".urlseeds");
|
|
if(!urlseeds_file.open(QIODevice::ReadOnly | QIODevice::Text)) return;
|
|
QByteArray urlseeds_lines = urlseeds_file.readAll();
|
|
urlseeds_file.close();
|
|
QList<QByteArray> url_seeds = urlseeds_lines.split('\n');
|
|
manualUrlSeeds.clear();
|
|
QByteArray url_seed;
|
|
foreach(url_seed, url_seeds){
|
|
if(!url_seed.isEmpty())
|
|
manualUrlSeeds << url_seed;
|
|
}
|
|
}
|
|
|
|
void properties::saveWebSeeds(){
|
|
QFile urlseeds_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".urlseeds");
|
|
if(!urlseeds_file.open(QIODevice::WriteOnly | QIODevice::Text)){
|
|
std::cerr << "Error: Could not save url seeds\n";
|
|
return;
|
|
}
|
|
QString url_seed;
|
|
foreach(url_seed, manualUrlSeeds){
|
|
urlseeds_file.write(QByteArray((const char*)(url_seed+"\n").toUtf8()));
|
|
}
|
|
urlseeds_file.close();
|
|
qDebug("url seeds were saved");
|
|
}
|
|
|
|
void properties::savePiecesPriorities(){
|
|
if(!changedFilteredfiles) return;
|
|
qDebug("Saving pieces priorities");
|
|
torrent_info torrentInfo = h.get_torrent_info();
|
|
bool hasFilteredFiles = false;
|
|
QString fileName = QString(torrentInfo.name().c_str());
|
|
QFile pieces_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+fileHash+".priorities");
|
|
// First, remove old file
|
|
pieces_file.remove();
|
|
// Write new files
|
|
if(!pieces_file.open(QIODevice::WriteOnly | QIODevice::Text)){
|
|
std::cerr << "Error: Could not save pieces priorities\n";
|
|
return;
|
|
}
|
|
unsigned int nbRows = PropListModel->rowCount();
|
|
for(unsigned int i=0; i<nbRows; ++i){
|
|
QStandardItem *item = PropListModel->item(i, PRIORITY);
|
|
unsigned short priority = item->text().toInt();
|
|
if(!priority) {
|
|
hasFilteredFiles = true;
|
|
}
|
|
pieces_file.write(QByteArray((misc::toString(priority)+"\n").c_str()));
|
|
}
|
|
pieces_file.close();
|
|
if(hasFilteredFiles && !BTSession->inFullAllocationMode(fileHash)){
|
|
emit mustHaveFullAllocationMode(h);
|
|
}
|
|
BTSession->loadFilesPriorities(h);
|
|
emit filteredFilesChanged(fileHash);
|
|
has_filtered_files = hasFilteredFiles;
|
|
}
|