2007-04-10 13:07:33 +04:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-13 10:55:51 +04:00
|
|
|
* Copyright (C) 2006-2007 Christophe Dumez
|
2007-04-10 13:07:33 +04:00
|
|
|
*
|
2007-07-13 10:55:51 +04:00
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2007-04-10 13:07:33 +04:00
|
|
|
*
|
|
|
|
* 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
|
2007-07-13 10:55:51 +04:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2007-04-10 13:07:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BANDWIDTH_ALLOCATION_H
|
|
|
|
#define BANDWIDTH_ALLOCATION_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2007-04-10 13:43:26 +04:00
|
|
|
#include <QList>
|
2007-07-14 14:50:38 +04:00
|
|
|
#include <QSettings>
|
2007-04-10 13:07:33 +04:00
|
|
|
#include "ui_bandwidth_limit.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "bittorrent.h"
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
class BandwidthAllocationDialog : public QDialog, private Ui_bandwidth_dlg {
|
2007-04-10 14:05:04 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
2007-04-10 13:07:33 +04:00
|
|
|
public:
|
2007-04-10 13:43:26 +04:00
|
|
|
BandwidthAllocationDialog(QWidget *parent, bool uploadMode, bittorrent *BTSession, QStringList hashes): QDialog(parent), uploadMode(uploadMode){
|
2007-04-10 13:07:33 +04:00
|
|
|
setupUi(this);
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
2007-07-14 14:50:38 +04:00
|
|
|
qDebug("Bandwidth allocation dialog creation");
|
2007-04-10 13:07:33 +04:00
|
|
|
this->BTSession = BTSession;
|
2007-07-14 14:50:38 +04:00
|
|
|
if(hashes.size() == 0)
|
|
|
|
global = true;
|
|
|
|
else
|
|
|
|
global = false;
|
2007-04-10 13:07:33 +04:00
|
|
|
if(uploadMode)
|
|
|
|
lblTitle->setText(tr("Upload limit:"));
|
|
|
|
else
|
|
|
|
lblTitle->setText(tr("Download limit:"));
|
|
|
|
connect(bandwidthSlider, SIGNAL(valueChanged(int)), this, SLOT(updateBandwidthLabel(int)));
|
2007-07-14 14:50:38 +04:00
|
|
|
if(!global){
|
|
|
|
QString hash;
|
|
|
|
foreach(hash, hashes){
|
|
|
|
torrent_handle h = BTSession->getTorrentHandle(hash);
|
|
|
|
if(!h.is_valid()){
|
|
|
|
qDebug("Error: Invalid Handle!");
|
|
|
|
continue;
|
|
|
|
}else{
|
|
|
|
handles << h;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unsigned int nbTorrents = handles.size();
|
|
|
|
if(!nbTorrents) close();
|
|
|
|
int val;
|
|
|
|
if(nbTorrents == 1){
|
|
|
|
torrent_handle h = handles.at(0);
|
|
|
|
if(uploadMode)
|
|
|
|
val = h.upload_limit();
|
|
|
|
else
|
|
|
|
val = h.download_limit();
|
|
|
|
qDebug("Bandwidth limit: %d", val);
|
|
|
|
if(val > bandwidthSlider->maximum() || val < bandwidthSlider->minimum())
|
|
|
|
val = -1;
|
|
|
|
bandwidthSlider->setValue(val);
|
|
|
|
if(val == -1) {
|
|
|
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)"));
|
|
|
|
kb_lbl->setText("");
|
|
|
|
} else {
|
|
|
|
limit_lbl->setText(QString(misc::toString(val).c_str()));
|
|
|
|
}
|
2007-04-10 13:43:26 +04:00
|
|
|
}else{
|
2007-07-14 14:50:38 +04:00
|
|
|
qDebug("More than one torrent selected, no initilization");
|
|
|
|
bandwidthSlider->setValue(-1);
|
|
|
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)"));
|
|
|
|
kb_lbl->setText("");
|
2007-04-10 13:43:26 +04:00
|
|
|
}
|
2007-07-14 14:50:38 +04:00
|
|
|
}else{
|
|
|
|
// Global limit
|
|
|
|
int val;
|
|
|
|
session *s = BTSession->getSession();
|
2007-04-12 21:17:04 +04:00
|
|
|
if(uploadMode)
|
2007-07-14 14:50:38 +04:00
|
|
|
val = (int)(s->upload_rate_limit()/1024.);
|
2007-04-12 21:17:04 +04:00
|
|
|
else
|
2007-07-14 14:50:38 +04:00
|
|
|
val = (int)(s->download_rate_limit()/1024.);
|
|
|
|
if(val == -1){
|
|
|
|
bandwidthSlider->setValue(-1);
|
2007-04-12 21:17:04 +04:00
|
|
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)"));
|
|
|
|
kb_lbl->setText("");
|
2007-07-14 14:50:38 +04:00
|
|
|
}else{
|
|
|
|
bandwidthSlider->setValue(val);
|
2007-04-12 21:17:04 +04:00
|
|
|
}
|
|
|
|
}
|
2007-07-14 14:50:38 +04:00
|
|
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(setBandwidth()));
|
|
|
|
show();
|
2007-04-10 13:07:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
~BandwidthAllocationDialog(){
|
|
|
|
qDebug("Deleting bandwidth allocation dialog");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void updateBandwidthLabel(int val){
|
|
|
|
if(val == -1){
|
|
|
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)"));
|
|
|
|
kb_lbl->setText("");
|
|
|
|
}else{
|
|
|
|
limit_lbl->setText(QString(misc::toString(val).c_str()));
|
|
|
|
kb_lbl->setText(tr("KiB/s"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-10 13:31:25 +04:00
|
|
|
void setBandwidth(){
|
|
|
|
int val = bandwidthSlider->value();
|
2007-07-14 14:50:38 +04:00
|
|
|
if(!global){
|
|
|
|
torrent_handle h;
|
|
|
|
if(uploadMode) {
|
|
|
|
foreach(h, handles) {
|
|
|
|
h.set_upload_limit(val*1024);
|
|
|
|
qDebug("Setting upload limit");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach(h, handles) {
|
|
|
|
h.set_download_limit(val*1024);
|
|
|
|
qDebug("Setting download limit");
|
|
|
|
}
|
2007-04-12 21:17:04 +04:00
|
|
|
}
|
2007-07-14 14:50:38 +04:00
|
|
|
}else{
|
|
|
|
QSettings settings("qBittorrent", "qBittorrent");
|
|
|
|
session *s = BTSession->getSession();
|
|
|
|
if(uploadMode){
|
|
|
|
s->set_upload_rate_limit(val*1024);
|
|
|
|
settings.setValue("Options/Main/UPLimit", val);
|
|
|
|
}else{
|
|
|
|
s->set_download_rate_limit(val*1024);
|
|
|
|
settings.setValue("Options/Main/DLLimit", val);
|
2007-04-12 21:17:04 +04:00
|
|
|
}
|
2007-04-10 13:43:26 +04:00
|
|
|
}
|
2007-04-10 13:31:25 +04:00
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2007-04-10 13:07:33 +04:00
|
|
|
private:
|
|
|
|
bool uploadMode;
|
2007-07-14 14:50:38 +04:00
|
|
|
bool global;
|
2007-04-10 13:07:33 +04:00
|
|
|
bittorrent *BTSession;
|
2007-04-10 13:43:26 +04:00
|
|
|
QList<torrent_handle> handles;
|
2007-04-10 13:07:33 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|