From 924a988769cc3e08209a69e2d82af04d82c73e17 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 12 May 2014 04:31:48 +1000 Subject: [PATCH] Offer to reimport automatically after purge if backup folder available --- sleepyhead/SleepLib/common.h | 1 + sleepyhead/mainwindow.cpp | 64 ++++++++++++++++++++++++++++++++++-- 2 files changed, 62 insertions(+), 3 deletions(-) diff --git a/sleepyhead/SleepLib/common.h b/sleepyhead/SleepLib/common.h index 394fc87b..1f933232 100644 --- a/sleepyhead/SleepLib/common.h +++ b/sleepyhead/SleepLib/common.h @@ -83,6 +83,7 @@ const QString STR_GEN_On = QObject::tr("On"); const QString STR_GEN_Off = QObject::tr("Off"); const QString STR_PREF_AllowEarlyUpdates = "AllowEarlyUpdates"; +const QString STR_PREF_ReimportBackup = "ReimportBackup"; const QString STR_PROP_Brand = "Brand"; const QString STR_PROP_Model = "Model"; diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 2a56fecd..10a05b4a 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include // Custom loaders that don't autoscan.. @@ -345,6 +346,51 @@ void MainWindow::Startup() qprogress->hide(); qstatus->setText(""); + if (PROFILE.p_preferences[STR_PREF_ReimportBackup].toBool()) { + PROFILE.p_preferences[STR_PREF_ReimportBackup]=false; + QList machlist = PROFILE.GetMachines(MT_CPAP); + + QStringList paths; + Q_FOREACH(Machine *m, machlist) { + if (m->properties.contains("BackupPath")) { + paths.push_back(PROFILE.Get(m->properties["BackupPath"])); + } + } + if (paths.size() > 0) { + if (QMessageBox::question(this,"Question","Recently CPAP data was purged.\n\nWould you like to automatically reimport from Backup folder?",QMessageBox::Yes, QMessageBox::No)==QMessageBox::Yes) { + Q_FOREACH(QString path, paths) { + QDialog popup(this, Qt::SplashScreen); + QLabel waitmsg(tr("Please wait, importing from backup folder(s)...")); + QVBoxLayout waitlayout(&popup); + waitlayout.addWidget(&waitmsg,1,Qt::AlignCenter); + waitlayout.addWidget(qprogress,1); + qprogress->setVisible(true); + popup.show(); + int c=PROFILE.Import(path); + popup.hide(); + ui->statusbar->insertWidget(2,qprogress,1); + qprogress->setVisible(false); + if (c>0) { + PROFILE.Save(); + + GenerateStatistics(); + + if (overview) { overview->ReloadGraphs(); } + if (daily) { daily->ReloadGraphs(); } + + QString str=tr("Data successfully imported from the following locations\n\n"); + for (int i=0; iNotify(str); + } else { + mainwin->Notify(tr("Import Problem\n\nCouldn't find any new Machine Data at the locations given")); + } + } + } + } + } + } #ifdef Q_OS_UNIX @@ -437,13 +483,16 @@ void MainWindow::on_action_Import_Data_triggered() QTime time; time.start(); - QDialog popup; + QDialog popup(this, Qt::FramelessWindowHint); QLabel waitmsg(tr("Please wait, scanning for CPAP data cards...")); QVBoxLayout waitlayout(&popup); + QPushButton skipbtn("Click here to choose a folder"); waitlayout.addWidget(&waitmsg,1,Qt::AlignCenter); waitlayout.addWidget(qprogress,1); + waitlayout.addWidget(&skipbtn); + popup.connect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide())); qprogress->setValue(0); - const int timeout = 10000; + const int timeout = 20000; qprogress->setMaximum(timeout); qprogress->setVisible(true); popup.show(); @@ -469,8 +518,13 @@ void MainWindow::on_action_Import_Data_triggered() qprogress->setValue(el); QApplication::processEvents(); if (el > timeout) break; + if (!popup.isVisible()) break; } while (datacard.size() == 0); popup.hide(); + popup.disconnect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide())); + + skipbtn.setVisible(false); + popup.setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Minimum); QStringList importFrom; bool asknew = false; qprogress->setVisible(false); @@ -1603,13 +1657,17 @@ void MainWindow::on_actionAll_Data_for_current_CPAP_machine_triggered() return; } + PROFILE.p_preferences[STR_PREF_ReimportBackup] = true; if (QMessageBox::question(this, tr("Are you sure?"), tr("Are you sure you want to purge all CPAP data for the following machine:\n") + m->properties[STR_PROP_Brand] + " " + m->properties[STR_PROP_Model] + " " + m->properties[STR_PROP_ModelNumber] + " (" + m->properties[STR_PROP_Serial] + ")", QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) { + + m->Purge(3478216); - PROFILE.machlist.erase(PROFILE.machlist.find(m->id())); + // PROFILE.machlist.erase(PROFILE.machlist.find(m->id())); + PROFILE.Save(); // delete or not to delete.. this needs to delete later.. :/ //delete m; RestartApplication();