Merge branch 'threadfix'
commit
55bd0c728e
@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
#include "operationholder.hpp"
|
||||||
|
|
||||||
|
#include "operation.hpp"
|
||||||
|
|
||||||
|
CSMDoc::OperationHolder::OperationHolder (Operation *operation) : mRunning (false)
|
||||||
|
{
|
||||||
|
if (operation)
|
||||||
|
setOperation (operation);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMDoc::OperationHolder::setOperation (Operation *operation)
|
||||||
|
{
|
||||||
|
mOperation = operation;
|
||||||
|
mOperation->moveToThread (&mThread);
|
||||||
|
|
||||||
|
connect (
|
||||||
|
mOperation, SIGNAL (progress (int, int, int)),
|
||||||
|
this, SIGNAL (progress (int, int, int)));
|
||||||
|
|
||||||
|
connect (
|
||||||
|
mOperation, SIGNAL (reportMessage (const CSMWorld::UniversalId&, const std::string&, const std::string&, int)),
|
||||||
|
this, SIGNAL (reportMessage (const CSMWorld::UniversalId&, const std::string&, const std::string&, int)));
|
||||||
|
|
||||||
|
connect (
|
||||||
|
mOperation, SIGNAL (done (int, bool)),
|
||||||
|
this, SLOT (doneSlot (int, bool)));
|
||||||
|
|
||||||
|
connect (this, SIGNAL (abortSignal()), mOperation, SLOT (abort()));
|
||||||
|
|
||||||
|
connect (&mThread, SIGNAL (started()), mOperation, SLOT (run()));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CSMDoc::OperationHolder::isRunning() const
|
||||||
|
{
|
||||||
|
return mRunning;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMDoc::OperationHolder::start()
|
||||||
|
{
|
||||||
|
mRunning = true;
|
||||||
|
mThread.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMDoc::OperationHolder::abort()
|
||||||
|
{
|
||||||
|
mRunning = false;
|
||||||
|
emit abortSignal();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMDoc::OperationHolder::abortAndWait()
|
||||||
|
{
|
||||||
|
if (mRunning)
|
||||||
|
{
|
||||||
|
mThread.quit();
|
||||||
|
mThread.wait();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMDoc::OperationHolder::doneSlot (int type, bool failed)
|
||||||
|
{
|
||||||
|
mRunning = false;
|
||||||
|
mThread.quit();
|
||||||
|
emit done (type, failed);
|
||||||
|
}
|
@ -0,0 +1,56 @@
|
|||||||
|
#ifndef CSM_DOC_OPERATIONHOLDER_H
|
||||||
|
#define CSM_DOC_OPERATIONHOLDER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
#include <QThread>
|
||||||
|
|
||||||
|
namespace CSMWorld
|
||||||
|
{
|
||||||
|
class UniversalId;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace CSMDoc
|
||||||
|
{
|
||||||
|
class Operation;
|
||||||
|
|
||||||
|
class OperationHolder : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
QThread mThread;
|
||||||
|
Operation *mOperation;
|
||||||
|
bool mRunning;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
OperationHolder (Operation *operation = 0);
|
||||||
|
|
||||||
|
void setOperation (Operation *operation);
|
||||||
|
|
||||||
|
bool isRunning() const;
|
||||||
|
|
||||||
|
void start();
|
||||||
|
|
||||||
|
void abort();
|
||||||
|
|
||||||
|
// Abort and wait until thread has finished.
|
||||||
|
void abortAndWait();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
|
||||||
|
void doneSlot (int type, bool failed);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
void progress (int current, int max, int type);
|
||||||
|
|
||||||
|
void reportMessage (const CSMWorld::UniversalId& id, const std::string& message,
|
||||||
|
const std::string& hint, int type);
|
||||||
|
|
||||||
|
void done (int type, bool failed);
|
||||||
|
|
||||||
|
void abortSignal();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue