2007-02-22 14:47:50 +03:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 18:31:59 +04:00
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
2007-02-22 14:47:50 +03:00
|
|
|
*
|
2007-07-14 18:31:59 +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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-02-22 14:47:50 +03: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-14 18:31:59 +04:00
|
|
|
* 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
|
2007-02-22 14:47:50 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DELETETHREAD_H
|
|
|
|
#define DELETETHREAD_H
|
|
|
|
|
|
|
|
#include <QThread>
|
2007-07-31 12:52:04 +04:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
|
|
|
#include <QMutexLocker>
|
2007-08-23 18:04:53 +04:00
|
|
|
#include <QPair>
|
2007-02-22 14:47:50 +03:00
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
|
2007-07-31 12:52:04 +04:00
|
|
|
class subDeleteThread : public QThread {
|
2007-03-05 16:55:23 +03:00
|
|
|
Q_OBJECT
|
2007-02-22 14:47:50 +03:00
|
|
|
private:
|
2007-08-23 18:04:53 +04:00
|
|
|
QString save_path;
|
|
|
|
QStringList files_path;
|
2007-07-31 12:52:04 +04:00
|
|
|
bool abort;
|
2007-02-22 14:47:50 +03:00
|
|
|
|
2007-07-31 12:52:04 +04:00
|
|
|
public:
|
2007-08-28 20:17:32 +04:00
|
|
|
subDeleteThread(QObject *parent, QString save_path, QStringList files_path) : QThread(parent), save_path(save_path), files_path(files_path), abort(false){}
|
2007-02-22 14:47:50 +03:00
|
|
|
|
2007-07-31 12:52:04 +04:00
|
|
|
~subDeleteThread(){
|
|
|
|
abort = true;
|
2007-03-09 21:11:43 +03:00
|
|
|
wait();
|
|
|
|
}
|
|
|
|
|
2007-03-05 16:55:23 +03:00
|
|
|
signals:
|
2007-07-31 12:52:04 +04:00
|
|
|
// For subthreads
|
2007-08-23 18:04:53 +04:00
|
|
|
void deletionSuccessST(subDeleteThread* st);
|
|
|
|
void deletionFailureST(subDeleteThread* st);
|
2007-07-31 12:52:04 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void run(){
|
2007-08-23 18:04:53 +04:00
|
|
|
if(misc::removeTorrentSavePath(save_path, files_path))
|
|
|
|
emit deletionSuccessST(this);
|
2007-07-31 12:52:04 +04:00
|
|
|
else
|
2007-08-23 18:04:53 +04:00
|
|
|
emit deletionFailureST(this);
|
2007-07-31 12:52:04 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class deleteThread : public QThread {
|
|
|
|
Q_OBJECT
|
2007-03-05 16:55:23 +03:00
|
|
|
|
2007-02-22 14:47:50 +03:00
|
|
|
private:
|
2007-08-23 18:04:53 +04:00
|
|
|
QList<QPair<QString, QStringList> > torrents_list;
|
2007-07-31 12:52:04 +04:00
|
|
|
QMutex mutex;
|
|
|
|
QWaitCondition condition;
|
|
|
|
bool abort;
|
|
|
|
QList<subDeleteThread*> subThreads;
|
|
|
|
|
|
|
|
public:
|
2007-08-28 20:17:32 +04:00
|
|
|
deleteThread(QObject* parent) : QThread(parent), abort(false){}
|
2007-07-31 12:52:04 +04:00
|
|
|
|
|
|
|
~deleteThread(){
|
|
|
|
mutex.lock();
|
|
|
|
abort = true;
|
|
|
|
condition.wakeOne();
|
|
|
|
mutex.unlock();
|
2007-08-19 17:00:51 +04:00
|
|
|
qDeleteAll(subThreads);
|
2007-07-31 12:52:04 +04:00
|
|
|
wait();
|
|
|
|
}
|
|
|
|
|
2007-08-23 18:04:53 +04:00
|
|
|
void deleteTorrent(QString save_path, QStringList files_path){
|
2007-07-31 12:52:04 +04:00
|
|
|
QMutexLocker locker(&mutex);
|
2007-08-23 18:04:53 +04:00
|
|
|
torrents_list << QPair<QString, QStringList>(save_path, files_path);
|
2007-07-31 12:52:04 +04:00
|
|
|
if(!isRunning()){
|
|
|
|
start();
|
|
|
|
}else{
|
|
|
|
condition.wakeOne();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2007-02-22 14:47:50 +03:00
|
|
|
void run(){
|
2007-07-31 12:52:04 +04:00
|
|
|
forever{
|
|
|
|
if(abort)
|
|
|
|
return;
|
|
|
|
mutex.lock();
|
2007-08-23 18:04:53 +04:00
|
|
|
if(torrents_list.size() != 0){
|
|
|
|
QPair<QString, QStringList> torrent = torrents_list.takeFirst();
|
2007-07-31 12:52:04 +04:00
|
|
|
mutex.unlock();
|
2007-08-23 18:04:53 +04:00
|
|
|
subDeleteThread *st = new subDeleteThread(0, torrent.first, torrent.second);
|
|
|
|
subThreads << st;
|
|
|
|
connect(st, SIGNAL(deletionSuccessST(subDeleteThread*)), this, SLOT(deleteSubThread(subDeleteThread*)));
|
|
|
|
connect(st, SIGNAL(deletionFailureST(subDeleteThread*)), this, SLOT(deleteSubThread(subDeleteThread*)));
|
|
|
|
st->start();
|
2007-07-31 12:52:04 +04:00
|
|
|
}else{
|
|
|
|
condition.wait(&mutex);
|
|
|
|
mutex.unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
protected slots:
|
2007-08-23 18:04:53 +04:00
|
|
|
void deleteSubThread(subDeleteThread* st){
|
2007-07-31 12:52:04 +04:00
|
|
|
int index = subThreads.indexOf(st);
|
|
|
|
Q_ASSERT(index != -1);
|
|
|
|
subThreads.removeAt(index);
|
|
|
|
delete st;
|
2007-02-22 14:47:50 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|