mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Add abort button to Import process
This commit is contained in:
parent
c4ac37d4ae
commit
0f639eecbc
@ -513,6 +513,7 @@ int PRS1Loader::OpenMachine(const QString & path)
|
|||||||
if (!dir.exists() || (!dir.isReadable())) {
|
if (!dir.exists() || (!dir.isReadable())) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
m_abort = false;
|
||||||
|
|
||||||
emit updateMessage(QObject::tr("Getting Ready..."));
|
emit updateMessage(QObject::tr("Getting Ready..."));
|
||||||
QCoreApplication::processEvents();
|
QCoreApplication::processEvents();
|
||||||
@ -648,6 +649,7 @@ int PRS1Loader::OpenMachine(const QString & path)
|
|||||||
|
|
||||||
// Scan for individual session files
|
// Scan for individual session files
|
||||||
for (int i = 0; i < flist.size(); i++) {
|
for (int i = 0; i < flist.size(); i++) {
|
||||||
|
if (isAborted()) break;
|
||||||
QFileInfo fi = flist.at(i);
|
QFileInfo fi = flist.at(i);
|
||||||
|
|
||||||
QString ext_s = fi.fileName().section(".", -1);
|
QString ext_s = fi.fileName().section(".", -1);
|
||||||
@ -706,6 +708,8 @@ int PRS1Loader::OpenMachine(const QString & path)
|
|||||||
QList<PRS1DataChunk *> Chunks = ParseFile(fi.canonicalFilePath());
|
QList<PRS1DataChunk *> Chunks = ParseFile(fi.canonicalFilePath());
|
||||||
|
|
||||||
for (int i=0; i < Chunks.size(); ++i) {
|
for (int i=0; i < Chunks.size(); ++i) {
|
||||||
|
if (isAborted()) break;
|
||||||
|
|
||||||
PRS1DataChunk * chunk = Chunks.at(i);
|
PRS1DataChunk * chunk = Chunks.at(i);
|
||||||
|
|
||||||
if (ext <= 1) {
|
if (ext <= 1) {
|
||||||
@ -752,6 +756,7 @@ int PRS1Loader::OpenMachine(const QString & path)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (isAborted()) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1454,6 +1454,8 @@ int ResmedLoader::scanFiles(Machine * mach, const QString & datalog_path)
|
|||||||
|
|
||||||
qDebug() << "Starting EDF duration scan pass";
|
qDebug() << "Starting EDF duration scan pass";
|
||||||
for (int i=0; i < totalfiles; ++i) {
|
for (int i=0; i < totalfiles; ++i) {
|
||||||
|
if (isAborted()) return 0;
|
||||||
|
|
||||||
const QFileInfo & fi = EDFfiles.at(i);
|
const QFileInfo & fi = EDFfiles.at(i);
|
||||||
|
|
||||||
// Update progress bar
|
// Update progress bar
|
||||||
@ -2304,6 +2306,8 @@ int ResmedLoader::Open(const QString & dirpath)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_abort = false;
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
// Parse Identification.tgt file (containing serial number and machine information)
|
// Parse Identification.tgt file (containing serial number and machine information)
|
||||||
///////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -2595,7 +2599,10 @@ int ResmedLoader::Open(const QString & dirpath)
|
|||||||
emit updateMessage(QObject::tr("Searching for EDF Files..."));
|
emit updateMessage(QObject::tr("Searching for EDF Files..."));
|
||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
|
|
||||||
|
if (isAborted()) return 0;
|
||||||
|
|
||||||
scanFiles(mach, newpath);
|
scanFiles(mach, newpath);
|
||||||
|
if (isAborted()) return 0;
|
||||||
|
|
||||||
// Now at this point we have resdayList populated with processable summary and EDF files data
|
// Now at this point we have resdayList populated with processable summary and EDF files data
|
||||||
// that can be processed in threads..
|
// that can be processed in threads..
|
||||||
@ -2604,6 +2611,8 @@ int ResmedLoader::Open(const QString & dirpath)
|
|||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
|
|
||||||
for (auto rdi=resdayList.begin(), rend=resdayList.end(); rdi != rend; rdi++) {
|
for (auto rdi=resdayList.begin(), rend=resdayList.end(); rdi != rend; rdi++) {
|
||||||
|
if (isAborted()) return 0;
|
||||||
|
|
||||||
QDate date = rdi.key();
|
QDate date = rdi.key();
|
||||||
|
|
||||||
ResMedDay & resday = rdi.value();
|
ResMedDay & resday = rdi.value();
|
||||||
|
@ -215,7 +215,7 @@ void MachineLoader::runTasks(bool threaded)
|
|||||||
threaded=AppSetting->multithreading();
|
threaded=AppSetting->multithreading();
|
||||||
|
|
||||||
if (!threaded) {
|
if (!threaded) {
|
||||||
while (!m_tasklist.isEmpty()) {
|
while (!m_tasklist.isEmpty() && !m_abort) {
|
||||||
ImportTask * task = m_tasklist.takeFirst();
|
ImportTask * task = m_tasklist.takeFirst();
|
||||||
task->run();
|
task->run();
|
||||||
|
|
||||||
@ -223,13 +223,14 @@ void MachineLoader::runTasks(bool threaded)
|
|||||||
m_currenttask++;
|
m_currenttask++;
|
||||||
qprogress->setValue(m_currenttask);
|
qprogress->setValue(m_currenttask);
|
||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
|
delete task;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ImportTask * task = m_tasklist[0];
|
ImportTask * task = m_tasklist[0];
|
||||||
|
|
||||||
QThreadPool * threadpool = QThreadPool::globalInstance();
|
QThreadPool * threadpool = QThreadPool::globalInstance();
|
||||||
|
|
||||||
while (true) {
|
while (!m_abort) {
|
||||||
|
|
||||||
if (threadpool->tryStart(task)) {
|
if (threadpool->tryStart(task)) {
|
||||||
m_tasklist.pop_front();
|
m_tasklist.pop_front();
|
||||||
@ -251,6 +252,13 @@ void MachineLoader::runTasks(bool threaded)
|
|||||||
}
|
}
|
||||||
QThreadPool::globalInstance()->waitForDone(-1);
|
QThreadPool::globalInstance()->waitForDone(-1);
|
||||||
}
|
}
|
||||||
|
if (m_abort) {
|
||||||
|
// delete remaining tasks and clear task list
|
||||||
|
for (auto & task : m_tasklist) {
|
||||||
|
delete task;
|
||||||
|
}
|
||||||
|
m_tasklist.clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -106,6 +106,8 @@ class MachineLoader: public QObject
|
|||||||
}
|
}
|
||||||
return genericPixmapPath;
|
return genericPixmapPath;
|
||||||
}
|
}
|
||||||
|
public slots:
|
||||||
|
void abortImport() { abort(); }
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void updateProgress(int cnt, int total);
|
void updateProgress(int cnt, int total);
|
||||||
|
@ -24,10 +24,14 @@ ProgressDialog::ProgressDialog(QWidget * parent):
|
|||||||
hlayout->addWidget(waitmsg,1,Qt::AlignCenter);
|
hlayout->addWidget(waitmsg,1,Qt::AlignCenter);
|
||||||
vlayout->addWidget(progress,1);
|
vlayout->addWidget(progress,1);
|
||||||
progress->setMaximum(100);
|
progress->setMaximum(100);
|
||||||
|
abortButton = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProgressDialog::~ProgressDialog()
|
ProgressDialog::~ProgressDialog()
|
||||||
{
|
{
|
||||||
|
if (abortButton) {
|
||||||
|
disconnect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProgressDialog::doUpdateProgress(int cnt, int total)
|
void ProgressDialog::doUpdateProgress(int cnt, int total)
|
||||||
@ -40,3 +44,15 @@ void ProgressDialog::doUpdateProgress(int cnt, int total)
|
|||||||
void ProgressDialog::setMessage(QString msg) {
|
void ProgressDialog::setMessage(QString msg) {
|
||||||
waitmsg->setText(msg); update();
|
waitmsg->setText(msg); update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProgressDialog::addAbortButton()
|
||||||
|
{
|
||||||
|
abortButton = new QPushButton(tr("Abort"),this);
|
||||||
|
connect(abortButton, SIGNAL(released()), this, SLOT(onAbortClicked()));
|
||||||
|
hlayout->addWidget(abortButton);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ProgressDialog::onAbortClicked()
|
||||||
|
{
|
||||||
|
emit abortClicked();
|
||||||
|
}
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QProgressBar>
|
#include <QProgressBar>
|
||||||
|
#include <QPushButton>
|
||||||
|
|
||||||
class ProgressDialog:public QDialog {
|
class ProgressDialog:public QDialog {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -21,17 +22,22 @@ public:
|
|||||||
explicit ProgressDialog(QWidget * parent);
|
explicit ProgressDialog(QWidget * parent);
|
||||||
virtual ~ProgressDialog();
|
virtual ~ProgressDialog();
|
||||||
|
|
||||||
|
void addAbortButton();
|
||||||
|
|
||||||
void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); }
|
void setPixmap(QPixmap &pixmap) { imglabel->setPixmap(pixmap); }
|
||||||
QProgressBar * progress;
|
QProgressBar * progress;
|
||||||
public slots:
|
public slots:
|
||||||
void setMessage(QString msg);
|
void setMessage(QString msg);
|
||||||
void doUpdateProgress(int cnt, int total);
|
void doUpdateProgress(int cnt, int total);
|
||||||
|
void onAbortClicked();
|
||||||
|
signals:
|
||||||
|
void abortClicked();
|
||||||
protected:
|
protected:
|
||||||
QLabel * waitmsg;
|
QLabel * waitmsg;
|
||||||
QHBoxLayout *hlayout;
|
QHBoxLayout *hlayout;
|
||||||
QLabel * imglabel;
|
QLabel * imglabel;
|
||||||
QVBoxLayout * vlayout;
|
QVBoxLayout * vlayout;
|
||||||
|
QPushButton * abortButton;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -566,12 +566,14 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
|
|||||||
|
|
||||||
QProgressBar *saveQprogress = qprogress;
|
QProgressBar *saveQprogress = qprogress;
|
||||||
qprogress = progdlg->progress;
|
qprogress = progdlg->progress;
|
||||||
|
progdlg->addAbortButton();
|
||||||
|
|
||||||
progdlg->setWindowModality(Qt::ApplicationModal);
|
progdlg->setWindowModality(Qt::ApplicationModal);
|
||||||
progdlg->open();
|
progdlg->open();
|
||||||
progdlg->setMessage(message);
|
progdlg->setMessage(message);
|
||||||
|
|
||||||
connect(import.loader, SIGNAL(updateMessage(QString)), progdlg, SLOT(setMessage(QString)));
|
connect(import.loader, SIGNAL(updateMessage(QString)), progdlg, SLOT(setMessage(QString)));
|
||||||
|
connect(progdlg, SIGNAL(abortClicked()), import.loader, SLOT(abortImport()));
|
||||||
|
|
||||||
int c = import.loader->Open(import.path);
|
int c = import.loader->Open(import.path);
|
||||||
|
|
||||||
@ -582,6 +584,7 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
|
|||||||
} else {
|
} else {
|
||||||
Notify(tr("Couldn't find any valid Machine Data at\n\n%1").arg(import.path),tr("Import Problem"));
|
Notify(tr("Couldn't find any valid Machine Data at\n\n%1").arg(import.path),tr("Import Problem"));
|
||||||
}
|
}
|
||||||
|
disconnect(progdlg, SIGNAL(abortClicked()), import.loader, SLOT(abortImport()));
|
||||||
disconnect(import.loader, SIGNAL(updateMessage(QString)), progdlg, SLOT(setMessage(QString)));
|
disconnect(import.loader, SIGNAL(updateMessage(QString)), progdlg, SLOT(setMessage(QString)));
|
||||||
|
|
||||||
progdlg->hide();
|
progdlg->hide();
|
||||||
|
Loading…
Reference in New Issue
Block a user