|
|
@ -23,31 +23,121 @@ |
|
|
|
#define DELETETHREAD_H |
|
|
|
#define DELETETHREAD_H |
|
|
|
|
|
|
|
|
|
|
|
#include <QThread> |
|
|
|
#include <QThread> |
|
|
|
|
|
|
|
#include <QMutex> |
|
|
|
|
|
|
|
#include <QWaitCondition> |
|
|
|
|
|
|
|
#include <QMutexLocker> |
|
|
|
|
|
|
|
|
|
|
|
#include "misc.h" |
|
|
|
#include "misc.h" |
|
|
|
|
|
|
|
|
|
|
|
class deleteThread : public QThread { |
|
|
|
class subDeleteThread : public QThread { |
|
|
|
Q_OBJECT |
|
|
|
Q_OBJECT |
|
|
|
|
|
|
|
|
|
|
|
private: |
|
|
|
private: |
|
|
|
QString path; |
|
|
|
QString path; |
|
|
|
|
|
|
|
bool abort; |
|
|
|
|
|
|
|
|
|
|
|
public : |
|
|
|
public: |
|
|
|
deleteThread(QString _path): path(_path){ |
|
|
|
subDeleteThread(QObject *parent, QString path) : QThread(parent), path(path){ |
|
|
|
start(); |
|
|
|
abort = false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
~deleteThread(){ |
|
|
|
~subDeleteThread(){ |
|
|
|
|
|
|
|
abort = true; |
|
|
|
wait(); |
|
|
|
wait(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
signals: |
|
|
|
signals: |
|
|
|
void deletionFinished(deleteThread*) const; |
|
|
|
// For subthreads
|
|
|
|
|
|
|
|
void deletionSuccessST(subDeleteThread* st, QString path); |
|
|
|
|
|
|
|
void deletionFailureST(subDeleteThread* st, QString path); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
|
|
|
void run(){ |
|
|
|
|
|
|
|
if(misc::removePath(path)) |
|
|
|
|
|
|
|
emit deletionSuccessST(this, path); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
emit deletionFailureST(this, path); |
|
|
|
|
|
|
|
qDebug("deletion completed for %s", (const char*)path.toUtf8()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class deleteThread : public QThread { |
|
|
|
|
|
|
|
Q_OBJECT |
|
|
|
|
|
|
|
|
|
|
|
private: |
|
|
|
private: |
|
|
|
|
|
|
|
QStringList path_list; |
|
|
|
|
|
|
|
QMutex mutex; |
|
|
|
|
|
|
|
QWaitCondition condition; |
|
|
|
|
|
|
|
bool abort; |
|
|
|
|
|
|
|
QList<subDeleteThread*> subThreads; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
signals: |
|
|
|
|
|
|
|
void deletionSuccess(QString path); |
|
|
|
|
|
|
|
void deletionFailure(QString path); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
|
|
|
deleteThread(QObject* parent) : QThread(parent){ |
|
|
|
|
|
|
|
abort = false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
~deleteThread(){ |
|
|
|
|
|
|
|
mutex.lock(); |
|
|
|
|
|
|
|
abort = true; |
|
|
|
|
|
|
|
condition.wakeOne(); |
|
|
|
|
|
|
|
mutex.unlock(); |
|
|
|
|
|
|
|
subDeleteThread *st; |
|
|
|
|
|
|
|
foreach(st, subThreads){ |
|
|
|
|
|
|
|
delete st; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
wait(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void deletePath(QString path){ |
|
|
|
|
|
|
|
QMutexLocker locker(&mutex); |
|
|
|
|
|
|
|
path_list << path; |
|
|
|
|
|
|
|
if(!isRunning()){ |
|
|
|
|
|
|
|
start(); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
condition.wakeOne(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
void run(){ |
|
|
|
void run(){ |
|
|
|
misc::removePath(path); |
|
|
|
forever{ |
|
|
|
emit deletionFinished(this); |
|
|
|
if(abort) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
mutex.lock(); |
|
|
|
|
|
|
|
if(path_list.size() != 0){ |
|
|
|
|
|
|
|
QString path = path_list.takeFirst(); |
|
|
|
|
|
|
|
mutex.unlock(); |
|
|
|
|
|
|
|
subDeleteThread *st = new subDeleteThread(0, path); |
|
|
|
|
|
|
|
subThreads << st; |
|
|
|
|
|
|
|
connect(st, SIGNAL(deletionSuccessST(subDownloadThread*, QString, QString)), this, SLOT(propagateDeletionSuccess(subDeleteThread*, QString))); |
|
|
|
|
|
|
|
connect(st, SIGNAL(deletionFailureST(subDownloadThread*, QString, QString)), this, SLOT(propagateDeletionFailure(subDeleteThread*, QString))); |
|
|
|
|
|
|
|
st->start(); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
condition.wait(&mutex); |
|
|
|
|
|
|
|
mutex.unlock(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
protected slots: |
|
|
|
|
|
|
|
void propagateDeletionSuccess(subDeleteThread* st, QString path){ |
|
|
|
|
|
|
|
int index = subThreads.indexOf(st); |
|
|
|
|
|
|
|
Q_ASSERT(index != -1); |
|
|
|
|
|
|
|
subThreads.removeAt(index); |
|
|
|
|
|
|
|
delete st; |
|
|
|
|
|
|
|
emit deletionSuccess(path); |
|
|
|
|
|
|
|
qDebug("%s was successfully deleted", (const char*)path.toUtf8()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void propagateDeletionFailure(subDeleteThread* st, QString path){ |
|
|
|
|
|
|
|
int index = subThreads.indexOf(st); |
|
|
|
|
|
|
|
Q_ASSERT(index != -1); |
|
|
|
|
|
|
|
subThreads.removeAt(index); |
|
|
|
|
|
|
|
delete st; |
|
|
|
|
|
|
|
emit deletionFailure(path); |
|
|
|
|
|
|
|
std::cerr << "Could not delete path: " << (const char*)path.toUtf8() << ". Check if qBittorrent has the required rights.\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|